Notebooks Classificador

This commit is contained in:
DiogoCosta18
2026-05-14 16:20:33 +01:00
parent 9ae334410d
commit 2062a91985
734 changed files with 75472 additions and 1730 deletions
@@ -0,0 +1,7 @@
{
"data_dir": "data",
"sources": ["wiki"],
"augment": false,
"image_size": 64,
"batch_size": 64
}
@@ -0,0 +1,15 @@
{
"extends": "_base_phase0.json",
"run_name": "p0_ddpm",
"model": "ddpm",
"base_ch": 128,
"T": 1000,
"beta_start": 0.0001,
"beta_end": 0.02,
"dropout": 0.1,
"epochs": 200,
"lr": 0.0001,
"subsample": 1.0,
"sample_interval": 10,
"sample_steps": 100
}
@@ -0,0 +1,15 @@
{
"extends": "_base_phase0.json",
"run_name": "p0_ddpm_small",
"model": "ddpm",
"base_ch": 64,
"T": 1000,
"beta_start": 0.0001,
"beta_end": 0.02,
"dropout": 0.1,
"epochs": 100,
"lr": 0.0002,
"subsample": 0.2,
"sample_interval": 10,
"sample_steps": 100
}
@@ -0,0 +1,12 @@
{
"extends": "_base_phase0.json",
"run_name": "p0_vae",
"model": "vae",
"latent_dim": 256,
"epochs": 100,
"lr": 0.0005,
"beta": 1.0,
"perceptual_weight": 0.1,
"subsample": 1.0,
"sample_interval": 5
}
@@ -0,0 +1,17 @@
{
"extends": "_base_phase0.json",
"run_name": "p0_wgan",
"model": "wgan",
"latent_dim": 128,
"ngf": 64,
"ndf": 64,
"epochs": 200,
"lr_g": 0.0001,
"lr_d": 0.0001,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 5,
"gp_lambda": 10,
"subsample": 1.0,
"sample_interval": 10
}
@@ -0,0 +1,13 @@
{
"model": "dcgan",
"image_size": 64,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 2e-4,
"lr_d": 2e-4,
"beta1": 0.5,
"beta2": 0.999,
"augment": false
}
@@ -0,0 +1,5 @@
{
"extends": "_base_dcgan.json",
"run_name": "p1a_dcgan_128",
"image_size": 128
}
@@ -0,0 +1,5 @@
{
"extends": "_base_dcgan.json",
"run_name": "p1a_dcgan_64",
"image_size": 64
}
@@ -0,0 +1,5 @@
{
"extends": "_base_dcgan.json",
"run_name": "p1b_dcgan_aligned",
"data_dir": "cropped/generator"
}
@@ -0,0 +1,5 @@
{
"extends": "_base_dcgan.json",
"run_name": "p1b_dcgan_full",
"data_dir": "data"
}
@@ -0,0 +1,6 @@
{
"extends": "_base_dcgan.json",
"run_name": "p1c_dcgan_full_aug",
"data_dir": "cropped/generator",
"augment": true
}
@@ -0,0 +1,6 @@
{
"extends": "_base_dcgan.json",
"run_name": "p1c_dcgan_hflip",
"data_dir": "cropped/generator",
"augment": false
}
@@ -0,0 +1,5 @@
{
"extends": "_base_dcgan.json",
"run_name": "p1d_dcgan_combined",
"data_dir": ["data", "cropped/generator"]
}
@@ -0,0 +1,10 @@
{
"epochs": 100,
"data_dir": "cropped/generator",
"sources": ["wiki"],
"augment": true,
"image_size": 64,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000
}
@@ -0,0 +1,12 @@
{
"extends": "_base_phase2.json",
"run_name": "p2_1_dcgan",
"model": "dcgan",
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"lr_g": 2e-4,
"lr_d": 2e-4,
"beta1": 0.5,
"beta2": 0.999
}
@@ -0,0 +1,14 @@
{
"extends": "_base_phase2.json",
"run_name": "p2_2_wgan",
"model": "wgan_basic",
"latent_dim": 128,
"ngf": 64,
"ndf": 64,
"lr_g": 1e-4,
"lr_d": 1e-4,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 2,
"gp_lambda": 10
}
@@ -0,0 +1,15 @@
{
"extends": "_base_phase2.json",
"run_name": "p2_3_wgan_sn_attn",
"model": "wgan",
"image_size": 64,
"latent_dim": 128,
"ngf": 128,
"ndf": 128,
"lr_g": 1e-4,
"lr_d": 1e-4,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 2,
"gp_lambda": 10
}
@@ -0,0 +1,15 @@
{
"extends": "_base_phase2.json",
"run_name": "p2_4_wgan_sn_attn_128",
"model": "wgan",
"image_size": 128,
"latent_dim": 128,
"ngf": 128,
"ndf": 128,
"lr_g": 1e-4,
"lr_d": 1e-4,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 2,
"gp_lambda": 10
}
@@ -0,0 +1,14 @@
{
"epochs": 100,
"data_dir": "cropped/generator",
"sources": ["wiki"],
"augment": "hflip",
"image_size": 64,
"model": "vae",
"latent_dim": 256,
"ngf": 64,
"grad_clip": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000
}
@@ -0,0 +1,8 @@
{
"extends": "_base_phase3.json",
"run_name": "p3_1_vae",
"lr": 5e-4,
"beta_kl": 0.25,
"lambda_perceptual": 0.0,
"lambda_adversarial": 0.0
}
@@ -0,0 +1,8 @@
{
"extends": "_base_phase3.json",
"run_name": "p3_2_vae_perceptual",
"lr": 5e-4,
"beta_kl": 0.25,
"lambda_perceptual": 0.1,
"lambda_adversarial": 0.0
}
@@ -0,0 +1,10 @@
{
"extends": "_base_phase3.json",
"run_name": "p3_3_vae_patchgan",
"lr": 5e-4,
"lr_d": 1e-4,
"beta_kl": 0.25,
"lambda_perceptual": 0.1,
"lambda_adversarial": 0.01,
"ndf_patch": 64
}
@@ -0,0 +1,19 @@
{
"epochs": 100,
"data_dir": "cropped/generator",
"sources": ["wiki"],
"augment": "hflip",
"image_size": 64,
"model": "ddpm",
"T": 1000,
"ddim_steps": 100,
"lr": 2e-4,
"base_ch": 128,
"ch_mult": [1, 2, 2, 2],
"attn_resolutions": [16, 8],
"num_res_blocks": 2,
"dropout": 0.1,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000
}
@@ -0,0 +1,6 @@
{
"extends": "_base_phase4.json",
"run_name": "p4_1_ddpm_linear",
"noise_schedule": "linear",
"pred_type": "eps"
}
@@ -0,0 +1,6 @@
{
"extends": "_base_phase4.json",
"run_name": "p4_2_ddpm_cosine",
"noise_schedule": "cosine",
"pred_type": "eps"
}
@@ -0,0 +1,6 @@
{
"extends": "_base_phase4.json",
"run_name": "p4_3_ddpm_vpred",
"noise_schedule": "cosine",
"pred_type": "v"
}
@@ -0,0 +1,8 @@
{
"extends": "_base_phase4.json",
"run_name": "p4_4_ddpm_wider",
"noise_schedule": "cosine",
"pred_type": "v",
"base_ch": 192,
"attn_resolutions": [32, 16, 8]
}
@@ -0,0 +1,24 @@
{
"run_name": "p5_ddpm",
"model": "ddpm",
"epochs": 1000,
"data_dir": "cropped/generator",
"sources": ["wiki"],
"augment": "hflip",
"image_size": 64,
"T": 1000,
"noise_schedule": "cosine",
"pred_type": "v",
"base_ch": 192,
"ch_mult": [1, 2, 2, 2],
"attn_resolutions": [32, 16, 8],
"num_res_blocks": 2,
"dropout": 0.1,
"lr": 2e-4,
"ddim_steps": 100,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"max_train_hours": 24,
"fid_patience": 2
}
@@ -0,0 +1,23 @@
{
"run_name": "p5_gan",
"model": "wgan",
"epochs": 1000,
"data_dir": "cropped/generator",
"sources": ["wiki"],
"augment": true,
"image_size": 64,
"latent_dim": 128,
"ngf": 128,
"ndf": 128,
"lr_g": 1e-4,
"lr_d": 1e-4,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 2,
"gp_lambda": 10,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"max_train_hours": 24,
"fid_patience": 2
}
@@ -0,0 +1,22 @@
{
"run_name": "p5_vae",
"model": "vae",
"epochs": 1000,
"data_dir": "cropped/generator",
"sources": ["wiki"],
"augment": "hflip",
"image_size": 64,
"latent_dim": 256,
"ngf": 64,
"lr": 1e-3,
"lr_d": 1e-4,
"beta_kl": 0.25,
"lambda_perceptual": 0.1,
"lambda_adversarial": 0.01,
"ndf_patch": 64,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"max_train_hours": 24,
"fid_patience": 2
}
@@ -0,0 +1,11 @@
{
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "data",
"sources": ["wiki"],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"num_workers": 2
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,227 @@
{
"run_name": "p0_ddpm",
"config": {
"run_name": "p0_ddpm",
"model": "ddpm",
"image_size": 64,
"base_ch": 128,
"T": 1000,
"beta_start": 0.0001,
"beta_end": 0.02,
"dropout": 0.1,
"epochs": 200,
"batch_size": 64,
"lr": 0.0001,
"data_dir": "data",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"sample_steps": 100
},
"history": {
"loss": [
0.1083670402598432,
0.04629855174332475,
0.03927792408543392,
0.03648682562315948,
0.034014404620020054,
0.03234251832159666,
0.030846774018902935,
0.030006713196078044,
0.03014388835280497,
0.02850124903787405,
0.028395157695437472,
0.027885630450203504,
0.027339542316447977,
0.027508525955928568,
0.02726412267408246,
0.026637520621188432,
0.027042127676053435,
0.02702308123589008,
0.027003993411572315,
0.025956713819366872,
0.026461017499160435,
0.026138577759504702,
0.02589148448772219,
0.025798799915828258,
0.025888724787893076,
0.026004614308476448,
0.02490535442932294,
0.025254002792171687,
0.025024926007335257,
0.02529874118243973,
0.02479060086158988,
0.025004531465805113,
0.02481336768469813,
0.024719654377470285,
0.02482008694822335,
0.024336259418095533,
0.025327550165721368,
0.024988760037395436,
0.024449641408366907,
0.024988751213711042,
0.024216544261186294,
0.024626739183838807,
0.02405230538187246,
0.02450195714457231,
0.024484938772745494,
0.024367860245765146,
0.024223141513494216,
0.024255985758291222,
0.024372014694680005,
0.02413457283614856,
0.023963905616193756,
0.02441367820207762,
0.02433791215945449,
0.02456985757105116,
0.02404512893050336,
0.024265815064104065,
0.023772775438319668,
0.024229186833796337,
0.023757771352051288,
0.024260703422543075,
0.023852092454719365,
0.02406276131852761,
0.023678840800689962,
0.023432825142756488,
0.02385735059252534,
0.02377281899755009,
0.02348707383299549,
0.02369726858396306,
0.023631208038960513,
0.02311639924151584,
0.02383487479777163,
0.023870027238009576,
0.023441708230803538,
0.024035497753618237,
0.02300195097246677,
0.023707804898930412,
0.023455506710049052,
0.023611091168867983,
0.024028617561333135,
0.0232626189215061,
0.023289684098787032,
0.02343361178198113,
0.023422238150309038,
0.0232180315348455,
0.023305013184793867,
0.02392511722894433,
0.02336770045555109,
0.02318744173942086,
0.02320095007586428,
0.02295187271685682,
0.0233883468581475,
0.02344029073794492,
0.02342299423697922,
0.023732792942299165,
0.023115517183517415,
0.023331191981784426,
0.02352578725076766,
0.0230310578396719,
0.02284456534573856,
0.02327608281913667,
0.02291412464876333,
0.02318612803728917,
0.023585573692495625,
0.022689972158409972,
0.023414890062955454,
0.02354874097320259,
0.023317397044748705,
0.022987709951817863,
0.02321497991314938,
0.023314894041699223,
0.02330707421956154,
0.023357170003139947,
0.023417106554962885,
0.023055344092675574,
0.022828684811297264,
0.022907353412264433,
0.022932124652493842,
0.02278750507821703,
0.022915415256881178,
0.023283357745928004,
0.022942685305228472,
0.02283522265796096,
0.02293384290085389,
0.023348970316812143,
0.023261155360020123,
0.022875425483410556,
0.023388160398612037,
0.02314243713616688,
0.023365848144500427,
0.022828353748012047,
0.022968567352598675,
0.023286700292498384,
0.022814179418417506,
0.02317798297263236,
0.022502902497211073,
0.022226932952100903,
0.022558437107114963,
0.023172160780702073,
0.0226754893321926,
0.02281457268529468,
0.023307094891738687,
0.022783862096536107,
0.022608044509513255,
0.02264707699481748,
0.0228006450427521,
0.022862335525723733,
0.023164480990276504,
0.022886841307179287,
0.02281724872927253,
0.0224764158244794,
0.02299271177691527,
0.022401189933029506,
0.022301576679381423,
0.023051011495483227,
0.022674021506124836,
0.023254253867711138,
0.022600062249196518,
0.022994125096732352,
0.023044346577018246,
0.022450523532560874,
0.022708959248649258,
0.022672621071593374,
0.0226655634951929,
0.02268093158530756,
0.0231474475023679,
0.023222818055277705,
0.02250314637238526,
0.022926766914912522,
0.02281918561157699,
0.022894049795646954,
0.022437431771929067,
0.022276719749515127,
0.023031598454516414,
0.022932796695261683,
0.02267399260129493,
0.022674424667309366,
0.022683103929042943,
0.0230639888268187,
0.022548409081342764,
0.022087385764536567,
0.021826119812874075,
0.022922894372166987,
0.022938080926019795,
0.02203184187523702,
0.022286941173971973,
0.0225165595069655,
0.022823427537153673,
0.022163119194949538,
0.02246519502522981,
0.022458927598423682,
0.02173858560804819,
0.022764349513504114,
0.022648208464185398,
0.021945582256994695,
0.022437607624735206,
0.022418903443628013,
0.02227352012314985,
0.022173316878640752,
0.022317954088346317,
0.02246333107463697
]
}
}
@@ -0,0 +1,127 @@
{
"run_name": "p0_ddpm_small",
"config": {
"run_name": "p0_ddpm_small",
"model": "ddpm",
"image_size": 64,
"base_ch": 64,
"T": 1000,
"beta_start": 0.0001,
"beta_end": 0.02,
"dropout": 0.1,
"epochs": 100,
"batch_size": 64,
"lr": 0.0002,
"data_dir": "data",
"sources": [
"wiki"
],
"subsample": 0.2,
"sample_interval": 10,
"sample_steps": 100
},
"history": {
"loss": [
0.2678032471768318,
0.09589410829608158,
0.07335762967986445,
0.0649665344546559,
0.05737644754430299,
0.052905762227632665,
0.04984104056512156,
0.0454951891655563,
0.04398588173251639,
0.044020078775863496,
0.04207056302136632,
0.04043278923278214,
0.039955350660508676,
0.03724756500413341,
0.03665647719816495,
0.038215308159749994,
0.036488514173255174,
0.035779101073101005,
0.035255871212450406,
0.036489000984577726,
0.03383178988932281,
0.03419857377046218,
0.033235303496801726,
0.033483810442429714,
0.031014470643894648,
0.03326657182106408,
0.031699600939949356,
0.03173744650457495,
0.0322553291315994,
0.03234702623098768,
0.03161054465078538,
0.030852873198768144,
0.03200384822263513,
0.031742659808006335,
0.030217854826841303,
0.031679999583991626,
0.029489911351633327,
0.028711399854591455,
0.029677809045840334,
0.030612801151570453,
0.029807658155038153,
0.030668188747699544,
0.02895499796917041,
0.028708126405955003,
0.029014079511085505,
0.0281836397905824,
0.029067626433266748,
0.028298665388857804,
0.027657570247288033,
0.027329172037782207,
0.027731550667154534,
0.028330990283559728,
0.029598585159708094,
0.028600716683012183,
0.028036352287056625,
0.0285629206487248,
0.02861545857803155,
0.027790598511215178,
0.028236197407848093,
0.026964312299124656,
0.027373770281912818,
0.027388963888409317,
0.029223351749361203,
0.02739422419859517,
0.02748733340331944,
0.027431275315021954,
0.02745134727929228,
0.028024198807856088,
0.02867266363514367,
0.026144217199055096,
0.026972133546106277,
0.027528228488580515,
0.027562430388824916,
0.027393175549404597,
0.0265277804286089,
0.025383217280269953,
0.027007741653310356,
0.025879052337459338,
0.026285308823790602,
0.026477108579329264,
0.028581748666462077,
0.026456236048170958,
0.02589529524407079,
0.026571117862257906,
0.026034350496947124,
0.0268421945592729,
0.027832103742947503,
0.02694581709401582,
0.027404129525185915,
0.026766230872962423,
0.02709349239825882,
0.027885750516928653,
0.02651280081600592,
0.026352581538019643,
0.026670256619571998,
0.0255209504656734,
0.026436442599421548,
0.02504222024913116,
0.025400650226861558,
0.027037389025652923
]
}
}
@@ -0,0 +1,430 @@
{
"run_name": "p0_vae",
"config": {
"run_name": "p0_vae",
"model": "vae",
"image_size": 64,
"latent_dim": 256,
"epochs": 100,
"batch_size": 64,
"lr": 0.0005,
"beta": 1.0,
"perceptual_weight": 0.1,
"data_dir": "data",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 5
},
"history": {
"loss": [
4.250324185587402,
4.134648546194419,
4.094182982913449,
4.063824407565288,
4.0326321787304344,
4.003465635654254,
3.974764764818371,
3.9508974959707666,
3.9271021245891213,
3.906269828478495,
3.8868031960267286,
3.8682583764068084,
3.8515498037012215,
3.8359983634744954,
3.8221397761605744,
3.809864979523879,
3.798683610227373,
3.78772361512877,
3.7773428635719495,
3.768211925131643,
3.759337167454581,
3.7517892585860357,
3.743788587231921,
3.735912532887907,
3.7286843754287458,
3.7223885329360638,
3.715175391262413,
3.7087125569327264,
3.7038757984454813,
3.6965429665695906,
3.691004909001864,
3.6857250995106168,
3.6793667913502097,
3.6750445773458886,
3.6694462722183294,
3.664994449696989,
3.659889499346415,
3.6559000580738754,
3.651372315537216,
3.6471689791760893,
3.6424113588455396,
3.637727607519199,
3.6339953450056224,
3.6298532022370233,
3.6273992504829016,
3.623114150304061,
3.619541567614955,
3.6168203715585237,
3.6138987872335644,
3.608925356824174,
3.6048866056988382,
3.6027798637365684,
3.600335784447499,
3.595807208464696,
3.5932340413077264,
3.5909022021497417,
3.588857959987771,
3.586156122195415,
3.582110808445857,
3.5804258804036,
3.578975318843483,
3.5756211387805448,
3.5734891743741484,
3.5706143093924236,
3.5675539843037596,
3.565658889265142,
3.56276819950495,
3.5605046489299874,
3.559286260197305,
3.5578912598455052,
3.5546631288324666,
3.553219128368247,
3.5495453558416448,
3.5479163568244023,
3.546648928752312,
3.5447635762711878,
3.5432754383127913,
3.540637479378627,
3.5402203767727585,
3.537344281999474,
3.5353173695058904,
3.5337163637845945,
3.5310573751090937,
3.5295781304693628,
3.5287446262490034,
3.5265913447763166,
3.5268727235305004,
3.5250504770849505,
3.5212181495805073,
3.521022683534867,
3.519402818292634,
3.5169585255476146,
3.5171003142992654,
3.5146776891162252,
3.5131581868880835,
3.5116431331023192,
3.5113982497117457,
3.508979608360519,
3.50840662789141,
3.5074753414871345
],
"recon_loss": [
0.08314752892360218,
0.07855224641215088,
0.07766621149121186,
0.07724331894045712,
0.07686529886455108,
0.07642129698816018,
0.07581346730391185,
0.07500511466756336,
0.07364231738078798,
0.07157875317284185,
0.06891512811088409,
0.0661920348707682,
0.06391830628530847,
0.06201417692419556,
0.06046784213051582,
0.05918571319526587,
0.0580066671817858,
0.057031127313772835,
0.05595446255408291,
0.05514845847446694,
0.05429254599616059,
0.05357683884600798,
0.05280969729726641,
0.05211603768870362,
0.051566887559353285,
0.05080651687696958,
0.05030167758719534,
0.04969718606553526,
0.04914569419323125,
0.048616886688157536,
0.048137954961604036,
0.047627850459554255,
0.047129555661072076,
0.046656576622054614,
0.046228237091921844,
0.04574223620514584,
0.04545198885612508,
0.045023377117119796,
0.044643198219565756,
0.04434523899426572,
0.04387786846735284,
0.04364254737161418,
0.04329113803931281,
0.0428919303111541,
0.04272017235525398,
0.04239159133922086,
0.04209632497344516,
0.04185059678573639,
0.04161195915478926,
0.04135766227403258,
0.04115677575588736,
0.04086931493992989,
0.04076992701261471,
0.04041119487398965,
0.040200370650451914,
0.0400576183381371,
0.039909450456691094,
0.03970725073391556,
0.03947478756467756,
0.03935474883287381,
0.03919493802624126,
0.03901928393409038,
0.03884959949228244,
0.038668815770910844,
0.03841047747554178,
0.038346435938380725,
0.038163057369235746,
0.038028685718329035,
0.03786847321714601,
0.037713001227468,
0.037593389065283485,
0.03751569933807238,
0.03734617850655674,
0.03719269978598906,
0.03706175414447346,
0.0369408268115332,
0.03681376709356012,
0.036733934202064306,
0.03657762347282762,
0.036514967544657044,
0.03640143988001296,
0.036243789049231596,
0.03615107964803903,
0.035999311524260245,
0.035903908702361785,
0.03579426486777444,
0.03576036798170744,
0.03566311308556897,
0.03552897459962684,
0.03539964183368999,
0.03534168970540293,
0.03520329746728142,
0.035151520210644625,
0.035101048847357944,
0.0350069641852035,
0.03486888159989801,
0.034861071043225944,
0.034744354585806526,
0.03465007174298422,
0.03454487510901104
],
"kl_loss": [
0.0159953803752218,
0.044202877240430594,
0.06116550275657931,
0.07635654457327393,
0.09037123305293229,
0.10460591577311866,
0.11865333892787114,
0.13245739485336167,
0.14517442560476115,
0.1569571604904456,
0.16872903736483338,
0.18024130191049006,
0.19072035840179166,
0.20048105551136863,
0.20899017826996297,
0.21741188874738848,
0.2247571811143659,
0.23275449531327966,
0.23966090094584686,
0.24611625218620667,
0.25281740190126956,
0.25888903620533454,
0.2645308631989691,
0.27056845175659555,
0.27532415525016624,
0.28112532414941704,
0.2858431101736859,
0.29094230332690424,
0.2955150889535236,
0.3001613756402945,
0.3049032572242949,
0.3095898434010326,
0.31319689776143456,
0.3179963257832405,
0.322185754776001,
0.3264285368032945,
0.3299771794396588,
0.3337477809216222,
0.3377718361906516,
0.34097307831303686,
0.3449199155737192,
0.34790686887298894,
0.3513057490444591,
0.35493463105880296,
0.35747312830808836,
0.3610215593352277,
0.3638480869878052,
0.366655437864809,
0.36968781888230234,
0.37230672591771835,
0.3748398758152611,
0.37769231722395646,
0.38097035623768455,
0.383052895593847,
0.38532960580454934,
0.38812654013307685,
0.3900898962448805,
0.3934439178715404,
0.3946356102824211,
0.39688008622481274,
0.3985537563761075,
0.4018082413663212,
0.4037678490082423,
0.4062399629216928,
0.4081735656174839,
0.4093499289363877,
0.4120887863075631,
0.4140137403439253,
0.41596079267497754,
0.418453937348647,
0.41991064423679286,
0.42121546307944846,
0.4233135558728479,
0.4248411596203462,
0.42699897142811716,
0.4287081425770735,
0.4301795422648772,
0.4317423408994308,
0.43337412885366344,
0.43470359224284816,
0.43652185428346324,
0.43851066215170753,
0.4411619116480534,
0.4418926327529117,
0.4436655201845699,
0.4451010020242797,
0.4460634829906317,
0.44681531662105495,
0.44934566471821225,
0.4504435484608014,
0.4513984547338934,
0.45284434554413855,
0.4547643432887191,
0.45665359598958594,
0.45710637777024865,
0.4585863476635044,
0.45928521460702276,
0.46097695604603517,
0.4617650115973929,
0.46387570485090596
],
"perc_loss": [
41.51181179437882,
40.11893345759465,
39.553511986365685,
39.10224482544467,
38.653955842694664,
38.22438364762526,
37.80297894763132,
37.43434936979897,
37.08285335801605,
36.77733863928379,
36.49158988039718,
36.2182500138242,
35.96911093312451,
35.73503083449144,
35.52681698758378,
35.3326733418,
35.15919718375573,
34.97937949498495,
34.817274513407654,
34.669471732571594,
34.52227175948966,
34.393233368539406,
34.26447987760234,
34.13227987289429,
34.01793288369464,
33.904566475468826,
33.79030554111187,
33.68073015131502,
33.592149718194946,
33.477646607619064,
33.37963648739024,
33.28507361452804,
33.19040275638939,
33.10391625379905,
33.01032242408166,
32.928236337808464,
32.844602796766495,
32.7712886720641,
32.689572305760834,
32.61850610553709,
32.536135265969826,
32.4617814080328,
32.3939840650966,
32.320265892224434,
32.27205904528626,
32.19700959605029,
32.13597111009125,
32.08314285115299,
32.02598962213239,
31.95260914370545,
31.88889909401918,
31.84218183338133,
31.785954487629425,
31.723430678375767,
31.677040259043377,
31.62718008726071,
31.58858571908413,
31.530049095805893,
31.480003752260128,
31.441910014193283,
31.412265757210236,
31.347935664348114,
31.308716773986816,
31.25705478945349,
31.209698994954426,
31.179624773498276,
31.12516305793045,
31.084621735108204,
31.05456941963261,
31.017242786211845,
30.97159047412057,
30.944879160987007,
30.88885566108247,
30.858824599502434,
30.825881578983406,
30.791145471426155,
30.762820814409828,
30.721611569070408,
30.702685759617733,
30.661256769783478,
30.62394029666216,
30.589618682861328,
30.53744347890218,
30.516861418373566,
30.49175152819381,
30.456960311302772,
30.450488273914043,
30.425719966236343,
30.363434677450066,
30.351794434408855,
30.326626260056454,
30.289108406784187,
30.271844048785347,
30.22922993928958,
30.210448004241684,
30.18187862379938,
30.172519317040077,
30.13258263596103,
30.119914890354515,
30.090547162243443
]
}
}
@@ -0,0 +1,835 @@
{
"run_name": "p0_wgan",
"config": {
"run_name": "p0_wgan",
"model": "wgan",
"image_size": 64,
"latent_dim": 128,
"ngf": 64,
"ndf": 64,
"epochs": 200,
"batch_size": 64,
"lr_g": 0.0001,
"lr_d": 0.0001,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 5,
"gp_lambda": 10,
"data_dir": "data",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10
},
"history": {
"g_loss": [
20.861786262219788,
24.484501724569206,
27.638709512531246,
29.97861582193619,
30.747561157259167,
32.02338776221642,
32.58458664885953,
32.48439505976489,
32.60738040646936,
33.003309531089585,
33.24444713347997,
33.23093043025742,
33.24205948348738,
33.317376132704254,
34.61083252817138,
35.4782878435575,
36.53802290533343,
36.75384027937539,
37.40440757458027,
37.68868056729308,
39.003664285708695,
40.184907000289,
40.930287255181206,
41.812280516339165,
43.252323949438896,
44.134575664487656,
44.931291221553444,
45.39425446436955,
45.518413951254296,
46.378283052362946,
47.568172291812736,
48.945309712336616,
50.388243675231934,
50.95788703005538,
52.825113280206665,
54.260103519146256,
54.699992840106674,
55.44318327944503,
56.13598096472585,
57.308240254720054,
58.77519280686338,
59.568145572629746,
60.179820125938484,
61.30784735720382,
62.04800804659852,
63.70076908209385,
65.67355463239882,
67.33006281730457,
68.60418007516454,
69.44280386378622,
70.77793149051503,
71.9100425752819,
73.41760413667076,
74.51540679605598,
75.452604782887,
78.0290306286934,
79.30968159080571,
81.6189056624714,
81.96908844841852,
83.14590193267561,
85.76070547511435,
87.85846160823463,
89.14186991178073,
90.0450213831714,
90.76150916988014,
92.32169165978065,
93.37803798251682,
93.73559182321924,
95.50361321930193,
98.06297312027368,
100.93305644825992,
102.58422611921262,
103.14872221661429,
104.5206852285271,
105.36486633822449,
106.95519620129186,
106.96137643471742,
109.60918868301262,
110.37198870406192,
111.43057123819987,
112.18183998368744,
114.1453188219641,
116.76321564372788,
118.57912932501898,
120.00456071511293,
121.75296041700575,
123.70820495409843,
124.7461356953678,
126.87444047846346,
128.34590644510382,
130.42692292042267,
133.1212801321959,
133.53329549284064,
134.6670674870157,
135.20846710857163,
135.7633072290665,
136.747866866935,
138.21183105207916,
141.35360564533462,
143.2757459787222,
143.69141322730954,
144.18379667885284,
145.65889485677084,
148.21175534501035,
149.56626344338443,
150.20800259581998,
150.77553385547083,
151.51304365630844,
152.34877252171182,
152.99383108024924,
154.3369990617801,
155.0102022611178,
156.3105682633881,
157.5694733644143,
160.06239657931857,
162.7010110382341,
163.5938239464393,
164.63512857551248,
165.91321407220303,
166.7981478699252,
168.27971988254123,
168.4678201919947,
171.6658657758664,
173.33122484908145,
175.36023030729376,
175.6105014768421,
175.98719784337231,
176.204406184009,
177.0283332563873,
177.69539446708484,
179.01333510570038,
180.97915476611536,
180.58325472448627,
180.95932714348166,
181.29422433967264,
183.12958875476804,
184.72860085250986,
185.62071612757495,
187.34349144829645,
188.05630806164865,
188.91328374748556,
191.1254445915548,
193.46458715455145,
193.5155346536229,
193.36818796141534,
194.24686131925665,
195.29775626027686,
196.8086325164534,
197.8473025916988,
198.7120099842039,
201.01687902466864,
202.734738146138,
203.01483610756378,
203.7443778209197,
204.40923987494574,
205.957951244126,
206.44182172595944,
207.52170383420764,
208.78479584261902,
209.91720509325336,
210.64656940688434,
211.7385871104705,
212.85203676142245,
215.43744362725153,
217.4224612244174,
218.57217746310764,
219.697512373965,
220.86698065863715,
221.4034518054408,
221.7560550005008,
223.57493336995444,
223.67208334115836,
224.73386810172317,
226.168578645103,
226.6503629765959,
227.94742900489743,
229.02756053565915,
230.93083852784247,
233.9660879933936,
234.1545915522127,
235.77698177761502,
238.3829990941235,
240.31401208730844,
240.7560836922409,
240.9462320376665,
243.4258527837248,
245.41892604338818,
247.01629814734827,
248.11878276075055,
250.72459242078992,
250.5925274058285,
250.52350140433026,
251.9943748213287,
252.25795233962882,
253.35346818581607,
254.52986927521533,
255.25971032819177,
256.89842582767847,
257.64977570884247,
259.6900681715745
],
"c_loss": [
-11.094487810440553,
-12.968918835811138,
-13.043902460530274,
-12.723203683714576,
-12.381025380354647,
-11.684047953287763,
-10.904886481089465,
-10.52504440800756,
-10.343131445208163,
-10.157757118013183,
-9.974721721910003,
-9.812809922552512,
-9.648554773208422,
-9.48779460140783,
-9.35256861356588,
-9.245894571654818,
-9.137809677816868,
-9.044281771447931,
-8.902716490244245,
-8.837238697924166,
-8.756545627015267,
-8.717208363459656,
-8.639838231832547,
-8.595160510499246,
-8.554713706379266,
-8.463848097507775,
-8.455797974676145,
-8.391317713056873,
-8.3552374481136,
-8.357543099741656,
-8.349546556391266,
-8.302606204839853,
-8.291382703006779,
-8.294043176500207,
-8.274945335204787,
-8.272878311485313,
-8.207685407410318,
-8.192721331628976,
-8.192964592856223,
-8.161896302455512,
-8.14710073654468,
-8.158445111553892,
-8.170576908853324,
-8.166485660911624,
-8.177774573493211,
-8.15733466459137,
-8.154382880732546,
-8.182609847824791,
-8.186987533936131,
-8.22017425833604,
-8.147444259610952,
-8.178992070805307,
-8.195840435099395,
-8.200222732623416,
-8.172246947400591,
-8.180237101234937,
-8.173259688901076,
-8.19695118044176,
-8.206097737438657,
-8.219509731653407,
-8.190714883600544,
-8.206095539097086,
-8.188711438015993,
-8.200624450455361,
-8.217389455208412,
-8.238748331762778,
-8.233382728211891,
-8.23679813172063,
-8.21735338003207,
-8.215547685949211,
-8.238630391593665,
-8.227639290664948,
-8.234513328116165,
-8.23839012440454,
-8.278589575311056,
-8.26879572919291,
-8.274233976541417,
-8.253637050003068,
-8.291616514503442,
-8.312002382013526,
-8.266745121000156,
-8.275645991472095,
-8.318238798369707,
-8.331304942644566,
-8.349434795848328,
-8.362061607022575,
-8.346733781160454,
-8.338351263755408,
-8.34393249301828,
-8.367601214514842,
-8.377104435364409,
-8.338137237027158,
-8.39384140041139,
-8.408796421992472,
-8.384771224983735,
-8.431214986295778,
-8.445121946905408,
-8.446992207490474,
-8.434450187846124,
-8.410135668159555,
-8.48167750631642,
-8.496310178082211,
-8.477838894852203,
-8.470840746266216,
-8.479202500113063,
-8.496840595332989,
-8.539198466040128,
-8.540459174274377,
-8.542675428207103,
-8.549913498784735,
-8.576404001570157,
-8.600281522416658,
-8.605355482936934,
-8.622181242245889,
-8.597806969208598,
-8.571050169172448,
-8.609266292997924,
-8.619782570131813,
-8.637454705054944,
-8.651245410829526,
-8.63545006106043,
-8.691114932043936,
-8.66252594401694,
-8.693110690055752,
-8.695641701038065,
-8.69497519288308,
-8.729152616883946,
-8.697003765289612,
-8.701670956255027,
-8.703311920522616,
-8.757379066638453,
-8.71831601063411,
-8.755279973021944,
-8.764256343780419,
-8.756535425247288,
-8.778082993703011,
-8.806118020033223,
-8.802030087026772,
-8.790422684107075,
-8.827815474200454,
-8.827415256826287,
-8.788371637947531,
-8.807510222838475,
-8.815038907935477,
-8.838455163617416,
-8.836638889964835,
-8.874543673360455,
-8.898043274268124,
-8.891177387675672,
-8.883867200928881,
-8.90945321688285,
-8.892611440124677,
-8.90081204899356,
-8.974737249582242,
-8.995877582089511,
-8.978011010039573,
-8.964765571121479,
-8.94833901672281,
-8.994697517003772,
-9.007170154090632,
-9.004492255051932,
-9.03283164898554,
-9.010524407003674,
-9.029367656432662,
-9.008184736916148,
-9.081891494021455,
-9.031249945082209,
-9.01580849060645,
-9.05710388768433,
-9.092489253150092,
-9.102805704642568,
-9.079633062415649,
-9.122125975392832,
-9.102067274415598,
-9.122229276763068,
-9.113823464894915,
-9.1651386264043,
-9.138773479115246,
-9.12129195194978,
-9.144455577369428,
-9.15912618983505,
-9.099569693589826,
-9.179516656785948,
-9.159938207039469,
-9.163810334552053,
-9.16628072485964,
-9.170814365708935,
-9.18028780578548,
-9.171771639330785,
-9.176540715266494,
-9.218504903357264,
-9.205242362898641,
-9.266685975718703,
-9.23191982140907,
-9.279066171605356,
-9.251621839123908,
-9.304323559744754,
-9.28162112195268,
-9.273420568307248,
-9.262948013778427
],
"gp": [
0.5177698262991051,
0.32633995146323475,
0.3352730232076001,
0.33070357247040816,
0.3239095399363176,
0.30454278661208806,
0.2779746312504777,
0.2639767948378864,
0.25723152828967977,
0.252030570951537,
0.24532575991928074,
0.24000449798300733,
0.23491869099183477,
0.22872555979933512,
0.22469883727498802,
0.220064683505294,
0.21621901580952418,
0.21379376741556042,
0.2097984680476095,
0.20661427188728362,
0.20377136689539144,
0.20342468525736754,
0.20043841858641198,
0.19893635901598591,
0.19794144260131905,
0.1943051668409355,
0.19465573021075414,
0.19184494037658734,
0.1914997584369575,
0.18998065067248207,
0.1899716500574962,
0.18859995196963492,
0.18787671985407156,
0.18748284899112272,
0.18725816535675882,
0.1872154682619957,
0.1853518881142522,
0.1849283434386946,
0.18445746381568082,
0.18389124695657405,
0.18332112415765348,
0.1837224014389973,
0.1841424989522013,
0.18398757278282435,
0.18406817878349707,
0.18342032233874023,
0.1843030681913226,
0.18425153753377957,
0.1846592110892137,
0.1856171176315118,
0.18453090630599064,
0.18509404775487548,
0.18647892560459603,
0.18637962277787606,
0.18475312971406518,
0.18427798755021182,
0.18496978683635976,
0.1846530988430365,
0.18474420231695365,
0.18577300554985138,
0.1852100855742509,
0.18612100577348045,
0.18495473497921328,
0.18559822938285564,
0.18602798696862072,
0.18625599825993558,
0.1866001136218891,
0.18649549230169032,
0.1861988907632155,
0.18649297679941637,
0.1870393530616903,
0.1861895910360747,
0.1866517885914469,
0.1863860412158518,
0.18728497976230252,
0.18858985906450917,
0.18852617581430672,
0.18753511904078163,
0.1890222365514208,
0.1899827563609833,
0.18920631618835987,
0.1891061297211891,
0.19059290648079838,
0.18992164304368525,
0.19108287151266132,
0.19222259860581314,
0.19121399836089376,
0.1904158524500253,
0.19051466597896854,
0.1912798127589318,
0.1919709156052424,
0.1917199712724257,
0.19173092738303343,
0.19258493237579477,
0.19325704786639952,
0.1940552502456637,
0.19389212638076045,
0.19462779848876166,
0.1945625018392107,
0.19347729461633742,
0.19455591976387904,
0.19560000822584825,
0.19542550470075035,
0.19546171316924774,
0.19573546171697792,
0.19611502263026365,
0.19738496275156983,
0.1983034890877387,
0.19725983886318846,
0.1979625270057182,
0.19858253714111118,
0.19945179645258643,
0.19973617394287593,
0.20025815809639105,
0.20051568513815754,
0.19859617654329703,
0.200360570781124,
0.2000493614687623,
0.2011680348497681,
0.20098042626284116,
0.20147523988579585,
0.20246979043715513,
0.20191304580841818,
0.20317427212229158,
0.20241337561199785,
0.203481401128965,
0.2042487176246623,
0.2033050367656424,
0.20330401931244588,
0.20448722128366306,
0.2056017825173008,
0.2044978688892901,
0.20509594100662792,
0.20612474274304185,
0.20609815314921567,
0.20594562079725612,
0.20677235599957489,
0.20683692295709247,
0.20680182855098683,
0.20762673772744122,
0.20906888082559794,
0.20729609510710098,
0.20717196234653149,
0.2078074644168471,
0.20861478004381695,
0.20803600462774433,
0.2101863404146881,
0.21134370377876308,
0.2105731888268238,
0.2113221597849814,
0.21105930607797752,
0.21121820924310106,
0.20985344312448287,
0.2128460541781453,
0.21422657355602462,
0.21399138209083665,
0.2134430699750907,
0.21320015956512378,
0.21464992287831455,
0.2151960316344968,
0.21466421451833512,
0.21605063033664346,
0.21490918992039493,
0.21623234108217754,
0.21466783753827084,
0.21653188908966184,
0.21584904650783443,
0.2152465660729978,
0.21701501436595239,
0.216723620130593,
0.21781324946727515,
0.2178196125448898,
0.21889628737082348,
0.21748662124523233,
0.21992958603251714,
0.2182036766288879,
0.220356303650854,
0.22012058855313,
0.2193760652700042,
0.21903627296734568,
0.22013778298392775,
0.21882927882938807,
0.2201864162380371,
0.22024842281308432,
0.22094041131054754,
0.22142581061866037,
0.22130067795037464,
0.22150409784581954,
0.22141598366901388,
0.22127340938418338,
0.2220577540942748,
0.22185662393577582,
0.22370209006799607,
0.22256857702492652,
0.2245172336219978,
0.22359555840301212,
0.22524864284847032,
0.22536892518082757,
0.22420646066053046,
0.2245028651359245
],
"w_dist": [
16.272186049787162,
16.23231835446806,
16.396632681952592,
16.03023941414989,
15.62012077396751,
14.729475824649505,
13.684632797730291,
13.164812359850632,
12.91544673259442,
12.678062830215845,
12.427979311168688,
12.212854902968441,
11.99774168087887,
11.775050203209247,
11.59955698323046,
11.446541406761883,
11.299999834533452,
11.182219430320284,
11.000701170701243,
10.903381411234552,
10.794259293874099,
10.75145520593366,
10.644222415206784,
10.584524100866084,
10.534128125508632,
10.406899771731114,
10.402355284568582,
10.309767122350188,
10.270235024965727,
10.257349597898305,
10.249263062436343,
10.188605735648379,
10.170149900159256,
10.168871663574476,
10.147526990450348,
10.145032993544877,
10.061204280201189,
10.04200475643843,
10.037539231063981,
10.000808772877756,
9.980311978984082,
9.995669125287963,
10.012001891829009,
10.006361390790369,
10.018456371013942,
9.991537891290138,
9.997413560264127,
10.025125219883067,
10.033579638880536,
10.07634543883495,
9.992753319047457,
10.02993255680443,
10.060629701206823,
10.06401895376352,
10.019778240236464,
10.023016981793269,
10.022957552396333,
10.043482159345585,
10.05353976355658,
10.077239784827595,
10.042815731733274,
10.067305592593984,
10.038258795452933,
10.056606745923679,
10.07766933278141,
10.101308327047224,
10.099383861183105,
10.10175304575863,
10.079342282939164,
10.080477448813927,
10.109023923955412,
10.089535202939286,
10.10103121374407,
10.102250537709292,
10.151439376570227,
10.154694320809128,
10.159495730277815,
10.12898824642867,
10.1818388816638,
10.211829946795074,
10.158808282705458,
10.166707291562327,
10.22416786454681,
10.230521383040998,
10.26026351472251,
10.284287584744975,
10.258873768341848,
10.242509786491718,
10.249079161423904,
10.280399348593164,
10.296813586634446,
10.255336950579254,
10.311150676368644,
10.334645745693102,
10.317341701800999,
10.37176748748519,
10.38404320610894,
10.393270195855035,
10.380075213440469,
10.344908605070191,
10.427236706986383,
10.452310255653847,
10.432093941452157,
10.425457884307596,
10.43655711116954,
10.457990819164827,
10.513048097007294,
10.523494061853132,
10.515273819621806,
10.529538778973428,
10.56222937168218,
10.594799491686699,
10.60271722516443,
10.624762817121976,
10.602963824149885,
10.557011941763081,
10.612872007973161,
10.620276191907045,
10.649135054889902,
10.661049671662152,
10.650202459351625,
10.715812833085014,
10.681656411977906,
10.724853417812241,
10.719775449312664,
10.729789199177022,
10.771639792939533,
10.730054134792756,
10.734711149818866,
10.748184132372211,
10.813396890754383,
10.763294702513612,
10.806239384056159,
10.825503761747969,
10.817516952905907,
10.837539203350364,
10.873841577513609,
10.870399312076422,
10.858440966483881,
10.904082847660419,
10.918104064158898,
10.861332585261424,
10.87922984718257,
10.893113558516541,
10.924602958483574,
10.916998936579782,
10.976407082060462,
11.011480321639626,
10.996909273587743,
10.997088799109823,
11.020046273255952,
11.00479352250059,
10.999346480410328,
11.103197792248835,
11.138143314459388,
11.117924838595908,
11.099196266109107,
11.080340608776119,
11.141196748130346,
11.159130481165697,
11.151134406195748,
11.193337940965971,
11.159616310576084,
11.191691067687465,
11.15486309997037,
11.247210380358577,
11.18974041408963,
11.168274154011005,
11.227254029624483,
11.259725456563835,
11.28093820555597,
11.257829186855218,
11.311088848929126,
11.276933490720557,
11.32152514335437,
11.295860225318833,
11.368701667459614,
11.339979364118022,
11.315052599784654,
11.334818306947367,
11.360504019973623,
11.287862481011286,
11.381380821293243,
11.362422434488947,
11.373214447803981,
11.380538829575231,
11.383821145082136,
11.395328782562515,
11.385931468213734,
11.389274818876869,
11.439082440759393,
11.423808608095877,
11.50370687501044,
11.457605593428662,
11.524238508175593,
11.487577428573214,
11.556809991037749,
11.535310363769538,
11.515485166892036,
11.507976668920278
]
}
}
@@ -0,0 +1,241 @@
{
"run_name": "p1a_dcgan_128",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "data",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"model": "dcgan",
"image_size": 128,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"augment": false,
"run_name": "p1a_dcgan_128"
},
"history": {
"g_loss": [
10.324818278776291,
4.499918000525835,
3.9237336206894655,
3.6038456657248683,
3.7889309543320255,
4.392963935676803,
4.148233837169459,
4.106168296824918,
3.7538294778484054,
3.8589749647638736,
3.7031722038538537,
3.8665467772760196,
3.7538228845621786,
3.608647685032338,
3.6832708042974653,
3.692910609750921,
3.724931339995983,
3.604629485684837,
3.6804411069641256,
3.6622092540129128,
3.7969076253471767,
3.6357844372669983,
3.9316059744262146,
3.869968514523318,
3.9387093750744038,
3.9345892089355385,
3.928585197529422,
3.9998378517965856,
4.023346854921064,
4.111288466395285,
4.161702766687894,
4.242447932242838,
4.338531056888718,
4.045238316218313,
4.38175541946155,
4.4343487401930695,
4.300580274027127,
4.355943256309534,
4.574433333779741,
4.3422536469804935,
4.764122917611375,
4.774169352931433,
4.4072638687669725,
4.631937114756682,
4.7671385039058,
4.8388414534364035,
4.834202780535058,
4.7477915763902745,
4.843117236468193,
5.013196908765369
],
"d_loss": [
1.0862611518679266,
0.7481624861048837,
0.8296967833979517,
0.8561000182078435,
0.8217643465305495,
0.6476067472726871,
0.6841903616093162,
0.6695767899927421,
0.6991251567299039,
0.6637568701154146,
0.634765022362654,
0.6232591508609108,
0.6477101089544276,
0.6133569091813177,
0.5935766670502659,
0.5838312071740118,
0.5598683370293206,
0.5753741324998629,
0.5265689334617212,
0.5182791932239237,
0.5408857028103538,
0.5189638977599704,
0.4411299268149922,
0.41802322019178134,
0.510734650075563,
0.4155518415694435,
0.42475847928569865,
0.410343188744707,
0.44506979039591604,
0.3561572577788407,
0.39312837523623156,
0.30740913268751824,
0.41385677393175596,
0.40352807326130885,
0.2824845181889514,
0.2817101678691613,
0.4254766225687459,
0.3343923736212409,
0.3208908147942752,
0.3191899386966903,
0.1932365063768931,
0.39770887442665476,
0.3428039119507258,
0.3062576757560874,
0.22945673206152442,
0.2915809340974014,
0.2625290870220743,
0.27048316550974405,
0.3031444646951416,
0.18513342805015734
],
"d_real": [
3.3752954597147102,
2.35997685815534,
2.052646995609642,
1.77311768491044,
1.8545025556515424,
2.3428913996769833,
2.260955125857622,
2.260443206526275,
2.2269854586348576,
2.29803347791362,
2.3114520178900824,
2.3919893696776824,
2.3399036929138703,
2.374521010961288,
2.409368400899773,
2.4950177608392177,
2.574993671515049,
2.6157428056765823,
2.62438086566762,
2.7143023564265323,
2.83175419538449,
2.68245116665832,
2.9844149076021633,
2.997306367270967,
2.9461978684123764,
3.1375890226445646,
3.1609652266543136,
3.2485685837574496,
3.1896983089610043,
3.4145179161658654,
3.4630906520745692,
3.545247787084335,
3.6894122392703323,
3.3579807770557895,
3.7189742520324187,
3.8464873876327124,
3.513109353872446,
3.7619703243940306,
4.017693152794471,
3.7906860938439,
4.224277594150641,
4.18484865498339,
3.7460358448517628,
4.031172206259181,
4.248833811181223,
4.265828580937834,
4.312243861010951,
4.29057116386218,
4.2550920013688565,
4.561388325487447
],
"d_fake": [
-4.818273838259216,
-2.412633814363398,
-2.1126265892615685,
-1.8271709181304672,
-1.9226068100358686,
-2.4299181098611946,
-2.365551288311298,
-2.410998894618108,
-2.3402762127737713,
-2.3860131002898908,
-2.4045914217957063,
-2.5045244591867823,
-2.4349998734955096,
-2.4102647243401942,
-2.4769628109076085,
-2.619562197954227,
-2.6651161837781596,
-2.609001697638096,
-2.7068226480076456,
-2.755846626738198,
-2.8650594205937834,
-2.732078519641844,
-3.059719509548611,
-3.0680670452933025,
-3.001468299800514,
-3.1677569527911325,
-3.189971532577123,
-3.272182888454861,
-3.257312220385951,
-3.5007174565241885,
-3.484112861828926,
-3.6073121290940504,
-3.6499396430121527,
-3.3923667190421343,
-3.748117430597289,
-3.84341554560213,
-3.5867574968908587,
-3.79784425914797,
-3.996460352188502,
-3.867253621419271,
-4.259910387870593,
-4.15047122270633,
-3.823865319928552,
-4.08796144143129,
-4.278646355001335,
-4.2929331461588545,
-4.309262006710737,
-4.247542422041934,
-4.278999393821781,
-4.575867481720754
],
"fid": {
"25": 143.09141540527344,
"50": 114.97172546386719
}
}
}
@@ -0,0 +1,241 @@
{
"run_name": "p1a_dcgan_64",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "data",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"model": "dcgan",
"image_size": 64,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"augment": false,
"run_name": "p1a_dcgan_64"
},
"history": {
"g_loss": [
6.093092158847214,
4.789128544525458,
4.300182261782834,
4.0728246786782885,
3.8482125700475316,
3.9366413159256117,
3.6263984681194663,
3.377500344829984,
3.342157386506024,
3.56824110654525,
3.5114283088244433,
3.363656574478134,
3.371445809196458,
3.401680646305028,
3.382975984380668,
3.307920415288745,
3.434993563956207,
3.340696342353128,
3.2550677481987,
3.263805691821453,
3.246816934229663,
3.142993058922375,
3.192848947090216,
3.1538104600726795,
3.246948222972007,
3.267736159137681,
3.2840022901662635,
3.288853055335836,
3.2473370228531127,
3.303259124660976,
3.313597415711205,
3.339600024633428,
3.412424444939352,
3.3523559502851312,
3.5164291605424998,
3.464242946706776,
3.728450168307242,
3.619724219489811,
3.72144247401251,
3.7653974460406303,
3.6072474622205455,
3.8461533308038005,
3.691905262072085,
3.792955133238107,
3.801975160638173,
3.9341413188072987,
4.009917546589023,
3.7716672371517723,
4.015299316380236,
4.018800031314166
],
"d_loss": [
0.7138173311757736,
0.5191595103655361,
0.518687163774147,
0.5887537178957564,
0.5160255343931862,
0.5051601908814448,
0.5442874634113067,
0.5555200976693732,
0.5265357992651626,
0.4174262031626243,
0.5439573829022483,
0.4956961662755308,
0.49546868769595254,
0.5268417786424741,
0.46799646146022356,
0.50298836055156,
0.4250736907761321,
0.5126841017642082,
0.5009440258782134,
0.4233359951589607,
0.5684727533983115,
0.42752756770604694,
0.553615409323675,
0.47856491579650307,
0.4629426175234919,
0.45501123795397264,
0.4237267229801569,
0.4128849713338746,
0.5246493675801743,
0.35660123498712337,
0.5282466212908427,
0.3539614020249782,
0.3891080868486156,
0.4175300829621971,
0.40953003340520155,
0.36623617202744013,
0.30197565542518073,
0.32337656306723755,
0.33315912860198915,
0.4019287416520409,
0.35404166884911364,
0.33052079981336224,
0.3589909453677316,
0.3744007419699278,
0.27510220556655246,
0.30178614605504733,
0.2754620139319927,
0.38370498281736404,
0.3097262779274621,
0.28349674417454207
],
"d_real": [
2.3512214024861655,
2.473279382428552,
2.464324168669872,
2.2370514665913377,
2.3121658716446314,
2.456357019069867,
2.2457773583567042,
2.2124482505341883,
2.345922372280023,
2.556110088641827,
2.4518188574375253,
2.482108857896593,
2.492469339289217,
2.4729468842856903,
2.529605506831764,
2.5219437036758814,
2.6725941845494456,
2.5313744015163846,
2.51001217833951,
2.614915244599693,
2.4530621064014926,
2.6167523636777177,
2.437036367563101,
2.5173462598751755,
2.6574229052943044,
2.639966524564303,
2.7633190318050547,
2.747817797538562,
2.6848304292075653,
2.856544527233156,
2.733482825450408,
2.891070015410073,
2.9795744154188366,
2.916840284298628,
3.058933355869391,
3.041474040756878,
3.3209717579377003,
3.1591952071230636,
3.3062986553224745,
3.346426515497713,
3.208064674312233,
3.5098553518963675,
3.3035555782481136,
3.353525585598416,
3.450815706171541,
3.557157467573117,
3.60134026943109,
3.4045908349192042,
3.576346503363715,
3.607910417084001
],
"d_fake": [
-2.698751025729709,
-2.5324085105178704,
-2.418590561956422,
-2.3029292506030483,
-2.3352967612763758,
-2.467205960526426,
-2.3054907388157315,
-2.2495648799798427,
-2.384588453504774,
-2.5988358391655817,
-2.5245914296207266,
-2.5004225021753554,
-2.523374182546241,
-2.5201795121543427,
-2.5649376893654847,
-2.550543695433527,
-2.6943232218424478,
-2.5457723731668587,
-2.5313382923093615,
-2.6334747575287127,
-2.5258624737079325,
-2.5968544136764655,
-2.4955181219638924,
-2.5585372468345184,
-2.66167476034572,
-2.660206582811144,
-2.7624571710570245,
-2.74959472917084,
-2.676759247087006,
-2.89791746221037,
-2.7793425209501867,
-2.9487923842210035,
-3.0024610992170806,
-2.899851456666604,
-3.1044111985426683,
-3.048013409997663,
-3.3757157284989314,
-3.2108908107138086,
-3.3648835532685633,
-3.373193789751102,
-3.2511732313368054,
-3.5434862446581197,
-3.355688959105402,
-3.458360590486445,
-3.481504913069244,
-3.630540505433694,
-3.687255468123998,
-3.4213602440988917,
-3.6472718328492255,
-3.6654869144798345
],
"fid": {
"25": 120.86710357666016,
"50": 86.69241333007812
}
}
}
@@ -0,0 +1,241 @@
{
"run_name": "p1b_dcgan_aligned",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"model": "dcgan",
"image_size": 64,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"augment": false,
"run_name": "p1b_dcgan_aligned"
},
"history": {
"g_loss": [
7.398905967491576,
4.653170388351139,
4.068944683696469,
3.8742264115657563,
3.606504661214148,
3.404219969215556,
3.278936840211734,
3.114477801017272,
3.020545942485969,
3.0211910332242646,
3.0188870243409758,
2.9215137174942045,
2.8770557827610745,
2.946957275016695,
2.986128642072535,
3.012655937558629,
3.020022893149374,
3.090240004755015,
3.0726223833715687,
3.0066970574120297,
3.1059495922591953,
2.97864314665795,
3.0392796716520474,
3.0869569785327804,
3.116929523774192,
3.0735646778534558,
3.134619455391036,
3.190754602671179,
3.217570474801155,
3.0652808079498017,
3.2975450101722448,
3.405921498584187,
3.39824391157231,
3.4237823136206558,
3.4959986240435867,
3.4759934407730517,
3.628999324212981,
3.534372442529306,
3.6559133673580284,
3.733442310632891,
3.5992486965961947,
3.767915091288284,
3.8464435101964343,
3.710446714598717,
3.7447581111926596,
3.847089308095125,
3.825987093994378,
3.9888884835741205,
3.9585439937873783,
3.9651205520917716
],
"d_loss": [
0.6291518173952643,
0.6164366470124477,
0.48726463292399025,
0.5318871221035464,
0.6417568969484578,
0.5961706368013834,
0.6568488311500121,
0.6381265403559575,
0.6524968493061188,
0.6386967774830822,
0.6604339574009944,
0.6224450665470372,
0.6251574117913206,
0.6177822187797636,
0.547836142918493,
0.5785931372521524,
0.535795863208353,
0.5740683746134114,
0.5393759033555149,
0.5064800406973331,
0.4845471404110774,
0.5799725601752089,
0.5617706066108922,
0.49940081134947956,
0.4110419796540951,
0.5750601599868547,
0.48916176025174624,
0.47323483470668143,
0.4115485591002,
0.5828054825433044,
0.3829006105183791,
0.46903195278321064,
0.4058346139091967,
0.44633812597419464,
0.39348106988920617,
0.35872812239596474,
0.3657414275340927,
0.4446974924295886,
0.3230297609160726,
0.3891192182787081,
0.3502327990996787,
0.37634868227327484,
0.3552663314004994,
0.33295479799724287,
0.42005304872798616,
0.28313586175537264,
0.3537146855846175,
0.28872040199895954,
0.33174661277100825,
0.31214438684475726
],
"d_real": [
3.429034697703826,
2.5520865285498466,
2.5569761227338743,
2.4736913697332397,
2.140363285684178,
2.1411173241770167,
2.0585111878875995,
2.0161380604801016,
1.9475130831074512,
1.9854239439352965,
1.9614840939513638,
2.018576357099745,
2.0210589547442575,
2.057306208162226,
2.155423335539989,
2.209998758430155,
2.216422056540465,
2.2668797419621396,
2.26854741675222,
2.322200506161421,
2.384860535972139,
2.2947369110889926,
2.3658372927934694,
2.4300787510016026,
2.561278583657028,
2.379734976678832,
2.56698491023137,
2.555771037044688,
2.6685882959610376,
2.4119229765019865,
2.749185806665665,
2.730366731301332,
2.852122314974793,
2.8101339747763086,
2.9661614833733974,
2.968567628126878,
3.0624237060546875,
2.9466277554503875,
3.1255376766889524,
3.2922110272268963,
3.081979099501911,
3.2231468787560096,
3.321197118514623,
3.291224422617855,
3.2169945219643097,
3.357823983216897,
3.3176163078373313,
3.522034343491253,
3.3818677592481303,
3.5834097576956463
],
"d_fake": [
-3.7939882991660356,
-2.4246925288795405,
-2.572223630725828,
-2.4306972210223856,
-2.1562277333349242,
-2.143089555267595,
-2.062683443737845,
-2.017640659951756,
-1.9637505947015224,
-1.9977019424112434,
-2.0018497695270767,
-2.024461208245693,
-1.9788786162677994,
-2.0655901656191573,
-2.196751107517471,
-2.1872166364620895,
-2.221575353899573,
-2.30082516792493,
-2.278091365455562,
-2.310966051541842,
-2.3832577579041834,
-2.2676963480109844,
-2.305365595043215,
-2.4225321712656918,
-2.5547293638571715,
-2.39278314052484,
-2.520575433714777,
-2.573139092861078,
-2.6739202646108775,
-2.4223876529269748,
-2.7801482371794872,
-2.75415772658128,
-2.866937197171725,
-2.813182863414797,
-2.9845210670405984,
-2.974992409730569,
-3.0732594025440707,
-2.9462469541109524,
-3.154460760263296,
-3.3307881803594084,
-3.101540720360911,
-3.2882786938267894,
-3.347231066125071,
-3.3178903954660792,
-3.2111929869040465,
-3.4080181936932425,
-3.3648671207264957,
-3.56991823310526,
-3.477569971329127,
-3.556207770975227
],
"fid": {
"25": 47.52402114868164,
"50": 41.9679069519043
}
}
}
@@ -0,0 +1,241 @@
{
"run_name": "p1b_dcgan_full",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "data",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"model": "dcgan",
"image_size": 64,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"augment": false,
"run_name": "p1b_dcgan_full"
},
"history": {
"g_loss": [
5.927244392526137,
4.503751743680391,
4.200777072300259,
3.904250641090748,
3.8682738479513388,
3.3296483611672096,
3.1240623599817803,
3.3876097628639803,
3.3665242728132467,
3.331410658410472,
3.3419303698266227,
3.3505911108775015,
3.3620735478187456,
3.3697523864734378,
3.4018680353243,
3.386988679376932,
3.395216122954192,
3.318909319436066,
3.3878846305748844,
3.3257555526673284,
3.2758405348723834,
3.2085712323458786,
3.187759434247865,
3.0908859167600613,
3.049896148343881,
3.217905936890051,
3.1415729854389247,
3.144909373506442,
3.2467114800252976,
3.279142019909042,
3.2195931715715647,
3.3629653075737673,
3.3010145508963813,
3.353348999801609,
3.388924140439485,
3.505006693592136,
3.575815953234704,
3.4736386770770573,
3.6738112665477516,
3.537430396043621,
3.750809643417597,
3.7184202866688465,
3.660821580495208,
3.810335730542787,
3.8424793273234408,
4.150385511101162,
3.6174652722751737,
3.926328664056511,
4.167547395866778,
3.960468271874592
],
"d_loss": [
0.7070820131060532,
0.5658414482465411,
0.5532542599253675,
0.6084109526923579,
0.5693240565940355,
0.6424711903827822,
0.5709959441461624,
0.5022243254491662,
0.5481268257603177,
0.5034884631506398,
0.5801687634780875,
0.4186092700299799,
0.6039017491265495,
0.48760273767651147,
0.5034265386529713,
0.43254302620378315,
0.4744477061093108,
0.482672236350357,
0.49027390224047196,
0.5017664120015171,
0.5048496062174822,
0.43436981909550154,
0.5543963512262473,
0.5313912788008013,
0.3734084243257331,
0.5257701219147087,
0.4519741041506203,
0.42078481547725505,
0.44682620712516147,
0.435886079700202,
0.36485503502508515,
0.4176781969383741,
0.46036502504800886,
0.36134969565667147,
0.48708703417458343,
0.3782856844397437,
0.38080592496463883,
0.38907430747635346,
0.30763110352091044,
0.3996705088414188,
0.2257982671388194,
0.38294320117331976,
0.3614954460475944,
0.30432477236016947,
0.3204686908831454,
0.2587633115780723,
0.42368309838203794,
0.2539351904589651,
0.21932300167460728,
0.3699451860947869
],
"d_real": [
2.42933596097506,
2.279985101813944,
2.2889586554633246,
2.114503041291848,
2.2175635802440152,
1.9780570136176214,
2.071110586834769,
2.2955179295988164,
2.272639608790732,
2.3102703909588675,
2.2650668478419638,
2.4833128554189305,
2.352374802287827,
2.428959707928519,
2.502769535423344,
2.5896373324924045,
2.5561559139153895,
2.565126239744007,
2.552747579721304,
2.5677977993957,
2.5594801291441307,
2.592228685688769,
2.570550869672726,
2.5062269553160057,
2.5921120195307283,
2.566576215955946,
2.639827369624733,
2.7183070386576857,
2.7440868279872794,
2.80943241282406,
2.843225267198351,
2.9298948630308495,
2.8511314840398283,
2.916102743556357,
2.8803314469818377,
3.044718294062166,
3.1301173022669606,
3.0949149824615216,
3.2817539312900643,
3.086814163077591,
3.3697261973323984,
3.299177691467807,
3.2019053402110043,
3.40889655219184,
3.3978670560396633,
3.843212681957799,
3.0948288827879815,
3.524963884272127,
3.7795714027861242,
3.473988264034956
],
"d_fake": [
-2.697694081526536,
-2.2933016067896133,
-2.3195214067768846,
-2.164962882669563,
-2.260479918911926,
-2.0072195631826024,
-2.0783580225757046,
-2.37904263765384,
-2.3203348339113417,
-2.3668159699847555,
-2.3372883674425955,
-2.535493964822883,
-2.377614701914991,
-2.4813023876940083,
-2.5215499095427685,
-2.607076278099647,
-2.6116009899693675,
-2.5827832344250803,
-2.594687129697229,
-2.5711607810778494,
-2.5696842160999265,
-2.619086730174529,
-2.5653889118096767,
-2.4805074838491588,
-2.6039478269397702,
-2.593635982937283,
-2.6574107765132546,
-2.7202269399267998,
-2.785310728937133,
-2.8169782997196555,
-2.882336869199052,
-2.910709224195562,
-2.85884514833108,
-2.970396188589243,
-2.9311827635153747,
-3.1063334147135415,
-3.1547314264835458,
-3.11463628263555,
-3.330946343576806,
-3.1284498720087557,
-3.440172766008948,
-3.37364258725419,
-3.2624068300948186,
-3.508383465628339,
-3.478210710052751,
-3.8448987129407053,
-3.184675999176808,
-3.645591083754841,
-3.853363819611378,
-3.59842769916241
],
"fid": {
"25": 109.55711364746094,
"50": 88.98616027832031
}
}
}
@@ -0,0 +1,241 @@
{
"run_name": "p1c_dcgan_full_aug",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"model": "dcgan",
"image_size": 64,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"augment": true,
"run_name": "p1c_dcgan_full_aug"
},
"history": {
"g_loss": [
7.49771284742846,
5.1344794735439825,
4.20233915020258,
3.7956945456755466,
3.3582443528386774,
3.135080910518638,
3.037927355394404,
3.0205755423531575,
2.9449298040479674,
2.820248532292043,
2.724728472562682,
2.722938014847091,
2.675822157285407,
2.6850139605056524,
2.6884455950851116,
2.7171011700207353,
2.826366552677101,
2.7467185403299954,
2.8128189439765916,
2.9744829476580152,
2.935044853828656,
2.945460690655069,
3.0004867578291488,
3.129746067090931,
3.093457205149417,
3.166782804565807,
3.2522930768915477,
3.2222229641758733,
3.251373175372425,
3.3681361798801994,
3.259154211461456,
3.2256888188103323,
3.274382082793193,
3.349048242227644,
3.2585730838995333,
3.3790567638272915,
3.3174902425808277,
3.3276833469987426,
3.4146066698858624,
3.5484207490952606,
3.348497238296729,
3.570188072724984,
3.3912910675454855,
3.548164558588949,
3.4474635846976542,
3.3920835382026486,
3.57115820572417,
3.4723810965760458,
3.5018457458314733,
3.4800260357606487
],
"d_loss": [
0.5809737999772286,
0.5078993229450196,
0.5584569440629238,
0.5340489637202177,
0.6691515040066507,
0.6945736851766069,
0.6726883698222984,
0.666734377383931,
0.6737182643105332,
0.7003357819257638,
0.6895497346408347,
0.685899390401239,
0.6526830081437898,
0.6581462018637576,
0.6418598625395033,
0.6319757849933245,
0.604252751566406,
0.6245534220376076,
0.6020822420907326,
0.5405760487048035,
0.584312041186624,
0.5419003778479548,
0.532464118499277,
0.45387270175812083,
0.5574886851235588,
0.43647419597603315,
0.48457974958050454,
0.4675797224204,
0.4322719926921985,
0.38088868093541545,
0.5638646479122914,
0.4416344142081136,
0.4628239624265932,
0.4024532137709296,
0.4544067734008671,
0.4031565586089069,
0.42116634805615133,
0.45903370583541375,
0.37940196888760114,
0.34817556783747977,
0.4849503485278951,
0.3100079265064918,
0.5141805250070288,
0.342183085413188,
0.4166090010991718,
0.4583264416736415,
0.33097727382635206,
0.486405484059937,
0.3812256623377912,
0.41236137388608396
],
"d_real": [
3.5584671803009815,
3.156553023900741,
2.60367910271017,
2.5299324459499783,
2.1071761367667436,
1.927138096246964,
1.936074322105473,
1.9407738905686598,
1.9132834051409338,
1.8729030576526609,
1.8384323201627812,
1.8409349001370943,
1.866650638417301,
1.8840518344161856,
1.934535882411859,
1.9617490442390115,
2.0755841181828427,
2.0176005078177166,
2.122039566692124,
2.2631645956610003,
2.3149196347619734,
2.3347063635149574,
2.3768706566248183,
2.550839106241862,
2.4620645800207415,
2.5936582842443743,
2.6688572810246396,
2.6381523262741218,
2.757892510829828,
2.8799137865376268,
2.7431253612550917,
2.7144988663176184,
2.713803478795239,
2.89947754297501,
2.757139091817742,
2.9047963721120458,
2.862286689953926,
2.881792802077073,
2.9661841637048965,
3.090400174132779,
2.832848654852973,
3.161479982555422,
2.8955952897031083,
3.1162490844726562,
2.9129831689035792,
2.961068112626035,
3.218389136159522,
2.9556383638300447,
3.074425754384098,
3.1353414160573583
],
"d_fake": [
-3.902294419769548,
-2.9155128348586907,
-2.519574434329302,
-2.422531486576439,
-2.099835086072612,
-1.943570846166366,
-1.9525424639383953,
-1.9584248860677083,
-1.9358763409475994,
-1.866983598878241,
-1.825645601647532,
-1.8280421526004107,
-1.859714239071577,
-1.8820147392077324,
-1.912892851055178,
-1.965098845653045,
-2.0694798852643395,
-2.0002318488226996,
-2.128022324325692,
-2.263166802561181,
-2.2867513966356587,
-2.3082755325186968,
-2.3829850579938316,
-2.557142339201055,
-2.4545631082648907,
-2.6175563192775106,
-2.649488938160432,
-2.6308885721059947,
-2.7544204964597,
-2.866274124536759,
-2.68292477599576,
-2.6990977230235043,
-2.7363305295634475,
-2.8722930973411627,
-2.7597506270449386,
-2.8848504286545973,
-2.8545510055672407,
-2.853106246035323,
-2.94730220696865,
-3.0794619617299137,
-2.827873629382533,
-3.154448973826873,
-2.901091062105619,
-3.0957394787388988,
-2.9393297505174947,
-2.9338840908474393,
-3.1787822755992923,
-2.939842550163595,
-3.055058012660752,
-3.0686827765570746
],
"fid": {
"25": 48.02587890625,
"50": 33.403228759765625
}
}
}
@@ -0,0 +1,241 @@
{
"run_name": "p1c_dcgan_hflip",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"model": "dcgan",
"image_size": 64,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"augment": false,
"run_name": "p1c_dcgan_hflip"
},
"history": {
"g_loss": [
8.25675857398245,
4.676511815916269,
4.164578024648193,
4.186401937316116,
3.76872500216859,
3.2271445515509853,
3.142285712318033,
3.1165132149417176,
3.013493389528022,
2.953919046216159,
3.0022377742088246,
2.9681987317963543,
3.00195867772031,
2.9622256552052293,
2.955358256185905,
2.9864892814403925,
2.989851166581751,
3.0584179246161356,
3.1119907299757132,
3.037174945553908,
3.027633951515214,
3.0569768834572573,
2.966104475326108,
2.9770527466749535,
2.9722607779260883,
3.0115039623382254,
3.1060837206677494,
2.9663566479809647,
3.0271955297207143,
3.0386748222204356,
3.1294615272528086,
3.154553516473398,
3.3048473729883345,
3.0961187388149685,
3.299935041194479,
3.271312023915,
3.257369746056059,
3.4152885544885936,
3.4053598885488117,
3.457569090347005,
3.4467413718414166,
3.4432563753599603,
3.4693928591421463,
3.6659582103164787,
3.5930098911894595,
3.797193683254031,
3.667330656805609,
3.7862557178934337,
3.774632334605687,
3.7389516995057592
],
"d_loss": [
0.548022291642956,
0.5451441674023612,
0.5558887697819971,
0.5564709546792711,
0.641778141610388,
0.6736702428032191,
0.6363983667877495,
0.5953805521767364,
0.6679572965790573,
0.634476393302027,
0.603355382147253,
0.6375667867688541,
0.6092054669737307,
0.5753960010205579,
0.6079838377797705,
0.4880936572758051,
0.6110908901080107,
0.5176580600185782,
0.5720924068019431,
0.4914973056437368,
0.5363267168370832,
0.5233565535014256,
0.5592640668281124,
0.5296072383275908,
0.5456295730148115,
0.48084998664119816,
0.4613812982908681,
0.5386411920189857,
0.5733459554771837,
0.4508836393873406,
0.4352997397988016,
0.46203345853166705,
0.44442558863287807,
0.5617774939084919,
0.44143821966125923,
0.45488193964697105,
0.4543754256561271,
0.3228016715242058,
0.4205567768066485,
0.3840478499316507,
0.5015128295804955,
0.35355696542204446,
0.40790109906313765,
0.3549733556743361,
0.37041159862509143,
0.3284146471394815,
0.2910106185202797,
0.35944768394001275,
0.393303733995646,
0.391544733920859
],
"d_real": [
4.019593943897475,
2.622322278145032,
2.4709491485204453,
2.53226986909524,
2.2099495341635156,
1.9406524397369125,
2.01206420833229,
2.035232348319812,
1.9650885101057525,
2.002252268994975,
2.0346280937520866,
2.0005435943603516,
2.0740245101798296,
2.101316468328492,
2.1034359239105487,
2.2481464320777826,
2.1323666368794236,
2.2965948642828526,
2.2800436101408086,
2.322280093135997,
2.311317835098658,
2.3033560728415465,
2.2576771271534457,
2.334534669533754,
2.324166012625409,
2.379901625152327,
2.4554260938595505,
2.375279369517269,
2.4100789290208082,
2.4945882161458335,
2.5803009750496626,
2.5905183171614623,
2.6599675936576648,
2.5271266056941104,
2.7220761072941317,
2.7265788021250668,
2.7684720683301616,
2.951457944690672,
2.8958946293235845,
2.922740545028295,
2.8590539133446846,
2.983432867588141,
2.9901244334685497,
3.1199683572492027,
3.146685347597823,
3.2818033593332667,
3.1977833641899958,
3.246755371745835,
3.2554906209309897,
3.208925051566882
],
"d_fake": [
-4.121732320540991,
-2.5039029895749865,
-2.4196839210314627,
-2.4751148549919453,
-2.162226782904731,
-1.9520056553376026,
-2.010821813192123,
-2.04483764191978,
-1.9762802205534062,
-1.9677754375669692,
-2.053895281930255,
-2.0111517620901775,
-2.0822608002230654,
-2.117481025875124,
-2.094926019000192,
-2.2742056561331463,
-2.158075381547977,
-2.3173255064548592,
-2.277683747120393,
-2.3235455374432425,
-2.29817382290832,
-2.3284449129023104,
-2.258972657032502,
-2.3021991436298075,
-2.306573786287226,
-2.369942689553285,
-2.4827122647538142,
-2.3689294798761353,
-2.377735561794705,
-2.5200935428978033,
-2.609631530240051,
-2.5955338437333064,
-2.7022474240034056,
-2.496978238097623,
-2.782724885859041,
-2.740439227503589,
-2.766677660819812,
-2.989458263429821,
-2.9447697044437766,
-3.0063037709293203,
-2.9096828036838107,
-3.0015719161074386,
-2.99232182951055,
-3.1561790531517095,
-3.1698279747596154,
-3.3571352021307006,
-3.2598909557375135,
-3.29750726161859,
-3.2830059344951925,
-3.323195302588308
],
"fid": {
"25": 48.87022018432617,
"50": 37.92261505126953
}
}
}
@@ -0,0 +1,244 @@
{
"run_name": "p1d_dcgan_combined",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": [
"data",
"cropped/generator"
],
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"model": "dcgan",
"image_size": 64,
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"epochs": 50,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999,
"augment": false,
"run_name": "p1d_dcgan_combined"
},
"history": {
"g_loss": [
5.602753116715433,
3.9200918163662912,
3.5199965534208935,
3.371739243915585,
3.3461882977039736,
3.137788661794385,
3.029379733916662,
3.0273323862901873,
3.059817159144862,
3.110683336748623,
3.1012984880652743,
3.170209281874091,
3.216060452067801,
3.149093590044638,
3.229616947714617,
3.1978923002637627,
3.213569428304458,
3.288445125332971,
3.394116686672974,
3.4681778399352274,
3.5471808772814826,
3.584195407632025,
3.6233591188278087,
3.6579519256933524,
3.7541768020247543,
3.8486509298629414,
3.853615958963967,
3.9370697128527827,
3.893447044686928,
4.054170914542968,
4.169152774869911,
4.068397091723494,
4.220321850800487,
4.220843971988212,
4.222119323569355,
4.454468057673336,
4.274902692418486,
4.4543398831799035,
4.626360943580688,
4.629926620374793,
4.559587939596772,
4.701073604609058,
4.808832334089635,
4.766056595975499,
4.778027893146679,
4.945070554623321,
4.950684743433428,
4.92055880632987,
5.104131623323343,
5.264587200166242
],
"d_loss": [
0.5941560288201402,
0.5435166725036047,
0.6135869802571158,
0.5412212287094702,
0.5531811176649153,
0.5630135093134775,
0.5534746460656346,
0.5472401977380541,
0.5239319511497416,
0.5308712742340094,
0.5319687827642343,
0.4754260814049964,
0.48488130252271605,
0.4492346652591623,
0.5035609035427695,
0.41642169939829166,
0.49735938478559416,
0.42360800366327883,
0.4164037049420997,
0.38883863092900084,
0.3472986143945121,
0.4231103070064377,
0.37862524587418506,
0.3370539827139108,
0.3326316301610516,
0.3157087705767015,
0.37345560743864087,
0.23807516798631487,
0.3646761998375172,
0.2889485708124769,
0.262900613067451,
0.2936477154839223,
0.2541603364563262,
0.3124791463914555,
0.2842812816887744,
0.2522809031034801,
0.2825513521314717,
0.19933682957439502,
0.18816793878466337,
0.2811344854808,
0.24693815568173771,
0.22467703497079036,
0.21249357462147989,
0.20759847874702486,
0.23001492449321975,
0.2027955057746517,
0.1826293948956287,
0.1820751474394981,
0.19746717913205494,
0.19825284948558602
],
"d_real": [
2.696424779413604,
2.327351444940557,
2.0885737163661764,
2.259903701163407,
2.2694445908260445,
2.215452635937083,
2.215867131089706,
2.2621064567769475,
2.347323578220803,
2.3826242159881104,
2.4212710157657003,
2.5700790950811787,
2.593466059502568,
2.686655156513161,
2.655947719846744,
2.7530497914317325,
2.7078337450546544,
2.820664087252785,
2.9336905952706025,
3.0003898970727096,
3.1563868609156653,
3.1792864560317584,
3.1736970818030033,
3.3192252013573906,
3.3352269647978923,
3.456437797912793,
3.4715038287347,
3.6528363304178897,
3.498157985691327,
3.648601731470326,
3.8821339480014343,
3.7683673805717217,
3.87689308728327,
3.84326663673751,
3.8918675897978923,
4.145611448501701,
3.9256785585124567,
4.153767295682697,
4.330036696654883,
4.264925782683056,
4.242893510083634,
4.3734025985734055,
4.525041773581327,
4.455497098452508,
4.427978808750083,
4.66731527648079,
4.669608426577508,
4.647522037795158,
4.766690802803161,
4.912821050132988
],
"d_fake": [
-2.798510813026062,
-2.3384720874570606,
-2.1259883353397204,
-2.2805835394111234,
-2.329229747727434,
-2.2393034463758275,
-2.209383860214543,
-2.268576476464531,
-2.368243645960137,
-2.3832102870228704,
-2.419676909960703,
-2.555288540769921,
-2.598164291239345,
-2.65237698712751,
-2.6473003375237627,
-2.725007533518202,
-2.6980233289134414,
-2.8156557877010315,
-2.9129334747982125,
-2.9969172360675693,
-3.1338784330809766,
-3.154010359480134,
-3.19762199996248,
-3.298961798180384,
-3.3446990087421624,
-3.472827220293857,
-3.458594862653962,
-3.6607087134297145,
-3.5096239478763676,
-3.6943735633613968,
-3.8654523949231256,
-3.7322029838439876,
-3.9089291306926195,
-3.8526636406604355,
-3.9260732025830443,
-4.179815595661436,
-3.9352952759701005,
-4.197849269610459,
-4.369817902718689,
-4.276928489465215,
-4.259593983978956,
-4.402236694205659,
-4.479669788731073,
-4.430488643422326,
-4.4497447466773945,
-4.6799298167355925,
-4.665135630930246,
-4.669863396545866,
-4.777835451042639,
-4.915241367661711
],
"fid": {
"25": 95.52251434326172,
"50": 87.41361236572266
}
}
}
@@ -0,0 +1,445 @@
{
"run_name": "p2_1_dcgan",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": true,
"image_size": 64,
"run_name": "p2_1_dcgan",
"model": "dcgan",
"latent_dim": 100,
"ngf": 64,
"ndf": 64,
"lr_g": 0.0002,
"lr_d": 0.0002,
"beta1": 0.5,
"beta2": 0.999
},
"history": {
"g_loss": [
7.917207884220168,
5.164307089442881,
4.463084113903535,
3.4890593128581333,
3.3985265440538397,
3.1101026663668137,
3.006300899001141,
3.072223545458072,
3.039644182810926,
2.955167021092951,
2.8393835216187515,
2.781758146456037,
2.7952292010379143,
2.7510579200302305,
2.827826343413092,
2.8293020446490273,
2.8979977400193357,
2.920995756537996,
2.8576827922549386,
2.967094968526791,
3.0317712200757785,
2.9817951140272565,
3.085267485238803,
3.0754652612038655,
3.1619761411068787,
3.1525045372864122,
3.187886699870961,
3.093240438992333,
3.182769239649304,
3.2119698060385913,
3.202078128217632,
3.251495524389176,
3.254988084308421,
3.345758674475245,
3.2999407190224552,
3.300429462102982,
3.2197199631641564,
3.3269835958878198,
3.384258643383982,
3.2563424000723495,
3.382972500995438,
3.3505804910658834,
3.3733615344390273,
3.374156787012441,
3.4419287664768023,
3.405092048745316,
3.4367378113361506,
3.5005355649030743,
3.5005706110411983,
3.5274413369404964,
3.6043387671184335,
3.5771417733536572,
3.669941810811432,
3.6559583276398797,
3.6538899839879613,
3.6779603933931417,
3.7710742545433535,
3.7578723393699045,
3.926350258863889,
3.837528108563433,
3.918703300958006,
3.7843924898765664,
3.882804385756548,
4.001624239560885,
3.9985561209738765,
4.128043051586192,
4.126161763631603,
4.108133255671232,
4.104230354388809,
4.227261422281591,
4.19494295040639,
4.216025838612492,
4.41665283533243,
4.281618119559736,
4.564752647509942,
4.499114790023902,
4.584787593692796,
4.679011650980474,
4.361232344077056,
4.590840407925794,
4.813304825216277,
4.57902659709032,
4.832539459579011,
4.9397924076288175,
4.625206218475205,
4.966649229200478,
4.926805096272474,
4.951553358481481,
4.961851539265396,
5.14286653812115,
5.194743113130586,
5.228604655489963,
5.24297302400964,
5.341128527099251,
5.3541075465006704,
5.521258246185433,
5.480838002302708,
5.609807980875684,
5.577247871292962,
5.614952203554985
],
"d_loss": [
0.5763555629433602,
0.5122131684906462,
0.620389310324676,
0.5931961302064422,
0.6296590178186058,
0.6730814940717995,
0.6612739636538885,
0.6153260882402587,
0.6108247286552547,
0.6650643841896811,
0.6594523118219824,
0.692894653058969,
0.6240045539397969,
0.6230511483218935,
0.6191545371125396,
0.6068207596102332,
0.6020652823723279,
0.5519442816830089,
0.5611419341184645,
0.5830549876181743,
0.5071517185140879,
0.5194456323217123,
0.5115664906672432,
0.48839289508759975,
0.4839783160764183,
0.4901474171405674,
0.5221659861759752,
0.5068330382530251,
0.44212537894073206,
0.470389934686514,
0.4456856010051874,
0.45567764032982355,
0.44238500613878423,
0.43721815988294077,
0.4668977649516275,
0.45268766465795857,
0.4418918028091773,
0.4076286483969953,
0.39355801848264843,
0.4926971450734597,
0.4080122074382937,
0.4487014988707936,
0.4042701556896552,
0.448456126703029,
0.3569501892177977,
0.4521532880826893,
0.34237389490963555,
0.39582831205593216,
0.42116756142618567,
0.33966814705895054,
0.39056262192435753,
0.3713014638926993,
0.3311523148455681,
0.36592818096948737,
0.2983080987046417,
0.3656730147269674,
0.22664682417471185,
0.3577022536092589,
0.189400159021537,
0.3302424059321101,
0.204359516612867,
0.3394780140608931,
0.29610600392533165,
0.1543855135742989,
0.269477267188426,
0.20703156345770654,
0.21472340802319795,
0.16616276228147694,
0.2493721347095238,
0.15762861906829426,
0.2595617603630019,
0.13425463953843483,
0.1232698626147631,
0.18156382189187995,
0.0946047023917811,
0.16258669323805305,
0.1060654252417322,
0.127834809717173,
0.20300457819611725,
0.1090698882810071,
0.06911229994148016,
0.15254949069677445,
0.0659111817407175,
0.058929545315316856,
0.14385590309468219,
0.054237651362075895,
0.07918651910244018,
0.08342758199184114,
0.05113096329837273,
0.04645771044903459,
0.0467070922251536,
0.04176504790193887,
0.037935673348748915,
0.03838690544247755,
0.03521515246337423,
0.0320754697602083,
0.03043429300181058,
0.02863019954862917,
0.026749396341470763,
0.02585176777882645
],
"d_real": [
3.658832452236078,
3.176636394272503,
2.598063460782043,
2.2103742371257553,
2.1640163323818107,
1.992221514383952,
1.9621960892636552,
2.052906949295957,
2.0434194303985334,
1.9905332744630992,
1.9506153204502203,
1.8907977862235827,
1.9284131465814052,
1.9599478224403837,
2.0102433995303945,
2.0531151926415596,
2.132095173892812,
2.2131900624332266,
2.229110815586188,
2.259841894492125,
2.372028383434328,
2.4118558443509617,
2.515893740531726,
2.5041080173264203,
2.556276370317508,
2.563848430274898,
2.5470131442078157,
2.5671800955747948,
2.6582601824377337,
2.6428770407652245,
2.7092806172167134,
2.7209871080186634,
2.7450771291031795,
2.7984285273103633,
2.750893878121661,
2.832424139365172,
2.759920103937133,
2.840025967002934,
2.926792780558268,
2.7202135395799947,
2.876352734035916,
2.9162532773792234,
2.87948491023137,
2.8777014577490654,
3.0024586375961957,
2.918400560688769,
3.065101362701155,
3.0529297396668,
3.0704315707214875,
3.1418455727079992,
3.1084029368865185,
3.192955082298344,
3.3125416030231705,
3.2552428938384748,
3.322135990501469,
3.312608604757195,
3.4969547630375266,
3.4321348565256495,
3.6918916620759883,
3.5279505476992354,
3.691531971988515,
3.5071850149040547,
3.628778832590478,
3.853314782819177,
3.7594457120976896,
3.8772777329143295,
3.9486267872345753,
3.982913547092014,
3.9435440454727564,
4.054704193376068,
4.0116107647235575,
4.10447040786091,
4.298646062867254,
4.136851432995918,
4.423442090678419,
4.316601092998798,
4.472628079927885,
4.624034392528045,
4.213566702655238,
4.5559306348490916,
4.7495096320779915,
4.5268635546040334,
4.7973695412660255,
4.906427367120727,
4.634974031366854,
4.939499031784188,
4.901055230034722,
4.92137941539797,
5.023763020833333,
5.1759544437767095,
5.172672108707265,
5.280916132478633,
5.339221921741453,
5.387169471153846,
5.436748798076923,
5.471562833867521,
5.534818209134615,
5.585833166399572,
5.660250150240385,
5.671019464476496
],
"d_fake": [
-4.154234829111996,
-2.9603866022876186,
-2.551819760575254,
-2.2164930848993807,
-2.12470946352706,
-1.9940854504577115,
-1.9423872874333308,
-2.0396510393191605,
-2.061372740655883,
-1.9626699023776584,
-1.9269880963186932,
-1.872014518476959,
-1.9422331457464104,
-1.9553625441005087,
-2.000932057698568,
-2.0531809228098292,
-2.123779036040999,
-2.1929496210864468,
-2.195885487091847,
-2.2498462709606204,
-2.3586626949473324,
-2.4113944290030718,
-2.4512689052483974,
-2.4802977244059243,
-2.523220331240923,
-2.5466522477630877,
-2.537100376226963,
-2.5150995743580356,
-2.638813149215829,
-2.643664107363448,
-2.661396320049579,
-2.706248030703292,
-2.737782698411208,
-2.7654103010128708,
-2.7200393921289687,
-2.798819762009841,
-2.741312532343416,
-2.841126140366253,
-2.88130975380922,
-2.7181793930184126,
-2.88231195955195,
-2.86112297905816,
-2.9025352673652844,
-2.879175235063602,
-2.994874220628005,
-2.9259895911583533,
-3.039472400632679,
-3.0502931317712507,
-3.0668472203179302,
-3.107552552834535,
-3.124729759672768,
-3.12569825262086,
-3.276181359576364,
-3.2325875045906782,
-3.3241285014356303,
-3.2704707740718484,
-3.4538855919471154,
-3.3901885758098373,
-3.663372854901175,
-3.5025347522181325,
-3.6660510984241452,
-3.466804084614811,
-3.5850506643963675,
-3.8314918452857905,
-3.723641159188034,
-3.8884613901122003,
-3.9131842067099023,
-3.968898153712607,
-3.8808045998597755,
-4.007901770436866,
-3.9478665213299613,
-4.078438522469284,
-4.3020291450696115,
-4.115632081643129,
-4.424393613114316,
-4.295942648863181,
-4.456148066072383,
-4.523083809094551,
-4.209404187324719,
-4.4680478348691235,
-4.702165130876068,
-4.4388203417134084,
-4.763563368055555,
-4.876099676148504,
-4.570830516326121,
-4.931941105769231,
-4.842198298527644,
-4.883774064544939,
-4.980497963408119,
-5.094478248530983,
-5.153299445779915,
-5.200420673076923,
-5.284008580395299,
-5.290185129540598,
-5.370613815438034,
-5.492617354433761,
-5.494445279113248,
-5.498526809561966,
-5.549091045673077,
-5.5799988314636755
],
"fid": {
"25": 444.3497619628906,
"50": 438.8713073730469,
"75": 431.2607116699219,
"100": 429.2948913574219
},
"train_time_s": 1065.6358892917633
},
"n_params": 3576704
}
@@ -0,0 +1,549 @@
{
"run_name": "p2_2_wgan",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": true,
"image_size": 64,
"run_name": "p2_2_wgan",
"model": "wgan_basic",
"latent_dim": 128,
"ngf": 64,
"ndf": 64,
"lr_g": 0.0001,
"lr_d": 0.0001,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 2,
"gp_lambda": 10
},
"history": {
"g_loss": [
0.5048796824919872,
4.788411389049302,
10.422025240384615,
11.89546607905983,
12.005675747863247,
12.189469818376068,
11.867855235042734,
11.708433493589743,
11.512186164529915,
11.477230235042734,
11.701355502136753,
11.495726495726496,
11.45609642094017,
11.325053418803419,
11.153145032051283,
11.0914797008547,
11.451188568376068,
11.491018963675213,
11.676849626068377,
11.739549946581196,
11.51201923076923,
11.747662927350428,
11.898871527777779,
11.882578792735043,
11.966646634615385,
12.212540064102564,
12.372295673076923,
12.339977297008547,
12.592915331196581,
12.767027243589743,
12.784655448717949,
12.878639155982906,
12.992421207264957,
13.21237313034188,
13.379073183760683,
13.546607905982906,
13.527143429487179,
13.537960737179487,
13.651342147435898,
13.871127136752136,
14.053018162393162,
14.238080929487179,
14.230335202991453,
14.371728098290598,
14.582565438034187,
14.72235576923077,
14.965578258547009,
15.016259348290598,
15.358373397435898,
15.248898237179487,
15.371627938034187,
15.705128205128204,
15.854166666666666,
15.775874732905983,
15.66159188034188,
15.824986645299145,
15.880074786324787,
16.153311965811966,
16.099626068376068,
16.233306623931625,
16.385516826923077,
16.366519764957264,
16.80972889957265,
16.851796207264957,
16.916800213675213,
16.86732104700855,
16.896033653846153,
17.187433226495727,
17.26158520299145,
17.410189636752136,
17.187099358974358,
17.392294337606838,
17.518963675213676,
17.669604700854702,
17.717147435897434,
17.7265625,
17.860844017094017,
17.903245192307693,
17.803485576923077,
17.940638354700855,
18.144898504273506,
17.99405715811966,
18.144698183760685,
18.16332799145299,
18.177350427350426,
18.298143696581196,
18.326188568376068,
18.243856837606838,
18.45045405982906,
18.536658653846153,
18.681156517094017,
18.56877670940171,
18.623998397435898,
18.551682692307693,
18.55548878205128,
18.631610576923077,
18.767027243589745,
18.642828525641026,
18.718482905982906,
18.709268162393162
],
"w_dist": [
5.563896361897644,
8.274849746981237,
8.361894411918444,
8.866044742429358,
8.258596298022148,
7.825238296109387,
7.1536570563275585,
6.594527984276796,
6.183579914590233,
5.90569620560377,
5.708952957748348,
5.507912061153314,
5.339095732085725,
5.202996864278092,
5.074277450895717,
4.883117742008633,
4.764874193403456,
4.629431768360301,
4.529606722358965,
4.398766474846082,
4.307029920765477,
4.225950378638047,
4.135714734721388,
4.036632687617571,
3.9649306281000123,
3.8985884556403527,
3.829692076414059,
3.7675907031083717,
3.723304510116577,
3.631914529026064,
3.583066126220247,
3.5204685264163547,
3.4895818141790538,
3.4339134081816063,
3.362894055170891,
3.322120195780045,
3.2863236105340157,
3.2280254842888594,
3.187457729608585,
3.1599054132771287,
3.113996530190492,
3.0732486227638702,
3.067290065634964,
3.0048975557343574,
2.9896886674766865,
2.9657618347396197,
2.933791900292421,
2.9192120050772643,
2.8672267453283324,
2.8707475499210195,
2.8237135797484307,
2.849402360427074,
2.813478720493806,
2.8155013781327467,
2.7994372457520575,
2.7725105978484845,
2.769606692159278,
2.7725830607944064,
2.7543913808643308,
2.7552421052231746,
2.7606820774893475,
2.724393245501396,
2.7495633047870083,
2.7470773305648413,
2.7286214461693397,
2.723254030586308,
2.7216238934769588,
2.7152540479969773,
2.7073581239097138,
2.701463016689333,
2.7314126919477415,
2.7123166027232113,
2.7143735742976522,
2.72292909051618,
2.725481389934181,
2.7300785810519486,
2.7224001802949824,
2.7255468592684493,
2.7314593160254326,
2.746192705936921,
2.736082879906027,
2.730261780257918,
2.7552771812830215,
2.7513421926742945,
2.7549472242339044,
2.7607144759251523,
2.760169438826732,
2.7528287671570086,
2.7603067740415916,
2.775939419738248,
2.7858217312739444,
2.7918675964714117,
2.7838860576988287,
2.8169951907589903,
2.808512174166166,
2.821414022364168,
2.8326073732131567,
2.830397883032122,
2.8616712399018116,
2.849024660566933
],
"gp": [
1.3525601459794447,
0.1355859676742146,
0.13145664885926706,
0.14614479574096254,
0.13894047141552734,
0.12946645436314946,
0.11459243896966562,
0.10291724713344096,
0.09402290237351106,
0.08837770639608304,
0.08493044352334024,
0.08126684573566557,
0.0780457583271986,
0.07618618206495148,
0.07474887024006273,
0.07141462847606367,
0.0696512999283707,
0.06742624325168312,
0.06522547548366153,
0.06341529794387583,
0.0618975627530589,
0.06039712367515661,
0.058845197984900996,
0.057611002324101254,
0.055964621014765695,
0.05479672006291584,
0.054010151992910184,
0.0526694006835803,
0.051751364941875905,
0.05041016415398345,
0.04957535087616525,
0.048643693984605565,
0.04820462329408679,
0.047206774385821104,
0.04578257667728596,
0.045189644263770715,
0.04415863213869624,
0.043698305518836036,
0.04332385713266384,
0.04271839773003808,
0.04211271633035862,
0.041141939910654075,
0.04133779907790132,
0.04053297145172763,
0.03991818302669204,
0.03988865568127451,
0.03928494245673601,
0.03932269060442972,
0.038698296924320676,
0.03811738578976793,
0.03778478291490649,
0.03835955766451537,
0.03748297582491914,
0.03727105419095765,
0.03727148446795714,
0.03686157890006454,
0.036570174635475516,
0.036601324464218356,
0.03577777401854595,
0.03607283026959079,
0.03603899753135112,
0.03531867777132708,
0.035789801402845316,
0.035360395076533414,
0.03554848770603028,
0.03529106114561168,
0.034699008421988316,
0.03560688164936872,
0.035032848443469815,
0.03472618756091429,
0.03472620001436872,
0.03516313719013945,
0.0346550477656703,
0.03457799825307905,
0.03490059519122936,
0.034849149483439125,
0.03452173670212555,
0.03507260571464769,
0.03451430860063077,
0.034871834073550045,
0.03476859704376413,
0.03453417090125955,
0.03462102539184639,
0.034587705267083824,
0.035004345825515114,
0.03433268325419253,
0.03471479453663859,
0.03448611420069813,
0.03505588167259454,
0.035029376355501324,
0.034851501892822295,
0.03419299024897508,
0.03457759762318152,
0.03500594457404481,
0.034473868041163966,
0.03417007158446707,
0.03482374974375225,
0.03476867296645402,
0.03532255029019255,
0.03485553587874413
],
"d_real": [
6.120926973784072,
4.638850770253911,
-1.2725817391521528,
-2.3626233643700933,
-3.2239076632719774,
-3.867160926771979,
-4.246603545724836,
-4.64612846955275,
-4.902720368825472,
-5.137220209989792,
-5.635785581209721,
-5.654276996086805,
-5.710405720604791,
-5.761716858444051,
-5.7387197613716125,
-5.851175843650459,
-6.292291278513069,
-6.519167848122426,
-6.755156328535487,
-7.018599663025293,
-6.890190455648634,
-7.202989962365892,
-7.448426297587207,
-7.571580296907669,
-7.6957776933653745,
-8.03230059860099,
-8.267680137585371,
-8.307361516178164,
-8.577077749447945,
-8.853703163627886,
-8.939347958972311,
-9.085698904135288,
-9.235857993109613,
-9.527283364890987,
-9.747923772559206,
-9.962894396904188,
-9.962564631405039,
-10.039581026786413,
-10.209603271932684,
-10.447008187954243,
-10.699985082332905,
-10.897042455836239,
-10.907622376058855,
-11.13432674530225,
-11.344598558213976,
-11.536250226518028,
-11.791762127835526,
-11.827963511149088,
-12.187930425008139,
-12.144138560335861,
-12.333346464695074,
-12.628077814721653,
-12.821740955369085,
-12.724972046338594,
-12.623707335219423,
-12.8577345782875,
-12.88096078644451,
-13.187395717343714,
-13.185164622771435,
-13.31601500714946,
-13.45507384569217,
-13.483069768318764,
-13.944781517371153,
-13.976463619460407,
-14.034765602177025,
-13.998740895181639,
-14.041964068372025,
-14.335321868586744,
-14.435263309723291,
-14.587245429682936,
-14.347747745676937,
-14.573724206696209,
-14.72084768409403,
-14.849558695768698,
-14.931516653452164,
-14.927019210962149,
-15.069775972610865,
-15.109935106375278,
-15.002157810406807,
-15.150896339334993,
-15.363249758369902,
-15.203894258564354,
-15.356125619676378,
-15.379689854434412,
-15.4038078051347,
-15.505011792875763,
-15.536940584834824,
-15.464425537321302,
-15.673127247737003,
-15.740207468342577,
-15.877484769902678,
-15.766821630999573,
-15.815224525256035,
-15.743409876130585,
-15.757238767085932,
-15.807624519380749,
-15.933451124745556,
-15.810618107135479,
-15.855070643954807,
-15.851765141527878
],
"d_fake": [
0.5570306193250685,
-3.635998971489632,
-9.63447614816519,
-11.228668101832397,
-11.48250396638854,
-11.692399218551113,
-11.400260601288233,
-11.24065645535787,
-11.086300287491236,
-11.042916416103004,
-11.344738540486393,
-11.162189057749561,
-11.049501451671633,
-10.964713722212702,
-10.812997212776772,
-10.73429358514965,
-11.057165471916525,
-11.148599616482727,
-11.284763050894451,
-11.417366137871376,
-11.197220376414112,
-11.42894034100394,
-11.584141032308596,
-11.60821298452524,
-11.660708321465385,
-11.930889054241343,
-12.09737221399943,
-12.074952219286535,
-12.300382259564522,
-12.48561769265395,
-12.522414085192558,
-12.606167430551643,
-12.725439807288668,
-12.961196773072594,
-13.110817827730097,
-13.285014592684233,
-13.248888241939056,
-13.267606511075272,
-13.397061001541267,
-13.606913601231371,
-13.813981612523397,
-13.970291078600109,
-13.974912441693819,
-14.139224301036606,
-14.334287225690662,
-14.502012061257648,
-14.725554028127947,
-14.747175516226353,
-15.055157170336471,
-15.01488611025688,
-15.157060044443506,
-15.477480175148727,
-15.63521967586289,
-15.540473424471342,
-15.423144580971481,
-15.630245176135984,
-15.650567478603786,
-15.95997877813812,
-15.939556003635765,
-16.071257112372635,
-16.21575592318152,
-16.20746301382016,
-16.69434482215816,
-16.72354095002525,
-16.763387048346363,
-16.721994925767948,
-16.763587961848984,
-17.05057591658372,
-17.142621433633007,
-17.28870844637227,
-17.07916043762468,
-17.28604080941942,
-17.43522125839168,
-17.572487786284878,
-17.656998043386345,
-17.6570977920141,
-17.792176152905846,
-17.835481965643726,
-17.73361712643224,
-17.897089045271915,
-18.09933263827593,
-17.934156038822273,
-18.1114028009594,
-18.131032047108707,
-18.158755029368603,
-18.265726268800915,
-18.297110023661556,
-18.21725430447831,
-18.433434021778595,
-18.516146888080826,
-18.66330650117662,
-18.558689227470985,
-18.599110582954864,
-18.560405066889576,
-18.565750941252098,
-18.629038541744915,
-18.766058497958714,
-18.641015990167602,
-18.716741883856617,
-18.70078980209481
],
"fid": {
"25": 489.6378479003906,
"50": 474.572021484375,
"75": 440.8614807128906,
"100": 421.2930908203125
},
"train_time_s": 1626.9446153640747
},
"n_params": 3806080
}
@@ -0,0 +1,549 @@
{
"run_name": "p2_3_wgan_sn_attn",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": true,
"image_size": 64,
"run_name": "p2_3_wgan_sn_attn",
"model": "wgan",
"latent_dim": 128,
"ngf": 128,
"ndf": 128,
"lr_g": 0.0001,
"lr_d": 0.0001,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 2,
"gp_lambda": 10
},
"history": {
"g_loss": [
-1.545559777153863,
0.0755724132570446,
-8.874330227191631,
-11.715034680488783,
2.4379899114625068,
4.072929838783721,
2.736847575913128,
3.3058411687867255,
5.704305404271835,
6.561340853699252,
4.9266420022035255,
5.437263684395032,
5.172169351170206,
4.624421209351629,
3.4244547786875668,
2.1461554633246527,
2.527814685788929,
2.380245632595486,
1.636890900440705,
1.4527815468290932,
1.459620809962607,
1.4220321524856436,
1.4883302867922008,
1.1082498273278913,
1.2326954898671207,
1.437114748180422,
1.3382899618556356,
1.5301717122395833,
2.13123784513555,
3.5494015685513487,
3.959634764581664,
4.522829691569011,
4.259684375208667,
3.3166839730026374,
2.5889115292801814,
2.795733459994324,
2.24729482536642,
2.045775389059996,
2.0902342184995995,
1.5259657639723558,
1.3366845285790598,
2.2365846470889883,
1.7123139862321382,
1.9214727939703526,
1.9419093753537562,
2.0932810204660792,
2.1471088115985575,
2.0246949807191505,
2.890868358122997,
2.8760158832256613,
2.801048914591471,
2.595652800339919,
2.9025210193079762,
2.736702160957532,
2.9235945481520433,
2.7148065322484727,
3.0076973743927784,
3.0523401896158853,
3.062586988139356,
2.9605489062447834,
2.972503140441373,
2.9379458386673885,
2.8699442545572915,
2.552788791493473,
2.5628458658854165,
2.471428015293219,
2.4624988523303952,
2.490811013767862,
2.714698021228497,
2.588561098799746,
2.629330822545239,
2.4387167254064837,
2.377825484316573,
2.3360224014673476,
2.440532553909171,
2.3656710111177883,
2.6756658513321834,
2.449945824777978,
2.4705992641611996,
2.6156334510216346,
2.4112229958558693,
2.4926436660636186,
2.409300812289246,
2.1111345861712074,
2.0974674224853516,
2.1321732610718818,
2.3314761952457266,
2.209630752221132,
2.408911593958863,
2.3409750196668835,
1.9616081205188718,
1.996194301507412,
2.062886686406584,
1.9881043882451506,
1.9513955809112289,
1.927717975062183,
1.9761373731825087,
2.06906988681891,
1.8620162050948184,
1.9165940896058693
],
"w_dist": [
26.799352740263963,
17.23909444011684,
7.876736454984062,
10.908895452817282,
4.431521436724907,
3.3184485766622753,
4.1430634127722845,
3.8942658418518867,
3.3938401608258233,
2.564194661429805,
1.0503678155951521,
1.255510728328656,
1.7760651149174087,
2.0432223123617663,
1.8368172876727886,
1.8733807408656828,
2.0761900880397897,
2.1461318237149816,
2.1866223758611922,
2.207482443501552,
2.4432426287322984,
2.411956970444602,
2.537660360845745,
2.4737911866898212,
2.5426074632913127,
2.49895476619912,
2.3298818037932754,
2.3782744233170128,
2.4387922435998917,
2.351890524992576,
2.2553609835031705,
2.3476804117871146,
2.3797782791985407,
2.3794377299073415,
2.4034052846523433,
2.468223287604558,
2.448674318054293,
2.433915341639111,
2.4088203638282595,
2.3976021520475035,
2.354142763803148,
2.289462028978727,
2.3062966470407624,
2.2750693681912546,
2.2371280739704766,
2.1824387080139585,
2.140123632282783,
2.1136806258279033,
2.0411361606839376,
2.008751418728095,
2.0028149367779746,
1.9745797497085018,
1.9473533709652913,
2.000265118466993,
1.95494957605743,
1.9364246055483818,
1.9865098941084156,
1.926665756246473,
1.8813086173727982,
1.8560161078587556,
1.8506678322441557,
1.8251058545250158,
1.8310005416472752,
1.8293478216848567,
1.788412302095666,
1.7494194311463935,
1.7291288698712985,
1.700718988624648,
1.705499001738862,
1.684702765292082,
1.6755266731175094,
1.6223076382636006,
1.6314988495447698,
1.6085462662526684,
1.6034546935787568,
1.5860291310609915,
1.5433754375857165,
1.551515841203877,
1.54019059591059,
1.533384639228511,
1.5258633631926317,
1.5060702033786693,
1.4891142785931244,
1.4917844163301663,
1.4489038570059671,
1.4461171224585965,
1.452056616735764,
1.4215956193386998,
1.4293564843316364,
1.4337256730366976,
1.4075578824322448,
1.4048312647093055,
1.3927023314640052,
1.3878573686139197,
1.3921543130507836,
1.375743528843945,
1.367438832918803,
1.3677212621411707,
1.364246655987878,
1.3629877153370116
],
"gp": [
0.5044831642856161,
0.30776134110055864,
0.09919336452208555,
0.17890362131297907,
0.08271053697392504,
0.0472571780371806,
0.0535612549378067,
0.0466817675345442,
0.036443066300673045,
0.030898120682129365,
0.019149529199418414,
0.014635179256005451,
0.013106485717316978,
0.01607590661240885,
0.013796526831216537,
0.012251377954947738,
0.010890649148545617,
0.011597659951772414,
0.011404767856857557,
0.012483209485992089,
0.012702336572170353,
0.012275054635436267,
0.013547105858954163,
0.0124830390057033,
0.014702993039634779,
0.013480533359663831,
0.012382079685966555,
0.01300210588781808,
0.013092330338047324,
0.012419809433074398,
0.011373953035590837,
0.011938189549877062,
0.012318184346052157,
0.01110875776135084,
0.012427182091523407,
0.011629103070013544,
0.011636954955119863,
0.01201840951386043,
0.01260222360276832,
0.012408933384865364,
0.013147813926200168,
0.013507224977092069,
0.012801887256562965,
0.012592998437253106,
0.012864356416249728,
0.012779556051131465,
0.012280892935466085,
0.012731425845736844,
0.012397714690046592,
0.012565050972625613,
0.012515919415865285,
0.011752962493974492,
0.011411563958972692,
0.011380517110029537,
0.011647925444014976,
0.011869011780657033,
0.011112853749625336,
0.011293570965261828,
0.010501689934788639,
0.01073564074258917,
0.010531398359761756,
0.010241194349080801,
0.010412169526118197,
0.010499251803430991,
0.010395822177430153,
0.00977162378302847,
0.01007053845300355,
0.00991776789803233,
0.009735150546786718,
0.009597493858478613,
0.009804699786353665,
0.0089539126945763,
0.008997089709364211,
0.00911261141872328,
0.009042002371627774,
0.009101648856268829,
0.008399029412360575,
0.008703718210658075,
0.008447557073842702,
0.008670931914323766,
0.008367325725784112,
0.008036333955147773,
0.008311094171676036,
0.008364735545071129,
0.007694022628005085,
0.007958213433038252,
0.008284040220762389,
0.007724701700797782,
0.0079897273123925,
0.008109053978437765,
0.0075728336006351225,
0.007559322848076272,
0.007394472670415019,
0.007590064442613059,
0.007347002560292713,
0.007048846675684023,
0.007267123010132908,
0.0073256156264016265,
0.007149310172615079,
0.006894596836690863
],
"d_real": [
36.25523343776217,
24.760787876338785,
22.017947702262646,
27.612354596710613,
7.356850282281128,
3.747226473548983,
5.832391393936088,
4.768380877458387,
1.0861509179171078,
-0.5619672957457539,
-1.1086835748810544,
-1.4709960795206647,
-1.0234767884398117,
0.027786950206654705,
0.7830751437980396,
1.8220531156716437,
1.6234126322321658,
1.941378932700962,
2.712485917008076,
2.8391098618571067,
2.9930312275631814,
2.77625157037734,
2.7263334021609054,
2.9709846741304946,
2.95030786205306,
2.601896508334157,
2.655748173053193,
2.3083787244290876,
1.716103265969417,
0.2192995498736954,
-0.03707685756186644,
-0.6917098079704576,
-0.6620554489394029,
0.23974136712077337,
1.1777308945599785,
0.9712683434765308,
1.3603088603888311,
1.6119256921860778,
1.6598279705732806,
1.8315825807010262,
2.2094133307233963,
1.222636884707225,
1.6429849891549246,
1.5163829169498804,
1.3784152558710203,
1.3062069595146637,
1.0220202546343844,
1.174666422793371,
0.23231566125033504,
0.20630318412764204,
0.20939737360956323,
0.41546090353184784,
0.05538882292870782,
0.2397566135558817,
0.009711862287014468,
0.26926597102712363,
-0.2320584105566526,
-0.3166105183056341,
-0.36672052692494583,
-0.48110578448758423,
-0.4340730239278995,
-0.4501450105976218,
-0.38969515166922003,
-0.08418369141972473,
-0.1483121139721738,
-0.1796659101636555,
-0.1481955498456955,
-0.17109096459407583,
-0.5072800232033826,
-0.42170111793610787,
-0.4238343832887009,
-0.3186386530088563,
-0.36230170883190554,
-0.3402242486914381,
-0.4149485856740393,
-0.36789291220693254,
-0.7855577391182256,
-0.528156803889025,
-0.5977442652846758,
-0.7629952643138285,
-0.5791166892959776,
-0.8071273118496324,
-0.6594299010407084,
-0.39403122587877715,
-0.43794685459703714,
-0.5062324419522133,
-0.7586349833310924,
-0.5724228475676675,
-0.8275346452306606,
-0.7992830874605311,
-0.42668926684806746,
-0.5155239798462926,
-0.6009357936489277,
-0.5356776900907867,
-0.5026411891668143,
-0.5151384154525704,
-0.5899979643499813,
-0.6751014452395786,
-0.5035388560798497,
-0.5568832585818938
],
"d_fake": [
9.45588080993352,
7.521693424504791,
14.141211249698431,
16.703459139308357,
2.9253288355265927,
0.42877788475563383,
1.689327974111224,
0.8741150340463362,
-2.307689250056815,
-3.1261619625087733,
-2.159051386989717,
-2.7265068070055585,
-2.799541907798913,
-2.015435363110314,
-1.0537421434130678,
-0.05132762430251664,
-0.45277745357881755,
-0.2047528920169824,
0.5258635404464017,
0.6316274176550727,
0.549788596164276,
0.3642945998053775,
0.1886730437986871,
0.497193485737229,
0.40770039492501664,
0.10294174359968075,
0.3258663731603286,
-0.06989569947696649,
-0.7226889801140015,
-2.1325909761696034,
-2.2924378437396045,
-3.039390221986378,
-3.0418337310035515,
-2.139696363709931,
-1.2256743885958805,
-1.4969549441996675,
-1.0883654579759026,
-0.8219896491425924,
-0.7489923937644205,
-0.5660195714658779,
-0.1447294371154828,
-1.0668251468585088,
-0.6633116550202298,
-0.7586864525308976,
-0.8587128162129313,
-0.8762317490405761,
-1.1181033758175933,
-0.9390142050484179,
-1.8088204962575538,
-1.8024482380312223,
-1.7934175623564894,
-1.5591188471079764,
-1.8919645453301759,
-1.7605085044573896,
-1.9452377156251006,
-1.6671586347520988,
-2.2185683062331925,
-2.2432762773978148,
-2.248029145658908,
-2.3371218923145,
-2.284740854580051,
-2.275250861262027,
-2.220695690180247,
-1.9135315145533054,
-1.9367244156698387,
-1.9290853426672327,
-1.8773244172812273,
-1.8718099504645564,
-2.2127790226895585,
-2.1064038816202655,
-2.0993610557853284,
-1.940946290564015,
-1.993800554352884,
-1.9487705131371815,
-2.018403278838875,
-1.9539220442111866,
-2.328933175302978,
-2.0796726440740194,
-2.1379348597385817,
-2.296379904776143,
-2.104980050984165,
-2.313197515737743,
-2.1485441769035454,
-1.8858156403542583,
-1.8868507097960792,
-1.952349566257535,
-2.2106915982400315,
-1.9940184651372523,
-2.2568911297294574,
-2.233008761428551,
-1.8342471486673906,
-1.9203552460083022,
-1.9936381264024565,
-1.9235350602569106,
-1.8947955016365163,
-1.890881944105475,
-1.9574367973006244,
-2.042822706911108,
-1.8677855122786684,
-1.9198709750293284
],
"fid": {
"25": 274.4306945800781,
"50": 223.15243530273438,
"75": 159.37228393554688,
"100": 110.12692260742188
},
"train_time_s": 2341.2221508026123
},
"n_params": 13199105
}
@@ -0,0 +1,549 @@
{
"run_name": "p2_4_wgan_sn_attn_128",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": true,
"image_size": 128,
"run_name": "p2_4_wgan_sn_attn_128",
"model": "wgan",
"latent_dim": 128,
"ngf": 128,
"ndf": 128,
"lr_g": 0.0001,
"lr_d": 0.0001,
"beta1": 0.0,
"beta2": 0.9,
"n_critic": 2,
"gp_lambda": 10
},
"history": {
"g_loss": [
-28.481870618640865,
-6.278949444110577,
-19.098353198450855,
-30.791177342080662,
-31.446803166316105,
-2.699485844017094,
-3.7995698716905384,
-0.4626839140541533,
1.9271474984975963,
14.703126499795506,
14.977054824177017,
16.87198528061565,
14.100309453458868,
10.18031480577257,
7.486836490468082,
6.91698253664196,
2.3932962010049414,
0.7162616436298077,
2.8324767952291374,
0.9092115092481303,
0.0769595936832265,
-0.8632275181957799,
-0.07997535640357906,
0.7631713345519497,
4.623353094117254,
5.510669153979701,
6.002468532986111,
4.7007090250651045,
3.8342256464509883,
0.43619856875166935,
4.6761495476095085,
4.095392732538729,
5.659887069310898,
5.8885782029893665,
5.626396244407719,
3.066688994057158,
1.1110318175747864,
0.6948109162159455,
1.3979173970018697,
1.4975296411758814,
2.4065511328542333,
1.1337133228269398,
-0.05740643362713675,
0.05382518279246795,
1.2910659659622061,
2.8940638354700856,
2.1154459113748665,
1.7901744353465545,
-0.4126125237880609,
-0.45884411151592547,
0.6277627537393162,
-1.9255517160790598,
-2.0540960589025774,
-1.1064354008079593,
-1.4354932165553427,
-0.9069685324644431,
-1.4017047066973825,
-1.795200445713141,
-1.7628280117980435,
-1.2515780457064636,
-1.7447115906283386,
-1.411563710269765,
-1.8572773729634082,
-2.690372825687767,
-1.0843876243656516,
-2.092415051582532,
-3.290748270148905,
-2.4294820280156584,
-2.721961282257341,
-3.3527525551298742,
-3.0356428847353683,
-2.9903199285523505,
-3.340899084368323,
-2.545010036892361,
-3.8142573038736978,
-2.6980794270833335,
-3.7333525307158117,
-2.946534116044004,
-3.3424820859208064,
-3.509617601704394,
-3.7825879846882615,
-4.5981262728699255,
-4.207479028620272,
-3.9389596270699787,
-4.7202713795197315,
-4.484940488114316,
-5.216243646083734,
-5.2711256956442805,
-4.643734597752237,
-5.231214425502679,
-5.370926620613815,
-4.98108144906851,
-5.142175658136352,
-5.144700009598691,
-4.855223826872996,
-5.457235385210086,
-5.370382977347089,
-4.972062591813568,
-6.3612446581196584,
-5.905079377003205
],
"w_dist": [
256.26637036864383,
196.55620359966898,
34.76623114459535,
27.701567988110405,
26.784395469559563,
8.811796618832481,
9.814083612627453,
10.501499433802744,
6.007042083984766,
4.014069894185433,
4.475512960909779,
4.8591298137465095,
4.060480517327276,
4.6325055987407,
3.451822386465521,
3.805243837273019,
3.497764135018373,
2.55632721995696,
2.8513485627551365,
3.8181735675813804,
4.195524400498113,
4.582981640711809,
4.635544811303799,
4.327993528965192,
3.8200045727257037,
3.988161932199429,
3.9413715097894015,
4.264028133108066,
4.645780353719353,
4.865333342654074,
5.250336485540765,
4.809147485301026,
4.370857673068332,
4.18350375806674,
3.879783983923431,
3.629613314683621,
3.588858602393387,
3.5410543486603303,
3.748316321108076,
3.7674195672202315,
3.6464764785308104,
3.5115217468422704,
3.6775054266819587,
3.9032972157001495,
3.780820354182496,
3.698670619764389,
3.561846683741125,
3.4601320765721493,
3.4560582249337792,
3.439330591350539,
3.2829728081949754,
3.332420339314347,
3.3267548194425736,
3.3264750940168004,
3.306389464590794,
3.329769903141209,
3.3881563976661773,
3.2956221671695385,
3.223242159996532,
3.198481967051824,
3.176800858261239,
3.1756216659505143,
3.2349649924370976,
3.208514943973631,
3.106992126084291,
3.243300145635238,
3.188477354331149,
3.2213519032184896,
3.2725365332558622,
3.203567038489203,
3.210699688611377,
3.260398191646633,
3.309373783504861,
3.2569794801310596,
3.242186952987288,
3.296804600642023,
3.2795591093281393,
3.2537479845122395,
3.1721868194066563,
3.202598747279909,
3.1283717850844064,
3.121030332823085,
3.171216596522902,
3.1576408492958445,
3.2327608960306544,
3.1276810276202665,
3.244266853500635,
3.224511683241934,
3.180550272011349,
3.189294463294184,
3.158132470571078,
3.182097786002689,
3.1594361168706517,
3.184060424566269,
3.245565838793404,
3.217138765459387,
3.1395480021452293,
3.197584114777736,
3.190632956659692,
3.194623186547532
],
"gp": [
9.268622957751589,
7.6499263884451905,
0.8563230545061011,
0.6261323273856527,
0.6231505815098938,
0.22522208539562094,
0.2530128412052161,
0.2634584297521565,
0.13986281962253344,
0.06519026227263558,
0.062346658780852444,
0.05957016142276235,
0.061736356375468336,
0.05310697399644961,
0.04702045292291058,
0.051812074484470755,
0.05418990980376068,
0.043842221276922166,
0.03804254838122198,
0.040096273009951874,
0.04769119965589136,
0.04310873871207492,
0.04649622783633984,
0.041013861443194695,
0.03527041273211471,
0.03573083950795679,
0.03636535251927045,
0.043587025682816014,
0.056094018262850806,
0.059469716328904666,
0.06451645172718498,
0.054715767078913555,
0.05242989595649111,
0.04717880890915632,
0.03730777849077096,
0.03673156838004406,
0.033969710101413295,
0.03287379127334103,
0.03891352693247808,
0.036420692453901164,
0.034268828720833436,
0.03241094505876048,
0.030350039658359546,
0.03427236508199961,
0.0345403193625518,
0.03137544616977246,
0.030241549836917438,
0.02919593273013289,
0.027756508568134636,
0.029709857343258258,
0.02714403618214668,
0.028854293572620895,
0.026628652316892248,
0.028511116941833597,
0.028899157064584777,
0.027318198746269267,
0.031239270750019286,
0.03022845970908514,
0.0293510532599643,
0.02883148175250325,
0.029250893040369146,
0.0279549971396008,
0.03151349062458254,
0.0311271263153141,
0.029454778015223514,
0.031144582371935885,
0.030513672456622887,
0.028810288530225173,
0.03163093781301704,
0.03258804103725741,
0.033387839244917415,
0.0321731419256753,
0.03251527396376985,
0.031857955240660436,
0.03210261887293627,
0.0316076609524938,
0.031002555939997744,
0.030773559528498504,
0.03220514349667276,
0.031734486253788836,
0.03020745211850024,
0.029952844347144104,
0.02986539155145327,
0.031140670300716072,
0.03090409806662868,
0.029073020215464644,
0.03016118880492659,
0.03154020292513295,
0.029461549755193803,
0.029486177436426345,
0.03167089990252613,
0.02905685948028874,
0.029628933762582257,
0.02906288756714322,
0.028868589012955245,
0.03240025364674437,
0.028826858659282837,
0.028081481439523145,
0.030368077407519404,
0.03117659844708844
],
"d_real": [
294.0631466926768,
223.80096493419418,
69.20955578677165,
72.35594316501903,
70.7039132048177,
24.796546222944546,
25.061755548430305,
21.76406273360436,
12.05397861591007,
-2.2908116111006493,
-3.2408462770474262,
-3.9775791813929877,
-2.080649313891036,
2.3230055840606365,
2.295439561064809,
3.2613705519554963,
8.150245448781384,
7.89836514986351,
5.931165528666769,
8.951483103199902,
9.813517244262064,
11.106349258341341,
11.071134364694101,
9.178974351025799,
4.824757603880687,
3.74547088244914,
3.4101524718551555,
4.47363054440317,
5.870058029380619,
9.954107180810892,
5.6416338959183445,
6.167250939031952,
3.7791032614425206,
3.2501065545739274,
2.3192708099372368,
5.230010246364479,
6.905530192849473,
7.303600358466308,
6.369211483396526,
5.9714411272961865,
5.020034141138068,
6.102055102363866,
6.610056125105191,
7.172860459639476,
6.18391361577898,
4.30742421386461,
5.160604528955415,
5.391324723314526,
7.0549444620553245,
7.400837609178235,
6.092669263959695,
7.858691665702141,
8.019564874756794,
7.426715313576353,
7.754826546718295,
6.890766507157912,
7.511093888113386,
7.483419720051635,
7.452344799270997,
6.859966744756342,
6.963304449509606,
6.378041829213372,
7.210815254375976,
7.573977004577461,
6.238879799237873,
7.1984543512201205,
8.37386239804009,
7.042145173359885,
7.524780127514377,
8.006436344522696,
7.706486723298191,
7.633737698866007,
7.855496548848529,
7.157266773856604,
8.451862482481406,
7.1827149885014085,
8.191673793567297,
7.383404967144259,
7.621937138434404,
7.715507889851036,
7.833713281294729,
8.595004485999672,
8.226810751053003,
7.834782666566535,
8.685560697164291,
8.297551264556555,
9.062974569507134,
9.017747469325988,
8.213809716714243,
8.84195155567593,
8.872008674738245,
8.476759099011492,
8.680221335946495,
8.51531114222275,
8.194256554524868,
8.871929256261414,
8.54240646162349,
8.157509832619093,
9.590543688871922,
9.113957726547861
],
"d_fake": [
37.796776547548404,
27.244761196578033,
34.443324730946465,
44.65437519715892,
43.919517725196656,
15.984749589242742,
15.247671952550737,
11.262563286365097,
6.046936529250736,
-6.304881515729631,
-7.716359251966844,
-8.836708993929573,
-6.1411298300083885,
-2.309500007547884,
-1.1563828243022292,
-0.5438732828976761,
4.652481314272452,
5.3420379305751915,
3.0798169664210744,
5.133309537719967,
5.61799284008642,
6.523367620781701,
6.435589549091891,
4.850980811648899,
1.0047530328106677,
-0.24269105169253471,
-0.5312190432197008,
0.20960240613700998,
1.2242776724772575,
5.088773837297136,
0.391297418019201,
1.3581034447520206,
-0.5917544183440697,
-0.9333972113254743,
-1.5605131731583521,
1.600396933973345,
3.3166715858711138,
3.7625460082139726,
2.6208951709489536,
2.204021563833086,
1.3735576527049909,
2.590533351063983,
2.9325507000789175,
3.2695632390041127,
2.4030932623765664,
0.6087535940683805,
1.5987578380502696,
1.9311926472677379,
3.5988862417701983,
3.961507011141278,
2.8096964575318446,
4.526271325942034,
4.6928100562694235,
4.100240220275954,
4.448437086601033,
3.5609966023610187,
4.12293748719952,
4.187797556352666,
4.229102643254476,
3.661484780888527,
3.786503593477174,
3.2024201618300543,
3.9758502585638285,
4.365462063405758,
3.1318876727396607,
3.9551542083549704,
5.18538504286518,
3.8207932683583508,
4.252243589482501,
4.802869302149002,
4.495787035530577,
4.373339508556658,
4.546122765630229,
3.900287294250905,
5.209675531770683,
3.8859103905657926,
4.912114682734713,
4.129656976996324,
4.449750321527195,
4.512909139514479,
4.705341494077037,
5.473974148559774,
5.055594153352018,
4.677141815885647,
5.452799800592355,
5.169870242078463,
5.818707714796576,
5.793235785335812,
5.033259448125704,
5.652657094212551,
5.713876200935397,
5.294661313088404,
5.5207852224986524,
5.3312507222255325,
4.9486907144817405,
5.654790493269634,
5.402858461022505,
4.9599257194652004,
6.399910730683906,
5.91933453707104
],
"fid": {
"25": 428.64849853515625,
"50": 264.2867736816406,
"75": 229.668212890625,
"100": 185.9598388671875
},
"train_time_s": 5861.4565670490265
},
"n_params": 13347714
}
@@ -0,0 +1,548 @@
{
"run_name": "p3_1_vae",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"num_workers": 2,
"epochs": 100,
"augment": "hflip",
"image_size": 64,
"model": "vae",
"latent_dim": 256,
"ngf": 64,
"grad_clip": 1.0,
"run_name": "p3_1_vae",
"lr": 0.0005,
"beta_kl": 0.25,
"lambda_perceptual": 0.0,
"lambda_adversarial": 0.0
},
"history": {
"recon_loss": [
0.07131652818180811,
0.04839004274521373,
0.04452062843956499,
0.04353479713870165,
0.043699693698913626,
0.044162471062288836,
0.044934689377744995,
0.04592526849741355,
0.047077489165095694,
0.04793272184160275,
0.04926021105776995,
0.05025381562260226,
0.05120742289174316,
0.052108900581733286,
0.053131219620505966,
0.05401940069869798,
0.05489145301314246,
0.055811726878214084,
0.05665480460907914,
0.0575029267412093,
0.05754986319404382,
0.057160187035034865,
0.05722308493991438,
0.05713338962891418,
0.05686132515119946,
0.056816555862116,
0.05664816373784063,
0.05655015064164614,
0.056517735943516605,
0.056386624335542194,
0.05631861151156262,
0.056178740154092126,
0.056074508314586095,
0.05601463455738675,
0.05584243320438088,
0.05574028127086468,
0.05563880511137665,
0.055547706926098235,
0.05556490144923202,
0.05538980011692923,
0.05529476007303366,
0.05527778912303794,
0.0552029303378529,
0.05519345425801654,
0.05497326165374018,
0.05496025659366805,
0.0549636375095345,
0.0548208407086567,
0.05475613919015114,
0.05467982544826391,
0.05467521703332408,
0.05451676477160719,
0.054423171549271315,
0.05440536335620106,
0.054226587956341415,
0.05415793756643931,
0.0540492157650809,
0.0539091299725776,
0.05381450568859139,
0.053790501263151824,
0.053688646684217654,
0.05361353090176216,
0.05348594906206569,
0.053407231775613934,
0.05329926665394734,
0.053199282489143886,
0.05318549033413585,
0.053034571994446285,
0.05299898797375524,
0.052894837278713525,
0.05281204023422339,
0.05279633629685029,
0.05266677101071064,
0.0525879480310867,
0.052519615285862714,
0.05243872805761221,
0.05236124007715883,
0.052327762763851725,
0.05222526421117732,
0.05212976400636964,
0.05209252470706263,
0.0520137355177321,
0.051939742568020635,
0.05186714857625656,
0.051828445420942754,
0.051747049658726424,
0.05169421551414789,
0.05160299702109689,
0.05152464638917874,
0.051478635081941754,
0.0514086935764704,
0.05138895747403049,
0.051289146423785605,
0.05126826443637793,
0.05114383632555986,
0.051157466693120636,
0.05104086854550828,
0.05102811497437139,
0.0509683930545918,
0.05096899156068635
],
"kl_loss": [
0.7611013715847944,
0.5151619965321997,
0.39718208143599015,
0.3297253664360087,
0.2878693372138545,
0.257130523904776,
0.23313261619490436,
0.21345858896772066,
0.1973419941197603,
0.18355375779872266,
0.1717705535583007,
0.1612550135797415,
0.15217030946260843,
0.1444861331047156,
0.13738160394132137,
0.1306394640611023,
0.12505544035926333,
0.12011377760169344,
0.11535473169488275,
0.1109595281095841,
0.11022479862420477,
0.10970949868743236,
0.10961869400408533,
0.10945094661771232,
0.10919397698444688,
0.10875842463957448,
0.10874241859548622,
0.10849472851707385,
0.10825413890565053,
0.10820380448658243,
0.10811882353045492,
0.10812433239104402,
0.10808505038293,
0.10790401608006567,
0.10787000140955305,
0.10800883411151221,
0.10767164218247446,
0.10764909312765822,
0.10733446480435693,
0.10740953346348217,
0.10733820650822078,
0.10725643148279598,
0.10736855125834799,
0.10717424525855443,
0.10725876993030055,
0.10694582887694366,
0.10713813684753373,
0.10726828694853008,
0.10701580285134478,
0.10700331553498395,
0.10686330029215568,
0.10687567073947345,
0.10698378102010132,
0.10673714201483461,
0.10696066876188812,
0.10678731051520404,
0.10679936213180041,
0.10696167247290285,
0.1067299399142846,
0.10684242702893212,
0.10679143969701906,
0.10698746744957235,
0.10674736718846183,
0.10685917330730675,
0.1070305180664246,
0.10704450406388849,
0.10696375739370656,
0.10697911899441327,
0.10700849091841115,
0.10684541509383255,
0.10709039088434134,
0.10708275965900503,
0.10700157213096435,
0.10683403667221722,
0.10696323639434627,
0.10717970753709476,
0.10707768420569408,
0.10707720299052377,
0.10703401576377387,
0.10714245904396233,
0.10722182246928032,
0.10714326931052229,
0.10708108509325573,
0.10726493315245861,
0.10718185655199565,
0.10716394220407192,
0.10727782184496903,
0.10729229825938869,
0.10722832862510641,
0.10727461647146787,
0.10739002018593825,
0.10721855878065793,
0.10737398387784632,
0.10721981757853785,
0.10756766480895188,
0.10733713450021723,
0.10742478621884799,
0.10721213524986027,
0.10737172850113139,
0.10744189095293355
],
"perc_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"adv_g_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"adv_d_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"fid": {
"25": 108.92365264892578,
"50": 93.73921203613281,
"75": 90.11531829833984,
"100": 88.40287780761719
},
"train_time_s": 1526.7542352676392
},
"n_params": 10608451
}
@@ -0,0 +1,548 @@
{
"run_name": "p3_2_vae_perceptual",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"num_workers": 2,
"epochs": 100,
"augment": "hflip",
"image_size": 64,
"model": "vae",
"latent_dim": 256,
"ngf": 64,
"grad_clip": 1.0,
"run_name": "p3_2_vae_perceptual",
"lr": 0.0005,
"beta_kl": 0.25,
"lambda_perceptual": 0.1,
"lambda_adversarial": 0.0
},
"history": {
"recon_loss": [
0.07014625494042014,
0.04432385861396025,
0.03902342810462683,
0.036902043435117625,
0.035906293887135565,
0.035914984559560686,
0.0360899488401846,
0.036847473583860785,
0.037394630213260144,
0.03836990671200503,
0.039295883698022775,
0.040212508386526354,
0.04124497003757801,
0.04212733724305772,
0.04325710433638758,
0.04402907300963361,
0.045103192679647706,
0.04595246975525068,
0.04698181097419598,
0.047825980820080154,
0.04772546164627768,
0.04763130701950982,
0.047709369705591954,
0.04753121634961194,
0.04741841174948674,
0.04729832872016053,
0.04722155279551561,
0.0469712430340612,
0.04693082829093576,
0.0468663705401441,
0.04660685717040657,
0.04661381538384236,
0.046462044382515624,
0.0464134263431924,
0.046272445438254595,
0.04624118105882508,
0.046066727958874315,
0.04603223238363225,
0.04589838094404365,
0.0458371472489248,
0.04577782691225537,
0.04567820464985238,
0.04560983914913785,
0.045465615761076286,
0.04543259674603613,
0.04530587481159685,
0.04528731873465909,
0.04525673297098559,
0.04507890154217553,
0.0450239604514124,
0.04497251241730574,
0.044865927300774135,
0.04475303162207715,
0.044664276763796806,
0.044507257990602754,
0.0444452501515038,
0.044273821509674065,
0.044196275588220514,
0.044097925846775375,
0.04397543971864586,
0.04393626836279773,
0.043823353540247835,
0.04371356347209623,
0.043580674797169164,
0.04348461520181507,
0.04339473670682846,
0.043282039009798795,
0.04320543994888281,
0.04314021340324583,
0.04300904847904403,
0.04293948887950844,
0.04286929544730064,
0.04278319672896312,
0.04270272867547141,
0.0425933551393513,
0.04250210111276207,
0.04243518800562263,
0.04233357961424905,
0.04227217231105026,
0.042201977119677596,
0.04207655237430436,
0.04206944097024508,
0.0420022471768097,
0.041929350385808535,
0.04179893332159417,
0.041740718671781384,
0.04166606991177695,
0.04158131634959808,
0.04155632069445828,
0.04140628448440733,
0.041379960253834724,
0.041310225080093764,
0.04123378162168794,
0.04118641266105776,
0.04113346862837545,
0.041023712032116376,
0.04102735277902112,
0.04096395063062764,
0.04094440599059702,
0.040864359348630294
],
"kl_loss": [
0.9578518337673612,
0.8413855069213443,
0.7201743645545764,
0.6246620782165446,
0.5550231880102402,
0.49975109450582766,
0.454662803783376,
0.4155570190941167,
0.3821740793621438,
0.352426735827556,
0.32639839258204156,
0.3032199253893306,
0.2829984358360625,
0.26505850424241817,
0.24903864537676176,
0.23453107457130384,
0.22166774176761636,
0.21033292894180006,
0.19950743799662998,
0.18994869887192026,
0.18805619294189999,
0.18697467955768618,
0.1855154659312505,
0.1852042447680082,
0.18474761941112006,
0.1843619988514827,
0.18399313028551575,
0.18352704119478536,
0.18345636556036451,
0.18366932483692455,
0.18345450644946507,
0.18317942117523944,
0.1830864556006387,
0.1831519056079734,
0.18329900547734693,
0.1829878402252992,
0.18321112291807803,
0.18296580338197896,
0.18312124166096377,
0.18301436457878503,
0.1831260528574642,
0.18320244878657863,
0.18332607687538505,
0.18335427452101666,
0.18322811696009758,
0.18336237903334138,
0.183573446308191,
0.18356411601615769,
0.18363770969912538,
0.18377095862076834,
0.18369814056234482,
0.18386876185098264,
0.18424720492245805,
0.18420857423518458,
0.18395239082921264,
0.18442093539569113,
0.1842692175036312,
0.18475162495787328,
0.18502490509014863,
0.18480629139603713,
0.1851997250993537,
0.1850732435973791,
0.1854018302809479,
0.18547267151566652,
0.18569090538936803,
0.1859345402664099,
0.18615943276219898,
0.18631401260057065,
0.1865774132948146,
0.1867309583303256,
0.18672093723574254,
0.18682665680336136,
0.18679539349853483,
0.18683723016427115,
0.1874776411578696,
0.18746165714712223,
0.1873003001141752,
0.18763184111215112,
0.18799093031348327,
0.18802655252635989,
0.18824852079662502,
0.1882636730169129,
0.18849152215143555,
0.1886035389561429,
0.188697873813729,
0.18883028218888828,
0.1889004738858113,
0.18922981174073666,
0.18946354345888153,
0.18955816268029377,
0.18944057507010606,
0.18984314531852037,
0.19001257871715432,
0.19001863161340737,
0.18997256346365327,
0.19019658920856622,
0.19018171425176483,
0.19038618680758354,
0.19034281325263855,
0.19046620505615178
],
"perc_loss": [
3.257610213552785,
2.987424520855276,
2.8892488026211405,
2.8424616914529066,
2.817538415774321,
2.807587738220508,
2.8047564518757357,
2.8080830421203222,
2.8133585376617236,
2.821376688969441,
2.830571848612565,
2.840076332927769,
2.8507282504668603,
2.8593530094521675,
2.8690790253826695,
2.877339167982085,
2.8865632745954724,
2.8936263704911256,
2.9023511684857883,
2.9098138376178904,
2.906375333794162,
2.9055831661591163,
2.9031203985214233,
2.9002673641229286,
2.897312533651662,
2.8946053095352955,
2.8919762974111443,
2.8902457397208257,
2.8877664065768576,
2.884983114197723,
2.882109224286854,
2.8805122767758164,
2.8777520192994013,
2.876453428186922,
2.874014714334765,
2.8723304679251123,
2.870547831058502,
2.86905308564504,
2.8669193524580736,
2.865350999383845,
2.8633312608441734,
2.861651761409564,
2.860612149421985,
2.858717398256318,
2.857239680412488,
2.8558127604998074,
2.853911985189487,
2.852791876364977,
2.850916815109742,
2.8496591963319697,
2.8490061500133614,
2.8465628389619355,
2.844754463587052,
2.842957689211919,
2.840948245464227,
2.8397679522506194,
2.837174654006958,
2.835211678957328,
2.833740895629948,
2.8325765499701867,
2.830295750218579,
2.8292511431579914,
2.8273453595291853,
2.8257394835480256,
2.823762384744791,
2.822507558215378,
2.8205288745399213,
2.819065808230995,
2.8176180297492914,
2.8165967805772767,
2.8143360721759305,
2.8135039892971005,
2.8120578970664587,
2.8098325041624217,
2.8090034366672874,
2.8076502920215964,
2.80601545684358,
2.805327193859296,
2.803745285058633,
2.802450499473474,
2.800580952412043,
2.799968459157862,
2.798532901156662,
2.797372330967178,
2.795650184663952,
2.79500452371744,
2.79342931152409,
2.792220654650631,
2.7911063600809145,
2.7897617689564695,
2.7887179505111823,
2.7880892407180915,
2.7868736916118197,
2.785768971993373,
2.784949649602939,
2.784032260760283,
2.783316181765662,
2.7821382457374506,
2.7815805586994204,
2.780150015639444
],
"adv_g_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"adv_d_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"fid": {
"25": 85.4538345336914,
"50": 70.30448150634766,
"75": 68.88232421875,
"100": 68.23878479003906
},
"train_time_s": 1526.8077104091644
},
"n_params": 10608451
}
@@ -0,0 +1,550 @@
{
"run_name": "p3_3_vae_patchgan",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"num_workers": 2,
"epochs": 100,
"augment": "hflip",
"image_size": 64,
"model": "vae",
"latent_dim": 256,
"ngf": 64,
"grad_clip": 1.0,
"run_name": "p3_3_vae_patchgan",
"lr": 0.0005,
"lr_d": 0.0001,
"beta_kl": 0.25,
"lambda_perceptual": 0.1,
"lambda_adversarial": 0.01,
"ndf_patch": 64
},
"history": {
"recon_loss": [
0.07256481288653663,
0.04414264540960137,
0.03923531813133094,
0.03690198250512919,
0.03610035986042558,
0.03585429300562057,
0.03614142174936003,
0.03675156902187528,
0.03742894164135314,
0.0383954416307756,
0.039195723903293796,
0.04035789030007063,
0.04136944739705222,
0.04217637810282982,
0.04317184983410387,
0.04414223251529993,
0.045082664196817286,
0.0459897641140299,
0.046940210410672374,
0.04794481957856661,
0.04979389414000206,
0.050820046454731725,
0.050248638519810304,
0.049580192527709864,
0.049034240106359504,
0.048891564759497456,
0.04878619169163653,
0.04837235698524194,
0.04854527746255581,
0.04844111150815191,
0.0483922261872098,
0.04822369044025739,
0.048200586078386023,
0.047983415560144134,
0.0478166768199995,
0.0477692344918465,
0.04770479275661911,
0.04758516683155655,
0.047635042673756935,
0.04756982100761344,
0.04745731656399802,
0.04740560844413236,
0.04746005712793423,
0.04733826805893172,
0.047378935079034575,
0.04739771968024409,
0.047426708408782624,
0.047361184023002274,
0.04733280055861697,
0.04722336093043415,
0.04732823220646789,
0.0472236652022753,
0.047047707785525895,
0.04700392111339885,
0.046977425869713485,
0.04659851064157282,
0.04664327050599023,
0.046512148024625756,
0.04652243379790049,
0.04643834348067514,
0.046477761987246506,
0.04622124535883339,
0.04625549639423943,
0.04613285658992509,
0.04605264870975262,
0.04589356125419975,
0.04583498457462615,
0.04573038787955148,
0.0457718974759436,
0.04564371212329875,
0.04559122066562756,
0.045480694916322194,
0.04536095822755343,
0.045297518324775576,
0.04521293488418699,
0.04522842195076056,
0.045203558049904995,
0.04512962291383336,
0.04501655121516977,
0.04495001771351975,
0.044781594123277396,
0.04481303215854698,
0.044778383241441004,
0.044675282958863125,
0.04455677082395961,
0.04459468223568466,
0.04447825120873431,
0.04439788500372416,
0.044356526783070505,
0.04437946719236863,
0.044278508139790125,
0.0442026794816439,
0.04421330326929306,
0.0441932631099326,
0.04406989279847879,
0.043991477594862126,
0.04401077344440497,
0.043903381531883,
0.043854401948360294,
0.04389296859725673
],
"kl_loss": [
0.9422818552225064,
0.8304157827654456,
0.711033024212234,
0.6201538036012242,
0.5516812854852432,
0.49781491747523987,
0.4539294478475538,
0.4149613824919758,
0.3822571930085492,
0.3525762819708922,
0.32686203138695824,
0.3036677601118373,
0.2831739962228343,
0.26551324956946903,
0.24915392639545295,
0.234747304684586,
0.22180349417986014,
0.21073915000654694,
0.20005385755983174,
0.19080995443539742,
0.20008063157144776,
0.20165701993764976,
0.20599561308821043,
0.20952844473286572,
0.2119306048266908,
0.21374986164717594,
0.21439095319081575,
0.2146782086382055,
0.21535835013939783,
0.2156351603822321,
0.2156747308297035,
0.2163603354850386,
0.21604907694153297,
0.2170932454049078,
0.2172167382688604,
0.21753370074125436,
0.21788769651554588,
0.21780646761131084,
0.21757154243114668,
0.2174266650954373,
0.21739230457788858,
0.21768093402059668,
0.21731426490423006,
0.21709907592998612,
0.21729469019123632,
0.21711179728691393,
0.2172128687429632,
0.2170052423309057,
0.21706495239821255,
0.2174526669530787,
0.2170911322737861,
0.21746987362320608,
0.21689637371490145,
0.21768690562910503,
0.21710836957407814,
0.21804575870434442,
0.217907239165571,
0.21759957396703908,
0.21808122977232322,
0.21784972603249753,
0.21785366121265623,
0.21845279487534466,
0.21855741242567697,
0.21834458735508797,
0.21865385595677245,
0.2191770772457632,
0.21917275520853507,
0.21897286963131693,
0.2189757764721528,
0.21977992066078716,
0.22024847930058455,
0.21994173469451758,
0.21978110724534744,
0.21947090617484516,
0.219740368394006,
0.21953950682256976,
0.2196803634874841,
0.2198349738923403,
0.2205247895903567,
0.2201039091580444,
0.22056390408776763,
0.22043023312575796,
0.22098283940910274,
0.22084448502486587,
0.22079740432847259,
0.220382661678088,
0.2211024827745735,
0.2208555058345326,
0.22062583204008576,
0.22087381401250505,
0.22094633755011436,
0.22113347610729372,
0.2210337378594101,
0.22095281971443412,
0.22108463678731877,
0.22107870204963237,
0.22101640819102272,
0.221434213889715,
0.22125727438137063,
0.22125603885859504
],
"perc_loss": [
3.268518664388575,
2.9844126731921463,
2.8893332792143536,
2.842300501644102,
2.8177173336346946,
2.8061808974314957,
2.80318136449553,
2.8056567907333374,
2.8115715369200096,
2.8198827128125052,
2.828476501835717,
2.8390082136178627,
2.849494279959263,
2.8572748884176598,
2.867123058718494,
2.875808890049274,
2.8851839202082057,
2.892486855515048,
2.9006601964306626,
2.90893748937509,
3.002905537430038,
3.0841518523346663,
3.1015493930914464,
3.1056835936684895,
3.1069560407573342,
3.1064426521969657,
3.108147989480923,
3.1069585961154385,
3.1126723849875297,
3.110053312065255,
3.111884709606823,
3.109374719297784,
3.1103647427681165,
3.1077851240451517,
3.1043045816258488,
3.103300364098997,
3.100696138337127,
3.101050837427123,
3.104057640601427,
3.1031913258071637,
3.1028205446707897,
3.0987310552189493,
3.104932033098661,
3.100133360451103,
3.10110838087196,
3.1032485880403438,
3.1042901129804106,
3.1003458077072077,
3.103027570960868,
3.0989463599319134,
3.100031643341749,
3.0986684830779705,
3.097568829344888,
3.0981435597452345,
3.0955454218081937,
3.091543544561435,
3.094627695205884,
3.0887583132483,
3.0919363335666494,
3.0886334053471556,
3.089639984134935,
3.0892311589330688,
3.0903091853500433,
3.089088388487824,
3.0876893849454374,
3.0847945982574396,
3.083339012076712,
3.0836611441057973,
3.0838507724623394,
3.083322472551949,
3.0839521288871765,
3.0830512260779357,
3.0811995609193787,
3.077091329627567,
3.0774103555923853,
3.0779298793556342,
3.0798700487511788,
3.0797718432214527,
3.0784103956996884,
3.0775557175660744,
3.0766860032692933,
3.0762227615739546,
3.078130325700483,
3.0726998621581965,
3.0729522781494336,
3.073877077836257,
3.0732357578399854,
3.0725482758293805,
3.0729044237707415,
3.0753370171938186,
3.0735755771653266,
3.073718212099157,
3.0729570011807303,
3.073591929725093,
3.0722544748558955,
3.0702306806531725,
3.071104440933619,
3.070158361369728,
3.0697627974371624,
3.0690404686153445
],
"adv_g_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
1.1438086142078934,
1.3848216148714225,
1.431843824498057,
1.4550386664107378,
1.534417847609227,
1.5428873566456904,
1.5969856012459351,
1.6761763638968015,
1.6849639529728482,
1.6978890428033013,
1.7520971780754306,
1.758636311062763,
1.7961577434952443,
1.7791677351849966,
1.8282766153351364,
1.8869179757869141,
1.8936229561073468,
1.916680078762464,
2.0205936250396266,
2.0106747031020813,
2.1042307398488953,
2.0886956008198934,
2.1438577952914133,
2.144290308058103,
2.2067003882466216,
2.260120966622972,
2.3372040491583,
2.2787050508981586,
2.4021470887411356,
2.406920169790586,
2.4421350724167294,
2.4470817596993895,
2.46695097300232,
2.470248263870549,
2.5584849823489146,
2.492347888998751,
2.526307321766503,
2.5345261624226203,
2.5415179539694743,
2.553662398814136,
2.590494660103423,
2.609607903366415,
2.5870104153186846,
2.633848020281547,
2.617674359271669,
2.6077225506305695,
2.626374716687406,
2.623414141500098,
2.6401452143222857,
2.685499318389811,
2.6790291177920804,
2.6827956965336432,
2.6683848851766343,
2.692997595948032,
2.7399796782395778,
2.7001287651877117,
2.7064600485002894,
2.7366674155251594,
2.742031560239629,
2.7530031089599314,
2.718017868251882,
2.733836143444746,
2.7269677244699917,
2.7397567153486433,
2.7358992522598333,
2.7409965941029735,
2.74284782852882,
2.7570678810788016,
2.744860523276859,
2.727091629790445,
2.728150630608583,
2.7151212447728867,
2.7098901113893232,
2.7117845436446686,
2.6960576665707126,
2.6918129436990137,
2.6912999886732836,
2.7062390074770675,
2.712936248534765,
2.713185273683988
],
"adv_d_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.43680395959661555,
0.34810768227037203,
0.3377910334075618,
0.3321381963662103,
0.2982299141904228,
0.30104209130836856,
0.28214932976561224,
0.26205551579721975,
0.2678493159608199,
0.2567906266508194,
0.25110278342269426,
0.24189095977598277,
0.2394267334483373,
0.24564475484956533,
0.24081433725216958,
0.21658801688597754,
0.213517039664026,
0.21218282094177526,
0.18916759920171183,
0.19284203568170977,
0.181842301462769,
0.1791912000785526,
0.18734478913088384,
0.17373414262810832,
0.16635354463424948,
0.16650411119270656,
0.15708727274153733,
0.16674049754237008,
0.1501258422867355,
0.15181534979333225,
0.13657129330672005,
0.1467462844478014,
0.1383675114235753,
0.14689494454516813,
0.12695099818162048,
0.12875286992798504,
0.13186773245469627,
0.12181158371779144,
0.12662809188517496,
0.1175684176114762,
0.11314824839226073,
0.11264375143517287,
0.1165530812393269,
0.10845673464350084,
0.10203271553827784,
0.11023388663306832,
0.10421399819131336,
0.0983247641298888,
0.09406759767817,
0.09505048260076815,
0.09383611069021063,
0.09381456619017145,
0.08943638993968439,
0.08595997961556427,
0.08149021235692641,
0.08130677379906559,
0.07870399655025993,
0.07449058663203484,
0.07478499058315642,
0.07468204382154295,
0.07225174684491423,
0.07153088875258198,
0.06767470285328281,
0.06715900409154785,
0.06388170873889557,
0.06149009168227641,
0.06165273037826658,
0.05667935721735414,
0.058510264835487574,
0.056089043583418444,
0.05523068375256645,
0.05533928267705517,
0.05186875127295717,
0.05044461999279566,
0.050165704740052164,
0.046495266505477265,
0.04587119478039826,
0.04412680363051721,
0.04238344537309156,
0.041027947104114115
],
"fid": {
"25": 73.48986053466797,
"50": 51.912357330322266,
"75": 50.058326721191406,
"100": 52.463279724121094
},
"train_time_s": 2145.0215554237366
},
"n_params": 10608451
}
@@ -0,0 +1,150 @@
{
"run_name": "p4_1_ddpm_linear",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": "hflip",
"image_size": 64,
"model": "ddpm",
"T": 1000,
"ddim_steps": 100,
"lr": 0.0002,
"base_ch": 128,
"ch_mult": [
1,
2,
2,
2
],
"attn_resolutions": [
16,
8
],
"num_res_blocks": 2,
"dropout": 0.1,
"run_name": "p4_1_ddpm_linear",
"noise_schedule": "linear",
"pred_type": "eps"
},
"history": {
"loss": [
0.050263571692232646,
0.02514873994474546,
0.02225509669400879,
0.021068911675093137,
0.02032521784775214,
0.019192529312916037,
0.018796856887240566,
0.019092055869439982,
0.018012497312405236,
0.018579239720223933,
0.018120780589186355,
0.01804902349025584,
0.017445260646920174,
0.0174015331078066,
0.01720998039803444,
0.017182101499543995,
0.017374234542680476,
0.01719019105896736,
0.017258047804825455,
0.017472001728920154,
0.01717184852155992,
0.017268840462351456,
0.016940360013236348,
0.016780947783810653,
0.016770626064071543,
0.01686398620601807,
0.0171233544496294,
0.016849436540490925,
0.01643650009173454,
0.016715853648164716,
0.01591222248792362,
0.01663316461122316,
0.017018022838558078,
0.016728110333832983,
0.01637174110983013,
0.01640069789977537,
0.016222019855959866,
0.01619866752348299,
0.016273524062946822,
0.016225511587272663,
0.016525169477288604,
0.016554634154447887,
0.01636095449495583,
0.016358451291910794,
0.01612802425849164,
0.016018457704772934,
0.015985010074387886,
0.015972342274478104,
0.01617517040915087,
0.016143278803867407,
0.016039738931064296,
0.016184791375317763,
0.01608435499171416,
0.016031058468362395,
0.016189519307003,
0.016219924015000973,
0.016112841876685366,
0.015630949461737122,
0.015760562722929396,
0.015901298478094496,
0.01586071201440934,
0.016167635994597186,
0.015887681410735488,
0.01600054983431712,
0.015733229437182285,
0.015523023833719712,
0.01581668923011957,
0.015652269207569968,
0.015604886598487059,
0.015797711234205425,
0.015701896441368084,
0.015930752163458392,
0.015848295793980043,
0.01567347500568781,
0.015367114703513237,
0.015625674345204208,
0.01559769835534036,
0.015479316330976529,
0.015648531339441735,
0.015174523765085917,
0.015752060055279005,
0.015384152635104127,
0.015699152740188196,
0.015053038565943448,
0.015501487074801937,
0.015345309023212036,
0.015243542788582098,
0.01545036704534203,
0.01533815077541826,
0.015173954715052795,
0.015228697487837674,
0.01517730934294657,
0.015363585634722223,
0.015174964277678702,
0.01534465596310667,
0.015116462827278063,
0.015595124076263836,
0.015289406492136037,
0.015195867164124154,
0.015012384551521549
],
"fid": {
"25": 333.25946044921875,
"50": 311.42364501953125,
"75": 255.9425506591797,
"100": 134.49986267089844
},
"train_time_s": 15595.587987422943
},
"n_params": 28474755
}
@@ -0,0 +1,150 @@
{
"run_name": "p4_2_ddpm_cosine",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": "hflip",
"image_size": 64,
"model": "ddpm",
"T": 1000,
"ddim_steps": 100,
"lr": 0.0002,
"base_ch": 128,
"ch_mult": [
1,
2,
2,
2
],
"attn_resolutions": [
16,
8
],
"num_res_blocks": 2,
"dropout": 0.1,
"run_name": "p4_2_ddpm_cosine",
"noise_schedule": "cosine",
"pred_type": "eps"
},
"history": {
"loss": [
0.0745811819847132,
0.042058256996047295,
0.038731603282225184,
0.0365341946355298,
0.03596278707870943,
0.03499822471784348,
0.034039977941916794,
0.03339788123853823,
0.033659401990505114,
0.0328750506353875,
0.03281905785656701,
0.032175978936223135,
0.03264562071213483,
0.03167968711011812,
0.03252785405717217,
0.032265412987361096,
0.032163158218320616,
0.03181939549409808,
0.03145227379476031,
0.031572662918772705,
0.0314074662896112,
0.03058532617874762,
0.031417921515834384,
0.030867751819105484,
0.031200444417344965,
0.030372575657744694,
0.031070002880042944,
0.0306555292624821,
0.031143788686101764,
0.030448843175784137,
0.03087240754841612,
0.03053835191580857,
0.030471389926174004,
0.0302293243435904,
0.030659112543997984,
0.030551793045786202,
0.030635309206624318,
0.030368149071597517,
0.030187387226356402,
0.03037746619974446,
0.030544078081018396,
0.0304682625648685,
0.030033117888543088,
0.030058689524905167,
0.030037028862274866,
0.02957952331799345,
0.03012158986356141,
0.029973779056762528,
0.030247858279726952,
0.02959363942599704,
0.029731284608093336,
0.03002101383928178,
0.029881187225094974,
0.029322936573726498,
0.029073657284880806,
0.02956077633385793,
0.029618583959885515,
0.029847813658734672,
0.029749778817750067,
0.02967120576092703,
0.02939097446381536,
0.029562414946177833,
0.02957131928947364,
0.029576030472277574,
0.029486760393612914,
0.028896253977894273,
0.029079640140900247,
0.02946651985661851,
0.02956312265382427,
0.028787078188620824,
0.029077194975370653,
0.02904141321579297,
0.02869541201995224,
0.029384889960304923,
0.029296722736719072,
0.028805798423102397,
0.029137278389599588,
0.02882065039733027,
0.028110843072207566,
0.029165515112969227,
0.02838028352269823,
0.028928894915769242,
0.02887988943232494,
0.02871215812718639,
0.02849309494257228,
0.02836313749400851,
0.02900838313433222,
0.028941123808025677,
0.028982899480093367,
0.028617646975012925,
0.028945480441499468,
0.028021262546714682,
0.028656914595387176,
0.028812512554403428,
0.02845827827994258,
0.02854005663265657,
0.028420659669666972,
0.028380179300140113,
0.0278120991280382,
0.0285125195613911
],
"fid": {
"25": 249.73973083496094,
"50": 282.24053955078125,
"75": 239.8434295654297,
"100": 132.29640197753906
},
"train_time_s": 15527.574454307556
},
"n_params": 28474755
}
@@ -0,0 +1,150 @@
{
"run_name": "p4_3_ddpm_vpred",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": "hflip",
"image_size": 64,
"model": "ddpm",
"T": 1000,
"ddim_steps": 100,
"lr": 0.0002,
"base_ch": 128,
"ch_mult": [
1,
2,
2,
2
],
"attn_resolutions": [
16,
8
],
"num_res_blocks": 2,
"dropout": 0.1,
"run_name": "p4_3_ddpm_vpred",
"noise_schedule": "cosine",
"pred_type": "v"
},
"history": {
"loss": [
0.12875029073757494,
0.08614025376418717,
0.07806828354572894,
0.07598056628281234,
0.07384663673802319,
0.07230065119030893,
0.07155742664208524,
0.07158301252489671,
0.06912831641319725,
0.0690550329322871,
0.06728915909193775,
0.0680126636965662,
0.0679081722568625,
0.06737891206533736,
0.0675490371341634,
0.06628662669378468,
0.06702909948957017,
0.06577521818889003,
0.0659722731822831,
0.06550971675727867,
0.06532588509572113,
0.06617079318588616,
0.06557409760629775,
0.06460701921779631,
0.06434725145371552,
0.06484076265309356,
0.06488110336005433,
0.06471904473872776,
0.06392401659813447,
0.06467082913423705,
0.06412526943649237,
0.06369206279866461,
0.06399395895532818,
0.06387244150615655,
0.06383777140743202,
0.06308407760742638,
0.06396170450836165,
0.06374330889497302,
0.06341904871420473,
0.06296812231915119,
0.06285389444321139,
0.06360878343256111,
0.06254984510855542,
0.06288161397808129,
0.06314336311899954,
0.06315476795196788,
0.06280555519569889,
0.06323608846013618,
0.06255563115303078,
0.06277075296856909,
0.06311190929104629,
0.062085086575303323,
0.061993980668803565,
0.06232117703104885,
0.06287038124078868,
0.06232338945548504,
0.062193875718447894,
0.0618046884639905,
0.06204842089110205,
0.061992981136800386,
0.06199613542288032,
0.06176470703262295,
0.06138660101235932,
0.06124315102003578,
0.06172546414801708,
0.06145226469056474,
0.06173897245660042,
0.06087356748489233,
0.06146528088670765,
0.06130675005161355,
0.06117054966525135,
0.06046625260168161,
0.060342767578350685,
0.06143473189833582,
0.06048223876163491,
0.060843704316096425,
0.0605114245086781,
0.06107715372410086,
0.060475895483779095,
0.06033737308735776,
0.060130660151505574,
0.06022480088803503,
0.06079090322948929,
0.05941804670370542,
0.06048406008630991,
0.0605061265727521,
0.0595617718819497,
0.059925066514147654,
0.05995072215859197,
0.0600912062307963,
0.05996395193008531,
0.05987944811359685,
0.059719653529489145,
0.059423190700765856,
0.05964870073506211,
0.059674753154763296,
0.05960713100070373,
0.05966718835581062,
0.059533771055822186,
0.059380597387177825
],
"fid": {
"25": 315.896728515625,
"50": 160.689453125,
"75": 81.74005126953125,
"100": 34.53862762451172
},
"train_time_s": 16728.13574409485
},
"n_params": 28474755
}
@@ -0,0 +1,151 @@
{
"run_name": "p4_4_ddpm_wider",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"epochs": 100,
"augment": "hflip",
"image_size": 64,
"model": "ddpm",
"T": 1000,
"ddim_steps": 100,
"lr": 0.0002,
"base_ch": 192,
"ch_mult": [
1,
2,
2,
2
],
"attn_resolutions": [
32,
16,
8
],
"num_res_blocks": 2,
"dropout": 0.1,
"run_name": "p4_4_ddpm_wider",
"noise_schedule": "cosine",
"pred_type": "v"
},
"history": {
"loss": [
0.13163253967451233,
0.08248793359240915,
0.07643996758593453,
0.07397907251157822,
0.07122657460789396,
0.07138561033922383,
0.06904177999712972,
0.06896601267891307,
0.06838215670237939,
0.06739913265451662,
0.06671866834259187,
0.06677559890553482,
0.06631149910390377,
0.06638919253252511,
0.06601078898255897,
0.06575383071620496,
0.06603237377622953,
0.06491840548781502,
0.06508892283448552,
0.06473595779548344,
0.06483772213960814,
0.06465409342677166,
0.06401995661007798,
0.06340267588026248,
0.06413594504388478,
0.0628959270210093,
0.06418510344134182,
0.06394238918064496,
0.06248996071676668,
0.06351545423619513,
0.06229034258036786,
0.06320842817171007,
0.06290241482102463,
0.06321675274680313,
0.062413496713544056,
0.06212212591885756,
0.0626084612777982,
0.06261288894451836,
0.062471460248542644,
0.06219181806867958,
0.06191267504587642,
0.0624321296524543,
0.06224303583526968,
0.06250620571275552,
0.062041081241371795,
0.061931725097899765,
0.062425335622432396,
0.061999101836520895,
0.061793283638982184,
0.061307266083920106,
0.06238582809097492,
0.06149721970288163,
0.0617471888470344,
0.061242959692946866,
0.06050234880998858,
0.06128905856042591,
0.061545657829787485,
0.061363947880255364,
0.06154585556469412,
0.06045179913600541,
0.06099297314818598,
0.06042028706457116,
0.060532668302965977,
0.060747456044340745,
0.060856614429026075,
0.061282420737875834,
0.06049503485520936,
0.06037547157551998,
0.0603547497994752,
0.05981557718358743,
0.05992960667985882,
0.060057796283155426,
0.060209037186816715,
0.059781413660663314,
0.059697162765914046,
0.05961615767361771,
0.0594154964798154,
0.059636228630303316,
0.05954878875969821,
0.05950295750815899,
0.06050215718837885,
0.059087028957776025,
0.05935390770403493,
0.05888504008802339,
0.05896756445399971,
0.0595984901739364,
0.059530704560824946,
0.05954143077803728,
0.05873110663527862,
0.05813556529072105,
0.058873162262587465,
0.05845667324705511,
0.05882444465134898,
0.058418608986987516,
0.05849540675393282,
0.0582493251730871,
0.05856856523861743,
0.05849931979727032,
0.058338277670753814,
0.05817114788656815
],
"fid": {
"25": 324.9868469238281,
"50": 170.89854431152344,
"75": 78.47106170654297,
"100": 30.03441619873047
},
"train_time_s": 32182.514033079147
},
"n_params": 64770819
}
@@ -0,0 +1,232 @@
{
"run_name": "p5_ddpm",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"num_workers": 2,
"run_name": "p5_ddpm",
"model": "ddpm",
"epochs": 1000,
"augment": "hflip",
"image_size": 64,
"T": 1000,
"noise_schedule": "cosine",
"pred_type": "v",
"base_ch": 192,
"ch_mult": [
1,
2,
2,
2
],
"attn_resolutions": [
32,
16,
8
],
"num_res_blocks": 2,
"dropout": 0.1,
"lr": 0.0002,
"ddim_steps": 100,
"max_train_hours": 24,
"fid_patience": 2
},
"history": {
"loss": [
0.1361132180557037,
0.08347086386325267,
0.07713027890676107,
0.0735087690827174,
0.07138374625331062,
0.07048111248952456,
0.0699430058001835,
0.06959152534508552,
0.0687942563309374,
0.06749710015570506,
0.06797479636744301,
0.06707314404253012,
0.06645634254583946,
0.06616808988281295,
0.06632597825657098,
0.06543161581533077,
0.06567037307744862,
0.06560073971238911,
0.06487136873870324,
0.06486488640722302,
0.06474818710365102,
0.0648785232542417,
0.06409876514226198,
0.06419924900540684,
0.06415374198148394,
0.06415291013530432,
0.06390660826880963,
0.06351337538888821,
0.0637402735157018,
0.06242381525026937,
0.0636787190157761,
0.06266482662345864,
0.0638032130514964,
0.06235016199449698,
0.06285461769081079,
0.06259892232970804,
0.06228241114280163,
0.06305973536661293,
0.06274244885764316,
0.062076514268405415,
0.06195374166704396,
0.06290199403834139,
0.06198460275195857,
0.0624536736908122,
0.06327703114376108,
0.061569202508236096,
0.0628280364550077,
0.06169611253003534,
0.06185008156407847,
0.06172168297040412,
0.061782848997375905,
0.06151117438561896,
0.061827609793115884,
0.061956947136065386,
0.06214875884704355,
0.062044317284837745,
0.061401939210601345,
0.06086002392933155,
0.061775257596029684,
0.061602149421396926,
0.06117732557030315,
0.061202412471175194,
0.061622718205818765,
0.06128816264402917,
0.0614978774315399,
0.061346558766423635,
0.06128153991368082,
0.06116244996077994,
0.06111229184823923,
0.06107063669488471,
0.06084184085106493,
0.060991186720247455,
0.06110310762260969,
0.060644112224889614,
0.06105265081024323,
0.060728371310501524,
0.0612431171660622,
0.06059174603408473,
0.06193933507793734,
0.06114670591285595,
0.06008413203187987,
0.060815918625483655,
0.06038160178746678,
0.060638460115744516,
0.06106071204392829,
0.060512709447270274,
0.05989936954126908,
0.06053547763353229,
0.060993485152721405,
0.06054355477134132,
0.060113425056139626,
0.060656892772541084,
0.06028386112302542,
0.06064964496554472,
0.060564143551338434,
0.06023223410782396,
0.0606433203141404,
0.06019309561094667,
0.060663971755430736,
0.06061358017544461,
0.06051926234434558,
0.060519506510060564,
0.05998779779188653,
0.060273363700725585,
0.060976108679404624,
0.05960293089509265,
0.06006794761165849,
0.06001491510333159,
0.059924575054429025,
0.060125686371555694,
0.06028291987430336,
0.06011252240556428,
0.0603115351504495,
0.059780152243936166,
0.05937349914899494,
0.060589286212164625,
0.05928194311917083,
0.0603618670700707,
0.05988672448115216,
0.06036584552886904,
0.05977793929413853,
0.0594497075320309,
0.059364209859034955,
0.059953983116926804,
0.059721899139257066,
0.06011831242209061,
0.059677510808866754,
0.059987764399594225,
0.060053561774329245,
0.059788390898551695,
0.05936959649348616,
0.059900946533068634,
0.05933099720053948,
0.05939908983169967,
0.0593241080084545,
0.05961700674528495,
0.05928131563859618,
0.05942184386504257,
0.060225125601212695,
0.0589471840673787,
0.06034273053240827,
0.05934861272923712,
0.05955804113107614,
0.05946602335629555,
0.05946855390301117,
0.05917746134293385,
0.05913895009579057,
0.060033635260202944,
0.05908472824873578,
0.060041244786519274,
0.05998928384043467,
0.059578305993897795,
0.05958271934849839,
0.05902576439369183,
0.06004863530875017,
0.058922704555985764,
0.059662471589051254,
0.05893384579282541,
0.05959883256632294,
0.05884528258003485,
0.05999988574598335,
0.059614969194572195,
0.05979255826459227,
0.05972598887916304,
0.05883011880179501,
0.05925349895165771,
0.059959421220880285,
0.05954511561550391,
0.05976989628890386,
0.059382665185974196,
0.059384163946677476,
0.059122750774408,
0.05936474042634169,
0.059725822403262824,
0.05970647112012674
],
"fid": {
"25": 312.4023742675781,
"50": 174.07015991210938,
"75": 81.27722930908203,
"100": 34.90231704711914,
"125": 19.03875160217285,
"150": 19.847490310668945,
"175": 20.106101989746094
},
"train_time_s": 40025.90805530548
},
"n_params": 64770819
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,803 @@
{
"run_name": "p5_vae",
"config": {
"batch_size": 64,
"ema_decay": 0.9999,
"data_dir": "cropped/generator",
"sources": [
"wiki"
],
"subsample": 1.0,
"sample_interval": 10,
"fid_interval": 25,
"fid_n_real": 5000,
"num_workers": 2,
"run_name": "p5_vae",
"model": "vae",
"epochs": 1000,
"augment": "hflip",
"image_size": 64,
"latent_dim": 256,
"ngf": 64,
"lr": 0.001,
"lr_d": 0.0001,
"beta_kl": 0.25,
"lambda_perceptual": 0.1,
"lambda_adversarial": 0.01,
"ndf_patch": 64,
"max_train_hours": 24,
"fid_patience": 2
},
"history": {
"recon_loss": [
0.08173564161595881,
0.04146057692491728,
0.033197456083268434,
0.029159623552432172,
0.02667280151230148,
0.025261251598150812,
0.024257522199748673,
0.023582084749180537,
0.02317739939555908,
0.0228854169169616,
0.02273467821904864,
0.02275952355713289,
0.022742557132409677,
0.02288884083286692,
0.02307083113835408,
0.02306825413695003,
0.02333941402582404,
0.023522860378536403,
0.023781677986630518,
0.02415322158565251,
0.024362559028320078,
0.024719046269599188,
0.024978828381619647,
0.025267189054184746,
0.025601001957861278,
0.025947716914945178,
0.02626000661562141,
0.026563474303509436,
0.026907212713844757,
0.027261087861962807,
0.027623260935020242,
0.02788937708729098,
0.028258478253060937,
0.028637871249682374,
0.028990209600131992,
0.02929247497445625,
0.02967457652378541,
0.030021737023201,
0.03038583667630441,
0.0307320339533572,
0.03102703508721967,
0.0313626594013638,
0.03168195511142795,
0.03200014498737505,
0.03235234824829122,
0.03271670717125138,
0.033002344525267936,
0.033343258488955155,
0.033746167997487336,
0.03391206884979565,
0.034320008921094686,
0.03461272342321582,
0.03489355772383448,
0.035198040469748594,
0.035503431235272914,
0.035830338031817704,
0.036117242032295875,
0.0363806002240023,
0.03668171550648717,
0.03697258003979412,
0.03727693509501524,
0.0375139316639457,
0.037840200731387504,
0.038122120233746164,
0.03842886089164223,
0.03865345798305467,
0.038888611257649384,
0.0392349067534137,
0.03943746010812684,
0.039729930890294224,
0.039934589073826104,
0.040214110754876055,
0.040464710476052046,
0.04072135742594544,
0.04103369681307903,
0.04122272431532033,
0.04147602297747747,
0.04175838601226226,
0.041981571935053565,
0.04218511026288964,
0.0434638784529689,
0.044279665901110724,
0.04388998740981532,
0.04378506315983514,
0.043469862900992744,
0.043495111318671294,
0.043308621399805076,
0.0433056692346039,
0.04340444247309978,
0.04358124794263361,
0.04335595957107014,
0.04356866496272831,
0.043484247870679595,
0.043528493326634936,
0.04372521748559342,
0.04384844278932637,
0.04393588304201253,
0.04403914753188435,
0.0439675522602012,
0.044021993732223146,
0.043999971543303415,
0.044060074501376376,
0.04411218751572136,
0.044121765237078704,
0.044155512084690936,
0.04410169209934708,
0.04411306348430295,
0.04417482529504177,
0.04441443736004269,
0.04446349320853622,
0.044355124816234805,
0.044421110310169876,
0.04433931181860021,
0.04454980254905601,
0.044568583544375553,
0.04472394101321697,
0.04460177927190422,
0.044622046403332144,
0.04457441905242765,
0.04446317329525183,
0.04451204457471513,
0.04458364027623947,
0.04471937933156633,
0.04466542917598262,
0.04463891728789124,
0.04481849785989676,
0.04486950688286979,
0.04481423330994753,
0.04482838029885649,
0.044813229670572996,
0.04473217408785708,
0.0447128033106271,
0.04480086673751601,
0.044861731875655994,
0.04487089248390025,
0.044776066079035275,
0.04491674915178973,
0.04493348086332409,
0.044922901715478324,
0.04484499612043046,
0.044878341376972504,
0.04497806810670429,
0.04492314205242273,
0.045036036871437334,
0.044956916425791055,
0.04492688768853744,
0.04503960343093699,
0.04504223272172559,
0.04498517667699573,
0.04510456890377224
],
"kl_loss": [
1.8832697430227556,
1.5030887962406516,
1.4371699270529625,
1.3794863160349364,
1.317023015429831,
1.260787772317218,
1.20747315705332,
1.159149752722846,
1.1143082375200386,
1.0731101099751954,
1.0322983669929016,
0.9951083602813574,
0.9579257903954922,
0.923228091154343,
0.8905815431195446,
0.858786458388353,
0.828593898532737,
0.7993809659766336,
0.7714693450774902,
0.7442712431025301,
0.7199444593782098,
0.695041867530244,
0.6731410705380969,
0.6509683456940528,
0.6292857889436249,
0.6094866224333771,
0.5911677191909562,
0.5731407938859402,
0.5559644978015851,
0.5397802491982778,
0.5241343514659466,
0.5088330608529922,
0.4945932364361918,
0.4809639279404257,
0.4680255864802589,
0.4561300035725292,
0.4435463426077468,
0.43241624865267014,
0.42196338114320725,
0.41104321850415987,
0.40152480134851914,
0.3924273262676011,
0.38304132586106276,
0.3746294933251845,
0.3662941768510729,
0.3582234036209237,
0.3505442201709136,
0.34257710699596977,
0.3358852074314386,
0.3289759689544001,
0.32253712511215454,
0.31611753057720315,
0.31008939024729604,
0.304038886522126,
0.29916893270535344,
0.29325113967697847,
0.28773705597616667,
0.28298880541935945,
0.27806805265255463,
0.27326949768596226,
0.26901512707655245,
0.26478433013599145,
0.25998555980304366,
0.256209296389268,
0.2521240388990467,
0.24862138000436318,
0.24455853268249422,
0.24078580730745935,
0.23787205242830464,
0.2343584157080732,
0.2312759287082232,
0.22770234795971814,
0.22468086605907506,
0.22154285134668025,
0.2185749091590062,
0.21622988989210537,
0.21334342279622698,
0.21031736958230662,
0.20821398054050583,
0.20572019705915043,
0.21628583002931032,
0.2194562403119018,
0.22301752524625543,
0.22598309104896,
0.22795188235930908,
0.22893120685958454,
0.2295441096728174,
0.23045717157487178,
0.2307042523454397,
0.23043083030189204,
0.23064518665783426,
0.23032910246242824,
0.23060548378743678,
0.23033957759666646,
0.2304461102009329,
0.22965750091860437,
0.22889292256062865,
0.22856403221814042,
0.22825642130695856,
0.22742723778654367,
0.22784906609827638,
0.2276344419671939,
0.22756879891340548,
0.2267344477467048,
0.22729620585838953,
0.2268278091891199,
0.22641172514766708,
0.22643836772339976,
0.2259681155730007,
0.22594845521017018,
0.22606605823096046,
0.22611611817254978,
0.22537599198329142,
0.22523161959953797,
0.22564348126323813,
0.2256515452431308,
0.22506998769111103,
0.22473229929550081,
0.2252063060927595,
0.22526399985465229,
0.2246429033131681,
0.22502394574574935,
0.22481360525274888,
0.22431928135900417,
0.22431448318509975,
0.22448719694064215,
0.2239962275275308,
0.2245619546653878,
0.22364687674448022,
0.22400801323163202,
0.22391851013924322,
0.22405476218614823,
0.22407084725733495,
0.22361944762305316,
0.22302533170351616,
0.22388576830808932,
0.2239373442517896,
0.2237205284719284,
0.22297952336888027,
0.2233510906370277,
0.2234493434174448,
0.22333545651700762,
0.22330360321535003,
0.22315198313604054,
0.22276537591575557,
0.22286016213842946,
0.2231126102563153,
0.22256787146768,
0.22279638510483962,
0.2230066102093611
],
"perc_loss": [
3.3164807822969227,
2.966900161188892,
2.809185492686736,
2.7062561995962744,
2.638469039884388,
2.5891882242300572,
2.553413317244277,
2.5273160430101247,
2.509399730935056,
2.496209012137519,
2.486997235025096,
2.4822953312824936,
2.4796805422530217,
2.48045335824673,
2.4806297350133586,
2.48182612657547,
2.4867774569071255,
2.49037778020924,
2.496531085580842,
2.503686810660566,
2.508832235621591,
2.51611825492647,
2.522676155098483,
2.5290650414605427,
2.537268033903888,
2.544369221243084,
2.551585525019556,
2.5588325119426107,
2.566411652116694,
2.573071305568402,
2.5811851085760655,
2.5880441370173397,
2.5954170807813988,
2.603013479302072,
2.6101978186868195,
2.616576226857992,
2.6234971463170824,
2.6303548344180117,
2.6369187021866822,
2.642275041494614,
2.648416009723631,
2.654887793919979,
2.6606381347036767,
2.6666526050649138,
2.6721576584710016,
2.677529989144741,
2.6828432373511486,
2.687969985171261,
2.6935356880864525,
2.698010875628545,
2.703999019586123,
2.7082395701326876,
2.7126739442857923,
2.7172017550875998,
2.7211444158839364,
2.7256852373098717,
2.7301904182148795,
2.7331284310063744,
2.737607326772478,
2.7416759551080885,
2.7451996568940644,
2.7490297397996626,
2.753167223217141,
2.7563025574398856,
2.759685732360579,
2.7632323085752306,
2.766300177981711,
2.7701201449092636,
2.7729321677460628,
2.7762113218633537,
2.7788043338009434,
2.781867154643067,
2.7849045492645,
2.787607474714263,
2.790335464171874,
2.793526118127709,
2.795755087819874,
2.798796303761311,
2.80171739239978,
2.8035580790959873,
2.8777626533793588,
2.950976721241943,
2.967899640910646,
2.9782277951892624,
2.9827450355912886,
2.987575893218701,
2.987522155810625,
2.991916447113722,
3.000185159027067,
3.004894296837668,
3.0038876528413887,
3.0081850050861,
3.0101239767848935,
3.0124433137412763,
3.0202839084160633,
3.0268688752101016,
3.023946065678556,
3.026914996469123,
3.0266885844051328,
3.03024056324592,
3.0303047411462183,
3.028674019707574,
3.0321214662657843,
3.0307897828583026,
3.0340588429035287,
3.0320650782340612,
3.0327554314564438,
3.032847610803751,
3.0383236021058173,
3.0406483253862104,
3.038965443260649,
3.041243037606916,
3.040778627762428,
3.0432778540839496,
3.0447197128564882,
3.050575358235938,
3.0489785151603894,
3.048940940799876,
3.0493449298744526,
3.0468837221463523,
3.0475700538382573,
3.0506596045616345,
3.054089330200456,
3.055086179676219,
3.0566917240110216,
3.056929785471696,
3.0581071025285964,
3.0597308272989387,
3.059405525525411,
3.060708708742745,
3.0574003773876743,
3.058264940722376,
3.060303100153931,
3.062096351232284,
3.059273307140057,
3.061588850286272,
3.0626053392377672,
3.0641078373305817,
3.066277322606144,
3.0621221478168783,
3.0657967833372264,
3.0649239115225964,
3.066433975839207,
3.0685499417476163,
3.0665346664241238,
3.067326355184245,
3.0665999717182584,
3.0692200197113886,
3.07155424509293,
3.0738353668115077
],
"adv_g_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.9632109370974139,
1.211132360367566,
1.3175093642640938,
1.3922682551499934,
1.4125826574352562,
1.4523614480769118,
1.499554595277191,
1.548010360584873,
1.6739830933033655,
1.6886514832273636,
1.6398199590362816,
1.7446437461249944,
1.7490826915217261,
1.8197036831615827,
1.9272557730571582,
1.9791131971173115,
2.008557731206091,
2.1103836483139005,
2.142390124213237,
2.2311043134357176,
2.266483112087107,
2.27572646130545,
2.3473580713328133,
2.390086266694182,
2.4142788839327474,
2.4292813662407746,
2.4539627994163933,
2.507446602623687,
2.5730194447832737,
2.5929551932037387,
2.593824964748998,
2.567539267655876,
2.6235183901830106,
2.6323009800707173,
2.6518306329719024,
2.7284936619620037,
2.704447408580882,
2.74189792942797,
2.7964204171529183,
2.7896072612358975,
2.793753677071669,
2.778480993774839,
2.8386917430111485,
2.8365126787087855,
2.8702264558683095,
2.878851713342035,
2.9237960825363793,
2.9553560888410635,
2.956895709801943,
2.969365261431433,
2.993740539010773,
3.015474187194282,
3.056270465000063,
3.065233544406728,
3.044361260456917,
3.0338786515669947,
3.1234994245390606,
3.129472752666881,
3.136663539796813,
3.1313738228164167,
3.1481547984811993,
3.219246102194501,
3.1428479904420357,
3.217929567918818,
3.2371158998491416,
3.2657294607060585,
3.24507825063844,
3.306370687026244,
3.291455037191383,
3.3207367835646
],
"adv_d_loss": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.5122376614146762,
0.41418764982213324,
0.39495776558661055,
0.3695600348023268,
0.36009453071488273,
0.35155136284665167,
0.3308748407368986,
0.3143339802821477,
0.28087137429377973,
0.2907019967579434,
0.3005673044289534,
0.2673453879025247,
0.26117105337862784,
0.2412458589921395,
0.23119024956264558,
0.2232273597843372,
0.214467806279914,
0.19811755947322926,
0.19150423764004412,
0.18529738982518515,
0.18752380157223877,
0.19471473194276676,
0.1733510587284835,
0.16257719115282482,
0.173062551766634,
0.1684507301204607,
0.15976927564758012,
0.14978749867783397,
0.14371462275361657,
0.14911018250685218,
0.13836139501828668,
0.14826281648925227,
0.14031775896716067,
0.13825866035941956,
0.1294869492865271,
0.1314171394572044,
0.1352860079680243,
0.1299466537669874,
0.12905895528502953,
0.12790230486908147,
0.11942041554671322,
0.12361126522032115,
0.12145969301907934,
0.11677189568519337,
0.11353864285569543,
0.12105588467282236,
0.11011259124861059,
0.11293683068938234,
0.10829276194732286,
0.11203425616010004,
0.10076702566037321,
0.11197975523865376,
0.10497997689228027,
0.10061924710758349,
0.10185919772499265,
0.10734878903509587,
0.10178774036268075,
0.09918854672374187,
0.0946219379050482,
0.0951714255910717,
0.09456023021250899,
0.09714587467810155,
0.08886556981258795,
0.09128673289281626,
0.08850656303131364,
0.0841089827227446,
0.09212012038940293,
0.08030427809362897,
0.0809836485184347,
0.08372156336827952
],
"fid": {
"25": 90.14691925048828,
"50": 55.84992599487305,
"75": 59.69078826904297,
"100": 46.24059295654297,
"125": 46.738311767578125,
"150": 48.56343078613281
},
"train_time_s": 3013.733765602112
},
"n_params": 10608451
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Some files were not shown because too many files have changed in this diff Show More