ABaCo demo: No biological labels w/ Mgnify tomatoes#

In this tutorial we demonstrate how ABaCo can be used:

  • without known biological group labels (e.g., only correct batch effect)

  • and for integrating samples from multiple studies.

Specifically, we integrate tomato rhizosphere metagenomics analyses available on MGniFy.

  • MGYS00006231, Illumina HiSeq 4000

  • MGYS00006204, Illumina HiSeq 2500

  • MGYS00006205, Illumina HiSeq 2500

Additionally we provide an intro to working with anndata

Note in this tutorial we include a dummy bio column for demo purposes, but it is not necessary to have a bio column to use abaco.


Goal:

With ABaCo the aim is to remove the technical variation between sequencing platforms.


To start we retrieve the data from MGniFy.

Downloading the data#

import requests 
from io import StringIO
import pandas as pd
import numpy as np

# urls manually retrieved from mgnify website
datasets = {
    "MGYS00006205": "https://www.ebi.ac.uk/metagenomics/api/v1/studies/MGYS00006205/pipelines/5.0/file/ERP140107_taxonomy_abundances_SSU_v5.0.tsv",
    "MGYS00006231": "https://www.ebi.ac.uk/metagenomics/api/v1/studies/MGYS00006231/pipelines/5.0/file/ERP139927_taxonomy_abundances_SSU_v5.0.tsv",
    "MGYS00006204": "https://www.ebi.ac.uk/metagenomics/api/v1/studies/MGYS00006204/pipelines/5.0/file/ERP140102_taxonomy_abundances_SSU_v5.0.tsv",
}
# init for dfs
dfs = {}
for key, url in datasets.items():
    # download
    response = requests.get(url)
    # treat as file
    file_like = StringIO(response.content.decode('utf-8'))
    # read into pd df
    dfs[key] = pd.read_csv(file_like, sep='\t')
    # rename sampleid col to taxa
    dfs[key] = dfs[key].rename(columns={"#SampleID": "taxa"})
    # set index to taxa
    dfs[key] = dfs[key].set_index('taxa')
    # drop rows with all zeros
    dfs[key] = dfs[key][dfs[key].sum(axis=1)>0]
    # sanity check
    print(dfs[key].shape)
    display(dfs[key].sample(5))
(189, 12)
(446, 114)
(188, 12)
ERZ12633510 ERZ12633501 ERZ12633502 ERZ12633503 ERZ12633504 ERZ12633505 ERZ12633506 ERZ12633507 ERZ12633517 ERZ12633508 ERZ12633518 ERZ12633509
taxa
sk__Bacteria;k__;p__Proteobacteria;c__Betaproteobacteria;o__Burkholderiales;f__Comamonadaceae 0 0 0 0 0 0 0 0 1 0 0 0
sk__Bacteria;k__;p__Actinobacteria;c__Acidimicrobiia;o__Acidimicrobiales;f__Ilumatobacteraceae;g__Ilumatobacter 1 0 0 0 0 0 0 0 0 0 0 0
sk__Bacteria;k__;p__Bacteroidetes 0 0 0 0 0 0 0 0 0 0 0 1
sk__Bacteria;k__;p__Acidobacteria;c__Vicinamibacteria;o__;f__Vicinamibacteraceae;g__Vicinamibacter 0 0 0 1 0 1 1 0 0 0 0 0
sk__Bacteria;k__;p__Proteobacteria;c__Betaproteobacteria;o__Burkholderiales;f__Oxalobacteraceae;g__Massilia 0 0 0 0 0 0 0 0 0 1 0 0
ERZ12343720 ERZ12343730 ERZ12343740 ERZ12343750 ERZ12343760 ERZ12343770 ERZ12343780 ERZ12343721 ERZ12343731 ERZ12343741 ... ERZ12590947 ERZ12593067 ERZ12590878 ERZ12590908 ERZ12590968 ERZ12590988 ERZ12590849 ERZ12590879 ERZ12590889 ERZ12590909
taxa
sk__Bacteria;k__;p__Acidobacteria 3 2 2 2 5 4 2 3 2 3 ... 1 3 1 3 2 4 2 2 3 2
sk__Bacteria;k__;p__Actinobacteria;c__Actinobacteria;o__Micrococcales;f__Cellulomonadaceae;g__Cellulomonas 1 0 0 0 0 0 0 0 0 0 ... 0 1 0 1 1 0 0 0 1 0
sk__Eukaryota;k__;p__Imbricatea;c__;o__Thaumatomonadida;f__Thaumatomastigidae 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 1 0
sk__Eukaryota;k__;p__Cercozoa;c__Thecofilosea 0 0 0 0 1 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 0
sk__Bacteria;k__;p__Actinobacteria;c__Actinobacteria;o__Micromonosporales;f__Micromonosporaceae 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 0

5 rows × 114 columns

ERZ12633490 ERZ12633491 ERZ12633492 ERZ12633493 ERZ12633494 ERZ12633495 ERZ12633496 ERZ12633497 ERZ12633488 ERZ12633498 ERZ12633489 ERZ12633499
taxa
sk__Bacteria;k__;p__Bacteroidetes;c__Cytophagia;o__Cytophagales;f__Hymenobacteraceae;g__Adhaeribacter 0 0 0 0 0 0 1 0 0 0 0 0
sk__Bacteria;k__;p__Actinobacteria;c__Actinobacteria;o__Propionibacteriales;f__Nocardioidaceae 0 0 0 0 0 1 0 0 0 0 0 0
sk__Bacteria;k__;p__Firmicutes;c__Clostridia;o__Clostridiales;f__Ruminococcaceae 0 0 0 0 0 1 0 0 0 0 0 1
sk__Bacteria;k__;p__Proteobacteria;c__Alphaproteobacteria;o__Rhodospirillales;f__;g__Reyranella 0 0 0 0 0 0 1 0 0 0 0 0
sk__Eukaryota;k__Fungi 0 0 0 0 1 1 0 0 0 0 0 0

Based on the sampled outputs printed above, w can see that the data:

  • has taxa as rows

  • the samples as columns

  • and the values are the number of taxanomic assignments for the given taxa x sample

To join them we will use a helper function abaco.utils.df_joiner().

from abaco.utils import df_joiner

joined = df_joiner(
    df_dict=dfs, 
    on="taxa",
    how="outer",
)

joined.info()
<class 'pandas.core.frame.DataFrame'>
Index: 531 entries, sk__Archaea to sk__Eukaryota;k__Viridiplantae;p__Streptophyta;c__Magnoliopsida;o__Solanales;f__Solanaceae
Columns: 138 entries, ERZ12633510 to ERZ12633499
dtypes: float64(138)
memory usage: 576.6+ KB

A brief intro to anndata#

img

For this example we will use anndata to store multiple layers of the data (e.g., raw counts, normalized, etc.) and annotate the samples and taxa with metadata. Below we prepare the annotations (i.e., obs, var).

import anndata as ad
import scanpy as sc

# preparing obs metadata
dfs_T = {}
# for each study
for key in dfs:
    # transpose
    dfs_T[key] = dfs[key].T
    # add study source column to be batch effect
    dfs_T[key]['source'] = key
    # dummy bio column, rando group assign, for checking and demo 
    dfs_T[key]['bio'] = np.random.choice(["Group1", "Group2"], size = len(dfs_T[key]))
    # drop allother cols
    dfs_T[key] = dfs_T[key][['source', 'bio']]
# now concat all study metadata 
obs = pd.concat(dfs_T.values())
print(obs.shape)
display(obs.sample(5))

# preparing var metadata (taxa levels)
# get taxa index as df and split on ';'
var = joined.reset_index()[['taxa']]
var = var['taxa'].str.split(';', expand=True)
# rename cols 
var.columns = [
    "superkingdom", "kingdom","phylum", "class", 
    "order", "family", "genus", "species"
]
print(var.shape)
display(var.sample(5))
(138, 2)
(531, 8)
taxa source bio
ERZ12343747 MGYS00006231 Group2
ERZ12343783 MGYS00006231 Group1
ERZ12590971 MGYS00006231 Group2
ERZ12343742 MGYS00006231 Group2
ERZ12633496 MGYS00006204 Group1
superkingdom kingdom phylum class order family genus species
472 sk__Eukaryota k__ p__Ciliophora c__Colpodea None None None None
85 sk__Bacteria k__ p__Actinobacteria c__Rubrobacteria None None None None
467 sk__Eukaryota k__ p__Cercozoa c__ o__Cercomonadida f__Heteromitidae None None
68 sk__Bacteria k__ p__Actinobacteria c__Actinobacteria o__Propionibacteriales f__Nocardioidaceae g__Kribbella None
132 sk__Bacteria k__ p__Bacteroidetes c__Cytophagia o__Cytophagales f__Hymenobacteraceae g__Pontibacter None

We can initiate the AnnData objct with the values (taxanomic assignment counts) and the metadata we prepped above.

# init anndata object
full = ad.AnnData(
    X=joined.T.values,
    obs=obs,
    var=var,    
)
# check it out
full
/home/docs/.asdf/installs/python/3.11.12/lib/python3.11/functools.py:909: ImplicitModificationWarning: Transforming to str index.
  return dispatch(args[0].__class__)(*args, **kw)
AnnData object with n_obs × n_vars = 138 × 531
    obs: 'source', 'bio'
    var: 'superkingdom', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', 'species'

With anndata we can also store additional layers seamlessly with the same annoations. Below we will create a layer with the NaNs filled with 0s

# layer with no na
full.layers['nona'] = np.nan_to_num(full.X, nan=0)
print(full)

# checking it out, also demoing to_df method
print("original:")
display(full.to_df().head(5))
print("no na:")
display(full.to_df(layer='nona').head(5))
AnnData object with n_obs × n_vars = 138 × 531
    obs: 'source', 'bio'
    var: 'superkingdom', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', 'species'
    layers: 'nona'
original:
no na:
0 1 2 3 4 5 6 7 8 9 ... 521 522 523 524 525 526 527 528 529 530
ERZ12633510 3.0 NaN NaN NaN 0.0 0.0 0.0 NaN 1.0 2.0 ... NaN NaN NaN NaN 1.0 NaN NaN 0.0 NaN NaN
ERZ12633501 0.0 NaN NaN NaN 0.0 0.0 0.0 NaN 0.0 2.0 ... NaN NaN NaN NaN 0.0 NaN NaN 0.0 NaN NaN
ERZ12633502 2.0 NaN NaN NaN 1.0 0.0 1.0 NaN 0.0 4.0 ... NaN NaN NaN NaN 0.0 NaN NaN 0.0 NaN NaN
ERZ12633503 3.0 NaN NaN NaN 0.0 0.0 0.0 NaN 0.0 1.0 ... NaN NaN NaN NaN 0.0 NaN NaN 0.0 NaN NaN
ERZ12633504 0.0 NaN NaN NaN 0.0 0.0 0.0 NaN 0.0 2.0 ... NaN NaN NaN NaN 0.0 NaN NaN 0.0 NaN NaN

5 rows × 531 columns

0 1 2 3 4 5 6 7 8 9 ... 521 522 523 524 525 526 527 528 529 530
ERZ12633510 3.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 2.0 ... 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
ERZ12633501 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
ERZ12633502 2.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 4.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
ERZ12633503 3.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
ERZ12633504 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0

5 rows × 531 columns

we can also add normalized and clr layers. For more details on the reasoning of these layers visit our other tutorials.

from skbio.stats.composition import clr 

full.layers['norm'] = full.layers['nona']/full.layers['nona'].sum(axis=1).reshape(-1,1)

# CLR transform normalized data, replacing zeros with smallll val to avoid log(0)
full.layers['clr'] = clr(np.where(full.layers['norm'] > 0, full.layers['norm'], 1e-10))

print(full)
AnnData object with n_obs × n_vars = 138 × 531
    obs: 'source', 'bio'
    var: 'superkingdom', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', 'species'
    layers: 'nona', 'norm', 'clr'

With anndata we can also filter the data using the annotations/metadata. Below we will keep the variables (taxa) with genus assignment. Additionally we filter out some taxa if they are missing in more than 30% of the samples.

# must have genus level
adata = full[:, ~full.var['genus'].isna()]
print(adata)

# filtering if taxa is missing (NaN) in more than 30% of samples
adata = adata[:, np.isnan(adata.X).sum(axis=0)/adata.X.shape[0] <= 0.3]
print(adata)
View of AnnData object with n_obs × n_vars = 138 × 220
    obs: 'source', 'bio'
    var: 'superkingdom', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', 'species'
    layers: 'nona', 'norm', 'clr'
View of AnnData object with n_obs × n_vars = 138 × 176
    obs: 'source', 'bio'
    var: 'superkingdom', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', 'species'
    layers: 'nona', 'norm', 'clr'

We are down to 176 taxa.

However, it can be trickier to aggregate with anndata – but we can use the scanpy toolkit to help.

Specifically we will use scanpy.get.aggregate() to help us check that the dummy biological groups we created are not different.

# agg by fake bio group 
agg_mean = sc.get.aggregate(
    # the anndata object
    adata=adata,
    # what layer to use
    layer='clr',
    # group by col
    by="bio",
    # axis that the group lives
    axis="obs",
    # how to agg
    func='mean',
)
# check out the returned AnnData objct
print(agg_mean)
# we can see taht the default layer name if not provided is the func name 
display(agg_mean.to_df('mean').head(5))
AnnData object with n_obs × n_vars = 2 × 176
    obs: 'bio'
    var: 'superkingdom', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', 'species'
    layers: 'mean'
11 12 20 21 23 26 31 32 33 37 ... 466 468 470 476 477 478 488 489 497 527
Group1 -0.240593 -2.140086 -1.585884 -2.401109 -2.401109 -1.857532 -1.051633 -1.863274 -0.767529 1.440719 ... 0.828578 -2.136064 -2.135435 -2.128388 -2.132324 -2.140086 -1.856783 -2.401109 -2.401109 -2.401109
Group2 -0.398536 -2.437143 -1.921772 -2.180840 -1.920321 -1.662350 -0.637645 -2.437143 -1.150960 0.649340 ... 1.113924 -2.187808 -2.437143 -2.437143 -2.437143 -2.437143 -2.178113 -1.924218 -2.178113 -2.179788

2 rows × 176 columns

Now lets quickly check that group 1 and 2 are not different visually and quick stats.

import plotly.graph_objects as go
from scipy import stats

# transpose for easier plotting
bio_sum = agg_mean.to_df('mean').T

# init fig
fig = go.Figure()
# add traces
fig.add_trace(go.Histogram(x=bio_sum['Group1'], name='Group1'))
fig.add_trace(go.Histogram(x=bio_sum['Group2'], name='Group2'))

# formatting
fig.update_layout(barmode='overlay')
fig.update_traces(opacity=0.75)
fig.show()

# check no diff in stats 
stats.wilcoxon(bio_sum['Group1'], bio_sum['Group2'])
WilcoxonResult(statistic=np.float64(7085.0), pvalue=np.float64(0.29900719573850565))

Prepare data for ABaCo#

Great. Now lets proceed with adata where we can easily extract a df to meet the data format required for abaco.

batch_col = 'source'
bio_col = 'bio'
id_col = 'index'

# the raw counts as df
df_taxa = adata.to_df("nona")

# appending on the categorical data of interest
df_all = pd.concat([df_taxa, adata.obs[[batch_col, bio_col]]], axis=1).reset_index()

df_all['bio'] = df_all['bio'].astype('category')
df_all['source'] = df_all['source'].astype('category')

df_all.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 138 entries, 0 to 137
Columns: 179 entries, index to bio
dtypes: category(2), float64(176), object(1)
memory usage: 191.5+ KB

pd.DataFrame Requirements for ABaCo:

The dataset contains the following making it compatible with the ABaCo framework:

id_col

batch_col

bio_col

count1

count2

A

24/07/2025

RA

#

#

B

15/06/2024

RD

#

#

C

24/07/2025

RL

#

#

  • The data has categorical columns:

    1. unique ids to identify the observations/samples e.g. sample id col

    2. ids for the batch/factor groupings to be corrected by abaco. e.g. our phony bio data

    3. biological/experimental factor variation for abaco to retain when correcting batch effect e.g., study id

  • And taxa counts to be trained on.

We can use abaco.plots.plotPCoA() to visualize any batch and biological effects based on the given categories.

from abaco.plots import plotPCoA
import plotly.io as pio
pio.renderers.default = "notebook"

plotPCoA(
    data=df_all, 
    sample_label=id_col, 
    batch_label=batch_col,  
    experiment_label=bio_col,
)
>> clustergrammer2 backend version 0.18.0
/home/docs/checkouts/readthedocs.org/user_builds/mona-abaco/envs/stable/lib/python3.11/site-packages/skbio/stats/ordination/_principal_coordinate_analysis.py:157: RuntimeWarning:

EIGH: since no value for dimensions is specified, PCoA for all dimensions will be computed, which may result in long computation time if the original distance matrix is large.
  • Batch effect (colours):

    • Different sequencing platforms which could result in a technical source of variation captured by the clustering of studies 6204 & 6205 (Illumina HiSeq 2500) vs. study 6231 (Illumina HiSeq 4000) along PCo1

  • Biological effect (shapes):

    • The groups were randomly assigned so we expect no clustering by shape as supported by the pcoa above. This behaviour should not change with abaco reconstruction.


The goal#

Here the aim of ABaCo is to:

  1. correct the batch effect (e.g., the points should no longer cluster by colour in the PCoA) while

  2. maintaining biological variance (or lack thereof).

Ideally, after using AbaCo to transform the data, the resulting PCoA coloured by batches will look like a colourful mixture of points.


Using ABaCo#

Setting up ABaCo#

We instantiate the abaco.metaABaCo() class and pass the required parameters shown in the cell below.

Usually, setup of the parameters is required, which are explained in brief in the documentation e.g. help(metaABaCo)

from abaco.ABaCo import metaABaCo
import torch

device = torch.device("cuda" if torch.cuda.is_available() else "cpu")

# Instaantiate the ABaCo model
model = metaABaCo(
    data=df_all, # Pre-processed dataframe
    n_bios=df_all[bio_col].nunique(), # Number of biological groups in the data
    bio_label=bio_col, # Column where biological groups are labeled in the dataframe
    n_batches=df_all[batch_col].nunique(), # Number of batch groups in the data
    batch_label=batch_col, # Column where batch groups are labeled in the dataframe
    n_features=df_taxa.shape[1], # Number of features (taxonomic groups)
    prior="MoG", # Prior distribution 
    device=device, # Device
    d_z=16, # default dim of latent space
    epochs = [3000, 1000, 3000], # num epochs for each training phase
    disc_net=[256, 128, 64], # stronger discriminator
    disc_act_fun=torch.nn.LeakyReLU(0.1),
)
help(metaABaCo)

Hide code cell output

Help on class metaABaCo in module abaco.ABaCo:

class metaABaCo(torch.nn.modules.module.Module)
 |  metaABaCo(data, n_bios, bio_label, n_batches, batch_label, n_features, device, prior='MoG', pdist='ZINB', d_z=16, epochs=[1000, 2000, 2000], encoder_net=[512, 256, 128], decoder_net=[128, 256, 512], vae_act_fun=ReLU(), disc_net=[128, 64], disc_act_fun=ReLU())
 |  
 |  Method resolution order:
 |      metaABaCo
 |      torch.nn.modules.module.Module
 |      builtins.object
 |  
 |  Methods defined here:
 |  
 |  __init__(self, data, n_bios, bio_label, n_batches, batch_label, n_features, device, prior='MoG', pdist='ZINB', d_z=16, epochs=[1000, 2000, 2000], encoder_net=[512, 256, 128], decoder_net=[128, 256, 512], vae_act_fun=ReLU(), disc_net=[128, 64], disc_act_fun=ReLU())
 |      Function to create the metaABaCo model.
 |      
 |      Parameters
 |      ----------
 |      data: pd.DataFrame
 |          Pre-processed DataFrame to correct. Only feature columns to correct should be of numerical data type.
 |      n_bios: int
 |          Number of labels or (potential) clusters based on biological variance. For example, if 2 experimental
 |          conditions (e.g., control and treatment) then n_bios = 2.
 |      bio_label: char
 |          Column label where biological labels are contained in data.
 |      n_batches: int
 |          Number of batches in the dataset. For example, if samples were sequenced in
 |          5 batches (e.g., 5 different dates) then batches = 5.
 |      batch_label: char
 |          Column label where batch labels are contained in data.
 |      n_features: int
 |          Number of features in the input data, columns. For example, if the input is a gene expression matrix with 1000 genes,
 |          then input_size = 1000.
 |      device: torch.device
 |          Device to run the model on, e.g., "cuda" or "cpu".
 |      prior: str
 |          Prior distribution used. Baseline is "VMM" (VampPrior Mixture Model). Options are "VMM" and
 |          "MoG" (Mixture of Gaussians).
 |      pdist: str
 |          Output distribution used. Baseline is "ZINB" (Zero-inflated Negative Binomial).
 |      d_z: int
 |          Dimensionality of the latent space. For example, if d_z = 16, then the latent space will have 16 dimensions.
 |      epochs: list
 |          Number of epochs for first, second and third phase of ABaCo. Default is [1000, 2000, 2000]
 |      encoder_net: list
 |          List of integers defining the architecture of the encoder. Each integer is a layer size.
 |          For example, [1024, 512, 256] means the encoder will have three layers with 1024, 512, and 256 neurons respectively.
 |      decoder_net: list
 |          List of integers defining the architecture of the decoder. Each integer is a layer size.
 |          For example, [256, 512, 1024] means the decoder will have three layers with 256, 512, and 1024 neurons respectively.
 |      vae_act_func: nn.Module
 |          Activation function for the VAE encoder and decoder. Default is nn.ReLU().
 |      disc_net: list
 |          List of integers defining the architecture of the discriminator. Each integer is a layer size.
 |          For example, [256, 128, 64] means the discriminator will have three layers with 256, 128, and 64 neurons respectively.
 |      disc_act_fun: nn.Module
 |          Activation function for the discriminator. Default is nn.ReLU().
 |  
 |  batch_correct(self, train_loader, vae_optimizer, disc_optimizer, adv_optimizer, w_disc=1.0, w_adv=1.0, w_elbo_nll=1.0, w_elbo_kl=1.0, w_bio_penalty=1.0, w_cluster_penalty=1.0)
 |      Train the conditional VAE model for batch correction. This is trained after VAE prior parameters are defined,
 |  
 |  batch_mask(self, train_loader, decoder_optimizer, smooth_annealing=True, cycle_reg=None, w_elbo_nll=1.0, w_cycle=0.001)
 |      Pre-trained VAE will now have frozen encoder and batch labels masked at the encoder.
 |  
 |  correct(self, seed=None, mask=True)
 |  
 |  fit(self, smooth_annealing=True, cycle_reg=None, seed=None, w_elbo_nll=1.0, w_elbo_kl=1.0, w_bio_penalty=1.0, w_cluster_penalty=1.0, w_cycle=0.001, w_disc=1.0, w_adv=1.0, phase_1_vae_lr=0.001, phase_2_vae_lr=0.001, phase_3_vae_lr=1e-06, disc_lr=0.001, adv_lr=0.001)
 |  
 |  plot_pca_posterior(self, figsize=(14, 6), palette='tab10')
 |      Get the plot of the first 2 principal components of the posterior distribution.
 |  
 |  train_vae(self, train_loader, optimizer, w_elbo_nll=1.0, w_elbo_kl=1.0, w_bio_penalty=1.0, w_cluster_penalty=1.0)
 |      Train the conditional VAE model. If clustering prior is used, penalization term is applied to increase sparsity of the clusters.
 |      
 |      Parameters:
 |          vae: [VAE]
 |              Variational Autoencoder model
 |          train_loader: [torch.utils.data.DataLoader]
 |              DataLoader for the training data
 |          optimizer: [torch.optim.Optimizer]
 |              Optimizer for training
 |          epochs: [int]
 |              Number of training epochs
 |          device: [str]
 |              Device to use for computations
 |  
 |  ----------------------------------------------------------------------
 |  Data and other attributes defined here:
 |  
 |  __annotations__ = {}
 |  
 |  ----------------------------------------------------------------------
 |  Methods inherited from torch.nn.modules.module.Module:
 |  
 |  __call__ = _wrapped_call_impl(self, *args, **kwargs)
 |  
 |  __delattr__(self, name) -> None
 |      Implement delattr(self, name).
 |  
 |  __dir__(self)
 |      Default dir() implementation.
 |  
 |  __getattr__(self, name: str) -> Union[torch.Tensor, ForwardRef('Module')]
 |      # It is crucial that the return type is not annotated as `Any`, otherwise type checking
 |      # on `torch.nn.Module` and all its subclasses is largely disabled as a result. See:
 |      # https://github.com/pytorch/pytorch/pull/115074
 |  
 |  __getstate__(self)
 |      Helper for pickle.
 |  
 |  __repr__(self) -> str
 |      Return repr(self).
 |  
 |  __setattr__(self, name: str, value: Union[torch.Tensor, ForwardRef('Module')]) -> None
 |      Implement setattr(self, name, value).
 |  
 |  __setstate__(self, state)
 |  
 |  add_module(self, name: str, module: Optional[ForwardRef('Module')]) -> None
 |      Add a child module to the current module.
 |      
 |      The module can be accessed as an attribute using the given name.
 |      
 |      Args:
 |          name (str): name of the child module. The child module can be
 |              accessed from this module using the given name
 |          module (Module): child module to be added to the module.
 |  
 |  apply(self, fn: Callable[[ForwardRef('Module')], NoneType]) -> Self
 |      Apply ``fn`` recursively to every submodule (as returned by ``.children()``) as well as self.
 |      
 |      Typical use includes initializing the parameters of a model
 |      (see also :ref:`nn-init-doc`).
 |      
 |      Args:
 |          fn (:class:`Module` -> None): function to be applied to each submodule
 |      
 |      Returns:
 |          Module: self
 |      
 |      Example::
 |      
 |          >>> @torch.no_grad()
 |          >>> def init_weights(m):
 |          >>>     print(m)
 |          >>>     if type(m) == nn.Linear:
 |          >>>         m.weight.fill_(1.0)
 |          >>>         print(m.weight)
 |          >>> net = nn.Sequential(nn.Linear(2, 2), nn.Linear(2, 2))
 |          >>> net.apply(init_weights)
 |          Linear(in_features=2, out_features=2, bias=True)
 |          Parameter containing:
 |          tensor([[1., 1.],
 |                  [1., 1.]], requires_grad=True)
 |          Linear(in_features=2, out_features=2, bias=True)
 |          Parameter containing:
 |          tensor([[1., 1.],
 |                  [1., 1.]], requires_grad=True)
 |          Sequential(
 |            (0): Linear(in_features=2, out_features=2, bias=True)
 |            (1): Linear(in_features=2, out_features=2, bias=True)
 |          )
 |  
 |  bfloat16(self) -> Self
 |      Casts all floating point parameters and buffers to ``bfloat16`` datatype.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Returns:
 |          Module: self
 |  
 |  buffers(self, recurse: bool = True) -> collections.abc.Iterator[torch.Tensor]
 |      Return an iterator over module buffers.
 |      
 |      Args:
 |          recurse (bool): if True, then yields buffers of this module
 |              and all submodules. Otherwise, yields only buffers that
 |              are direct members of this module.
 |      
 |      Yields:
 |          torch.Tensor: module buffer
 |      
 |      Example::
 |      
 |          >>> # xdoctest: +SKIP("undefined vars")
 |          >>> for buf in model.buffers():
 |          >>>     print(type(buf), buf.size())
 |          <class 'torch.Tensor'> (20L,)
 |          <class 'torch.Tensor'> (20L, 1L, 5L, 5L)
 |  
 |  children(self) -> collections.abc.Iterator['Module']
 |      Return an iterator over immediate children modules.
 |      
 |      Yields:
 |          Module: a child module
 |  
 |  compile(self, *args, **kwargs)
 |      Compile this Module's forward using :func:`torch.compile`.
 |      
 |      This Module's `__call__` method is compiled and all arguments are passed as-is
 |      to :func:`torch.compile`.
 |      
 |      See :func:`torch.compile` for details on the arguments for this function.
 |  
 |  cpu(self) -> Self
 |      Move all model parameters and buffers to the CPU.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Returns:
 |          Module: self
 |  
 |  cuda(self, device: Union[torch.device, int, NoneType] = None) -> Self
 |      Move all model parameters and buffers to the GPU.
 |      
 |      This also makes associated parameters and buffers different objects. So
 |      it should be called before constructing the optimizer if the module will
 |      live on GPU while being optimized.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Args:
 |          device (int, optional): if specified, all parameters will be
 |              copied to that device
 |      
 |      Returns:
 |          Module: self
 |  
 |  double(self) -> Self
 |      Casts all floating point parameters and buffers to ``double`` datatype.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Returns:
 |          Module: self
 |  
 |  eval(self) -> Self
 |      Set the module in evaluation mode.
 |      
 |      This has an effect only on certain modules. See the documentation of
 |      particular modules for details of their behaviors in training/evaluation
 |      mode, i.e. whether they are affected, e.g. :class:`Dropout`, :class:`BatchNorm`,
 |      etc.
 |      
 |      This is equivalent with :meth:`self.train(False) <torch.nn.Module.train>`.
 |      
 |      See :ref:`locally-disable-grad-doc` for a comparison between
 |      `.eval()` and several similar mechanisms that may be confused with it.
 |      
 |      Returns:
 |          Module: self
 |  
 |  extra_repr(self) -> str
 |      Return the extra representation of the module.
 |      
 |      To print customized extra information, you should re-implement
 |      this method in your own modules. Both single-line and multi-line
 |      strings are acceptable.
 |  
 |  float(self) -> Self
 |      Casts all floating point parameters and buffers to ``float`` datatype.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Returns:
 |          Module: self
 |  
 |  forward = _forward_unimplemented(self, *input: Any) -> None from torch.nn.modules.module
 |      Define the computation performed at every call.
 |      
 |      Should be overridden by all subclasses.
 |      
 |      .. note::
 |          Although the recipe for forward pass needs to be defined within
 |          this function, one should call the :class:`Module` instance afterwards
 |          instead of this since the former takes care of running the
 |          registered hooks while the latter silently ignores them.
 |  
 |  get_buffer(self, target: str) -> 'Tensor'
 |      Return the buffer given by ``target`` if it exists, otherwise throw an error.
 |      
 |      See the docstring for ``get_submodule`` for a more detailed
 |      explanation of this method's functionality as well as how to
 |      correctly specify ``target``.
 |      
 |      Args:
 |          target: The fully-qualified string name of the buffer
 |              to look for. (See ``get_submodule`` for how to specify a
 |              fully-qualified string.)
 |      
 |      Returns:
 |          torch.Tensor: The buffer referenced by ``target``
 |      
 |      Raises:
 |          AttributeError: If the target string references an invalid
 |              path or resolves to something that is not a
 |              buffer
 |  
 |  get_extra_state(self) -> Any
 |      Return any extra state to include in the module's state_dict.
 |      
 |      Implement this and a corresponding :func:`set_extra_state` for your module
 |      if you need to store extra state. This function is called when building the
 |      module's `state_dict()`.
 |      
 |      Note that extra state should be picklable to ensure working serialization
 |      of the state_dict. We only provide backwards compatibility guarantees
 |      for serializing Tensors; other objects may break backwards compatibility if
 |      their serialized pickled form changes.
 |      
 |      Returns:
 |          object: Any extra state to store in the module's state_dict
 |  
 |  get_parameter(self, target: str) -> 'Parameter'
 |      Return the parameter given by ``target`` if it exists, otherwise throw an error.
 |      
 |      See the docstring for ``get_submodule`` for a more detailed
 |      explanation of this method's functionality as well as how to
 |      correctly specify ``target``.
 |      
 |      Args:
 |          target: The fully-qualified string name of the Parameter
 |              to look for. (See ``get_submodule`` for how to specify a
 |              fully-qualified string.)
 |      
 |      Returns:
 |          torch.nn.Parameter: The Parameter referenced by ``target``
 |      
 |      Raises:
 |          AttributeError: If the target string references an invalid
 |              path or resolves to something that is not an
 |              ``nn.Parameter``
 |  
 |  get_submodule(self, target: str) -> 'Module'
 |      Return the submodule given by ``target`` if it exists, otherwise throw an error.
 |      
 |      For example, let's say you have an ``nn.Module`` ``A`` that
 |      looks like this:
 |      
 |      .. code-block:: text
 |      
 |          A(
 |              (net_b): Module(
 |                  (net_c): Module(
 |                      (conv): Conv2d(16, 33, kernel_size=(3, 3), stride=(2, 2))
 |                  )
 |                  (linear): Linear(in_features=100, out_features=200, bias=True)
 |              )
 |          )
 |      
 |      (The diagram shows an ``nn.Module`` ``A``. ``A`` which has a nested
 |      submodule ``net_b``, which itself has two submodules ``net_c``
 |      and ``linear``. ``net_c`` then has a submodule ``conv``.)
 |      
 |      To check whether or not we have the ``linear`` submodule, we
 |      would call ``get_submodule("net_b.linear")``. To check whether
 |      we have the ``conv`` submodule, we would call
 |      ``get_submodule("net_b.net_c.conv")``.
 |      
 |      The runtime of ``get_submodule`` is bounded by the degree
 |      of module nesting in ``target``. A query against
 |      ``named_modules`` achieves the same result, but it is O(N) in
 |      the number of transitive modules. So, for a simple check to see
 |      if some submodule exists, ``get_submodule`` should always be
 |      used.
 |      
 |      Args:
 |          target: The fully-qualified string name of the submodule
 |              to look for. (See above example for how to specify a
 |              fully-qualified string.)
 |      
 |      Returns:
 |          torch.nn.Module: The submodule referenced by ``target``
 |      
 |      Raises:
 |          AttributeError: If at any point along the path resulting from
 |              the target string the (sub)path resolves to a non-existent
 |              attribute name or an object that is not an instance of ``nn.Module``.
 |  
 |  half(self) -> Self
 |      Casts all floating point parameters and buffers to ``half`` datatype.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Returns:
 |          Module: self
 |  
 |  ipu(self, device: Union[torch.device, int, NoneType] = None) -> Self
 |      Move all model parameters and buffers to the IPU.
 |      
 |      This also makes associated parameters and buffers different objects. So
 |      it should be called before constructing the optimizer if the module will
 |      live on IPU while being optimized.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Arguments:
 |          device (int, optional): if specified, all parameters will be
 |              copied to that device
 |      
 |      Returns:
 |          Module: self
 |  
 |  load_state_dict(self, state_dict: collections.abc.Mapping[str, typing.Any], strict: bool = True, assign: bool = False)
 |      Copy parameters and buffers from :attr:`state_dict` into this module and its descendants.
 |      
 |      If :attr:`strict` is ``True``, then
 |      the keys of :attr:`state_dict` must exactly match the keys returned
 |      by this module's :meth:`~torch.nn.Module.state_dict` function.
 |      
 |      .. warning::
 |          If :attr:`assign` is ``True`` the optimizer must be created after
 |          the call to :attr:`load_state_dict` unless
 |          :func:`~torch.__future__.get_swap_module_params_on_conversion` is ``True``.
 |      
 |      Args:
 |          state_dict (dict): a dict containing parameters and
 |              persistent buffers.
 |          strict (bool, optional): whether to strictly enforce that the keys
 |              in :attr:`state_dict` match the keys returned by this module's
 |              :meth:`~torch.nn.Module.state_dict` function. Default: ``True``
 |          assign (bool, optional): When set to ``False``, the properties of the tensors
 |              in the current module are preserved whereas setting it to ``True`` preserves
 |              properties of the Tensors in the state dict. The only
 |              exception is the ``requires_grad`` field of :class:`~torch.nn.Parameter`
 |              for which the value from the module is preserved. Default: ``False``
 |      
 |      Returns:
 |          ``NamedTuple`` with ``missing_keys`` and ``unexpected_keys`` fields:
 |              * ``missing_keys`` is a list of str containing any keys that are expected
 |                  by this module but missing from the provided ``state_dict``.
 |              * ``unexpected_keys`` is a list of str containing the keys that are not
 |                  expected by this module but present in the provided ``state_dict``.
 |      
 |      Note:
 |          If a parameter or buffer is registered as ``None`` and its corresponding key
 |          exists in :attr:`state_dict`, :meth:`load_state_dict` will raise a
 |          ``RuntimeError``.
 |  
 |  modules(self) -> collections.abc.Iterator['Module']
 |      Return an iterator over all modules in the network.
 |      
 |      Yields:
 |          Module: a module in the network
 |      
 |      Note:
 |          Duplicate modules are returned only once. In the following
 |          example, ``l`` will be returned only once.
 |      
 |      Example::
 |      
 |          >>> l = nn.Linear(2, 2)
 |          >>> net = nn.Sequential(l, l)
 |          >>> for idx, m in enumerate(net.modules()):
 |          ...     print(idx, '->', m)
 |      
 |          0 -> Sequential(
 |            (0): Linear(in_features=2, out_features=2, bias=True)
 |            (1): Linear(in_features=2, out_features=2, bias=True)
 |          )
 |          1 -> Linear(in_features=2, out_features=2, bias=True)
 |  
 |  mtia(self, device: Union[torch.device, int, NoneType] = None) -> Self
 |      Move all model parameters and buffers to the MTIA.
 |      
 |      This also makes associated parameters and buffers different objects. So
 |      it should be called before constructing the optimizer if the module will
 |      live on MTIA while being optimized.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Arguments:
 |          device (int, optional): if specified, all parameters will be
 |              copied to that device
 |      
 |      Returns:
 |          Module: self
 |  
 |  named_buffers(self, prefix: str = '', recurse: bool = True, remove_duplicate: bool = True) -> collections.abc.Iterator[tuple[str, torch.Tensor]]
 |      Return an iterator over module buffers, yielding both the name of the buffer as well as the buffer itself.
 |      
 |      Args:
 |          prefix (str): prefix to prepend to all buffer names.
 |          recurse (bool, optional): if True, then yields buffers of this module
 |              and all submodules. Otherwise, yields only buffers that
 |              are direct members of this module. Defaults to True.
 |          remove_duplicate (bool, optional): whether to remove the duplicated buffers in the result. Defaults to True.
 |      
 |      Yields:
 |          (str, torch.Tensor): Tuple containing the name and buffer
 |      
 |      Example::
 |      
 |          >>> # xdoctest: +SKIP("undefined vars")
 |          >>> for name, buf in self.named_buffers():
 |          >>>     if name in ['running_var']:
 |          >>>         print(buf.size())
 |  
 |  named_children(self) -> collections.abc.Iterator[tuple[str, 'Module']]
 |      Return an iterator over immediate children modules, yielding both the name of the module as well as the module itself.
 |      
 |      Yields:
 |          (str, Module): Tuple containing a name and child module
 |      
 |      Example::
 |      
 |          >>> # xdoctest: +SKIP("undefined vars")
 |          >>> for name, module in model.named_children():
 |          >>>     if name in ['conv4', 'conv5']:
 |          >>>         print(module)
 |  
 |  named_modules(self, memo: Optional[set['Module']] = None, prefix: str = '', remove_duplicate: bool = True)
 |      Return an iterator over all modules in the network, yielding both the name of the module as well as the module itself.
 |      
 |      Args:
 |          memo: a memo to store the set of modules already added to the result
 |          prefix: a prefix that will be added to the name of the module
 |          remove_duplicate: whether to remove the duplicated module instances in the result
 |              or not
 |      
 |      Yields:
 |          (str, Module): Tuple of name and module
 |      
 |      Note:
 |          Duplicate modules are returned only once. In the following
 |          example, ``l`` will be returned only once.
 |      
 |      Example::
 |      
 |          >>> l = nn.Linear(2, 2)
 |          >>> net = nn.Sequential(l, l)
 |          >>> for idx, m in enumerate(net.named_modules()):
 |          ...     print(idx, '->', m)
 |      
 |          0 -> ('', Sequential(
 |            (0): Linear(in_features=2, out_features=2, bias=True)
 |            (1): Linear(in_features=2, out_features=2, bias=True)
 |          ))
 |          1 -> ('0', Linear(in_features=2, out_features=2, bias=True))
 |  
 |  named_parameters(self, prefix: str = '', recurse: bool = True, remove_duplicate: bool = True) -> collections.abc.Iterator[tuple[str, torch.nn.parameter.Parameter]]
 |      Return an iterator over module parameters, yielding both the name of the parameter as well as the parameter itself.
 |      
 |      Args:
 |          prefix (str): prefix to prepend to all parameter names.
 |          recurse (bool): if True, then yields parameters of this module
 |              and all submodules. Otherwise, yields only parameters that
 |              are direct members of this module.
 |          remove_duplicate (bool, optional): whether to remove the duplicated
 |              parameters in the result. Defaults to True.
 |      
 |      Yields:
 |          (str, Parameter): Tuple containing the name and parameter
 |      
 |      Example::
 |      
 |          >>> # xdoctest: +SKIP("undefined vars")
 |          >>> for name, param in self.named_parameters():
 |          >>>     if name in ['bias']:
 |          >>>         print(param.size())
 |  
 |  parameters(self, recurse: bool = True) -> collections.abc.Iterator[torch.nn.parameter.Parameter]
 |      Return an iterator over module parameters.
 |      
 |      This is typically passed to an optimizer.
 |      
 |      Args:
 |          recurse (bool): if True, then yields parameters of this module
 |              and all submodules. Otherwise, yields only parameters that
 |              are direct members of this module.
 |      
 |      Yields:
 |          Parameter: module parameter
 |      
 |      Example::
 |      
 |          >>> # xdoctest: +SKIP("undefined vars")
 |          >>> for param in model.parameters():
 |          >>>     print(type(param), param.size())
 |          <class 'torch.Tensor'> (20L,)
 |          <class 'torch.Tensor'> (20L, 1L, 5L, 5L)
 |  
 |  register_backward_hook(self, hook: Callable[[ForwardRef('Module'), Union[tuple[torch.Tensor, ...], torch.Tensor], Union[tuple[torch.Tensor, ...], torch.Tensor]], Union[NoneType, tuple[torch.Tensor, ...], torch.Tensor]]) -> torch.utils.hooks.RemovableHandle
 |      Register a backward hook on the module.
 |      
 |      This function is deprecated in favor of :meth:`~torch.nn.Module.register_full_backward_hook` and
 |      the behavior of this function will change in future versions.
 |      
 |      Returns:
 |          :class:`torch.utils.hooks.RemovableHandle`:
 |              a handle that can be used to remove the added hook by calling
 |              ``handle.remove()``
 |  
 |  register_buffer(self, name: str, tensor: Optional[torch.Tensor], persistent: bool = True) -> None
 |      Add a buffer to the module.
 |      
 |      This is typically used to register a buffer that should not be
 |      considered a model parameter. For example, BatchNorm's ``running_mean``
 |      is not a parameter, but is part of the module's state. Buffers, by
 |      default, are persistent and will be saved alongside parameters. This
 |      behavior can be changed by setting :attr:`persistent` to ``False``. The
 |      only difference between a persistent buffer and a non-persistent buffer
 |      is that the latter will not be a part of this module's
 |      :attr:`state_dict`.
 |      
 |      Buffers can be accessed as attributes using given names.
 |      
 |      Args:
 |          name (str): name of the buffer. The buffer can be accessed
 |              from this module using the given name
 |          tensor (Tensor or None): buffer to be registered. If ``None``, then operations
 |              that run on buffers, such as :attr:`cuda`, are ignored. If ``None``,
 |              the buffer is **not** included in the module's :attr:`state_dict`.
 |          persistent (bool): whether the buffer is part of this module's
 |              :attr:`state_dict`.
 |      
 |      Example::
 |      
 |          >>> # xdoctest: +SKIP("undefined vars")
 |          >>> self.register_buffer('running_mean', torch.zeros(num_features))
 |  
 |  register_forward_hook(self, hook: Union[Callable[[~T, tuple[Any, ...], Any], Optional[Any]], Callable[[~T, tuple[Any, ...], dict[str, Any], Any], Optional[Any]]], *, prepend: bool = False, with_kwargs: bool = False, always_call: bool = False) -> torch.utils.hooks.RemovableHandle
 |      Register a forward hook on the module.
 |      
 |      The hook will be called every time after :func:`forward` has computed an output.
 |      
 |      If ``with_kwargs`` is ``False`` or not specified, the input contains only
 |      the positional arguments given to the module. Keyword arguments won't be
 |      passed to the hooks and only to the ``forward``. The hook can modify the
 |      output. It can modify the input inplace but it will not have effect on
 |      forward since this is called after :func:`forward` is called. The hook
 |      should have the following signature::
 |      
 |          hook(module, args, output) -> None or modified output
 |      
 |      If ``with_kwargs`` is ``True``, the forward hook will be passed the
 |      ``kwargs`` given to the forward function and be expected to return the
 |      output possibly modified. The hook should have the following signature::
 |      
 |          hook(module, args, kwargs, output) -> None or modified output
 |      
 |      Args:
 |          hook (Callable): The user defined hook to be registered.
 |          prepend (bool): If ``True``, the provided ``hook`` will be fired
 |              before all existing ``forward`` hooks on this
 |              :class:`torch.nn.Module`. Otherwise, the provided
 |              ``hook`` will be fired after all existing ``forward`` hooks on
 |              this :class:`torch.nn.Module`. Note that global
 |              ``forward`` hooks registered with
 |              :func:`register_module_forward_hook` will fire before all hooks
 |              registered by this method.
 |              Default: ``False``
 |          with_kwargs (bool): If ``True``, the ``hook`` will be passed the
 |              kwargs given to the forward function.
 |              Default: ``False``
 |          always_call (bool): If ``True`` the ``hook`` will be run regardless of
 |              whether an exception is raised while calling the Module.
 |              Default: ``False``
 |      
 |      Returns:
 |          :class:`torch.utils.hooks.RemovableHandle`:
 |              a handle that can be used to remove the added hook by calling
 |              ``handle.remove()``
 |  
 |  register_forward_pre_hook(self, hook: Union[Callable[[~T, tuple[Any, ...]], Optional[Any]], Callable[[~T, tuple[Any, ...], dict[str, Any]], Optional[tuple[Any, dict[str, Any]]]]], *, prepend: bool = False, with_kwargs: bool = False) -> torch.utils.hooks.RemovableHandle
 |      Register a forward pre-hook on the module.
 |      
 |      The hook will be called every time before :func:`forward` is invoked.
 |      
 |      
 |      If ``with_kwargs`` is false or not specified, the input contains only
 |      the positional arguments given to the module. Keyword arguments won't be
 |      passed to the hooks and only to the ``forward``. The hook can modify the
 |      input. User can either return a tuple or a single modified value in the
 |      hook. We will wrap the value into a tuple if a single value is returned
 |      (unless that value is already a tuple). The hook should have the
 |      following signature::
 |      
 |          hook(module, args) -> None or modified input
 |      
 |      If ``with_kwargs`` is true, the forward pre-hook will be passed the
 |      kwargs given to the forward function. And if the hook modifies the
 |      input, both the args and kwargs should be returned. The hook should have
 |      the following signature::
 |      
 |          hook(module, args, kwargs) -> None or a tuple of modified input and kwargs
 |      
 |      Args:
 |          hook (Callable): The user defined hook to be registered.
 |          prepend (bool): If true, the provided ``hook`` will be fired before
 |              all existing ``forward_pre`` hooks on this
 |              :class:`torch.nn.Module`. Otherwise, the provided
 |              ``hook`` will be fired after all existing ``forward_pre`` hooks
 |              on this :class:`torch.nn.Module`. Note that global
 |              ``forward_pre`` hooks registered with
 |              :func:`register_module_forward_pre_hook` will fire before all
 |              hooks registered by this method.
 |              Default: ``False``
 |          with_kwargs (bool): If true, the ``hook`` will be passed the kwargs
 |              given to the forward function.
 |              Default: ``False``
 |      
 |      Returns:
 |          :class:`torch.utils.hooks.RemovableHandle`:
 |              a handle that can be used to remove the added hook by calling
 |              ``handle.remove()``
 |  
 |  register_full_backward_hook(self, hook: Callable[[ForwardRef('Module'), Union[tuple[torch.Tensor, ...], torch.Tensor], Union[tuple[torch.Tensor, ...], torch.Tensor]], Union[NoneType, tuple[torch.Tensor, ...], torch.Tensor]], prepend: bool = False) -> torch.utils.hooks.RemovableHandle
 |      Register a backward hook on the module.
 |      
 |      The hook will be called every time the gradients with respect to a module are computed, and its firing rules are as follows:
 |      
 |          1. Ordinarily, the hook fires when the gradients are computed with respect to the module inputs.
 |          2. If none of the module inputs require gradients, the hook will fire when the gradients are computed
 |             with respect to module outputs.
 |          3. If none of the module outputs require gradients, then the hooks will not fire.
 |      
 |      The hook should have the following signature::
 |      
 |          hook(module, grad_input, grad_output) -> tuple(Tensor) or None
 |      
 |      The :attr:`grad_input` and :attr:`grad_output` are tuples that contain the gradients
 |      with respect to the inputs and outputs respectively. The hook should
 |      not modify its arguments, but it can optionally return a new gradient with
 |      respect to the input that will be used in place of :attr:`grad_input` in
 |      subsequent computations. :attr:`grad_input` will only correspond to the inputs given
 |      as positional arguments and all kwarg arguments are ignored. Entries
 |      in :attr:`grad_input` and :attr:`grad_output` will be ``None`` for all non-Tensor
 |      arguments.
 |      
 |      For technical reasons, when this hook is applied to a Module, its forward function will
 |      receive a view of each Tensor passed to the Module. Similarly the caller will receive a view
 |      of each Tensor returned by the Module's forward function.
 |      
 |      .. warning ::
 |          Modifying inputs or outputs inplace is not allowed when using backward hooks and
 |          will raise an error.
 |      
 |      Args:
 |          hook (Callable): The user-defined hook to be registered.
 |          prepend (bool): If true, the provided ``hook`` will be fired before
 |              all existing ``backward`` hooks on this
 |              :class:`torch.nn.Module`. Otherwise, the provided
 |              ``hook`` will be fired after all existing ``backward`` hooks on
 |              this :class:`torch.nn.Module`. Note that global
 |              ``backward`` hooks registered with
 |              :func:`register_module_full_backward_hook` will fire before
 |              all hooks registered by this method.
 |      
 |      Returns:
 |          :class:`torch.utils.hooks.RemovableHandle`:
 |              a handle that can be used to remove the added hook by calling
 |              ``handle.remove()``
 |  
 |  register_full_backward_pre_hook(self, hook: Callable[[ForwardRef('Module'), Union[tuple[torch.Tensor, ...], torch.Tensor]], Union[NoneType, tuple[torch.Tensor, ...], torch.Tensor]], prepend: bool = False) -> torch.utils.hooks.RemovableHandle
 |      Register a backward pre-hook on the module.
 |      
 |      The hook will be called every time the gradients for the module are computed.
 |      The hook should have the following signature::
 |      
 |          hook(module, grad_output) -> tuple[Tensor] or None
 |      
 |      The :attr:`grad_output` is a tuple. The hook should
 |      not modify its arguments, but it can optionally return a new gradient with
 |      respect to the output that will be used in place of :attr:`grad_output` in
 |      subsequent computations. Entries in :attr:`grad_output` will be ``None`` for
 |      all non-Tensor arguments.
 |      
 |      For technical reasons, when this hook is applied to a Module, its forward function will
 |      receive a view of each Tensor passed to the Module. Similarly the caller will receive a view
 |      of each Tensor returned by the Module's forward function.
 |      
 |      .. warning ::
 |          Modifying inputs inplace is not allowed when using backward hooks and
 |          will raise an error.
 |      
 |      Args:
 |          hook (Callable): The user-defined hook to be registered.
 |          prepend (bool): If true, the provided ``hook`` will be fired before
 |              all existing ``backward_pre`` hooks on this
 |              :class:`torch.nn.Module`. Otherwise, the provided
 |              ``hook`` will be fired after all existing ``backward_pre`` hooks
 |              on this :class:`torch.nn.Module`. Note that global
 |              ``backward_pre`` hooks registered with
 |              :func:`register_module_full_backward_pre_hook` will fire before
 |              all hooks registered by this method.
 |      
 |      Returns:
 |          :class:`torch.utils.hooks.RemovableHandle`:
 |              a handle that can be used to remove the added hook by calling
 |              ``handle.remove()``
 |  
 |  register_load_state_dict_post_hook(self, hook)
 |      Register a post-hook to be run after module's :meth:`~nn.Module.load_state_dict` is called.
 |      
 |      It should have the following signature::
 |          hook(module, incompatible_keys) -> None
 |      
 |      The ``module`` argument is the current module that this hook is registered
 |      on, and the ``incompatible_keys`` argument is a ``NamedTuple`` consisting
 |      of attributes ``missing_keys`` and ``unexpected_keys``. ``missing_keys``
 |      is a ``list`` of ``str`` containing the missing keys and
 |      ``unexpected_keys`` is a ``list`` of ``str`` containing the unexpected keys.
 |      
 |      The given incompatible_keys can be modified inplace if needed.
 |      
 |      Note that the checks performed when calling :func:`load_state_dict` with
 |      ``strict=True`` are affected by modifications the hook makes to
 |      ``missing_keys`` or ``unexpected_keys``, as expected. Additions to either
 |      set of keys will result in an error being thrown when ``strict=True``, and
 |      clearing out both missing and unexpected keys will avoid an error.
 |      
 |      Returns:
 |          :class:`torch.utils.hooks.RemovableHandle`:
 |              a handle that can be used to remove the added hook by calling
 |              ``handle.remove()``
 |  
 |  register_load_state_dict_pre_hook(self, hook)
 |      Register a pre-hook to be run before module's :meth:`~nn.Module.load_state_dict` is called.
 |      
 |      It should have the following signature::
 |          hook(module, state_dict, prefix, local_metadata, strict, missing_keys, unexpected_keys, error_msgs) -> None  # noqa: B950
 |      
 |      Arguments:
 |          hook (Callable): Callable hook that will be invoked before
 |              loading the state dict.
 |  
 |  register_module(self, name: str, module: Optional[ForwardRef('Module')]) -> None
 |      Alias for :func:`add_module`.
 |  
 |  register_parameter(self, name: str, param: Optional[torch.nn.parameter.Parameter]) -> None
 |      Add a parameter to the module.
 |      
 |      The parameter can be accessed as an attribute using given name.
 |      
 |      Args:
 |          name (str): name of the parameter. The parameter can be accessed
 |              from this module using the given name
 |          param (Parameter or None): parameter to be added to the module. If
 |              ``None``, then operations that run on parameters, such as :attr:`cuda`,
 |              are ignored. If ``None``, the parameter is **not** included in the
 |              module's :attr:`state_dict`.
 |  
 |  register_state_dict_post_hook(self, hook)
 |      Register a post-hook for the :meth:`~torch.nn.Module.state_dict` method.
 |      
 |      It should have the following signature::
 |          hook(module, state_dict, prefix, local_metadata) -> None
 |      
 |      The registered hooks can modify the ``state_dict`` inplace.
 |  
 |  register_state_dict_pre_hook(self, hook)
 |      Register a pre-hook for the :meth:`~torch.nn.Module.state_dict` method.
 |      
 |      It should have the following signature::
 |          hook(module, prefix, keep_vars) -> None
 |      
 |      The registered hooks can be used to perform pre-processing before the ``state_dict``
 |      call is made.
 |  
 |  requires_grad_(self, requires_grad: bool = True) -> Self
 |      Change if autograd should record operations on parameters in this module.
 |      
 |      This method sets the parameters' :attr:`requires_grad` attributes
 |      in-place.
 |      
 |      This method is helpful for freezing part of the module for finetuning
 |      or training parts of a model individually (e.g., GAN training).
 |      
 |      See :ref:`locally-disable-grad-doc` for a comparison between
 |      `.requires_grad_()` and several similar mechanisms that may be confused with it.
 |      
 |      Args:
 |          requires_grad (bool): whether autograd should record operations on
 |                                parameters in this module. Default: ``True``.
 |      
 |      Returns:
 |          Module: self
 |  
 |  set_extra_state(self, state: Any) -> None
 |      Set extra state contained in the loaded `state_dict`.
 |      
 |      This function is called from :func:`load_state_dict` to handle any extra state
 |      found within the `state_dict`. Implement this function and a corresponding
 |      :func:`get_extra_state` for your module if you need to store extra state within its
 |      `state_dict`.
 |      
 |      Args:
 |          state (dict): Extra state from the `state_dict`
 |  
 |  set_submodule(self, target: str, module: 'Module', strict: bool = False) -> None
 |      Set the submodule given by ``target`` if it exists, otherwise throw an error.
 |      
 |      .. note::
 |          If ``strict`` is set to ``False`` (default), the method will replace an existing submodule
 |          or create a new submodule if the parent module exists. If ``strict`` is set to ``True``,
 |          the method will only attempt to replace an existing submodule and throw an error if
 |          the submodule does not exist.
 |      
 |      For example, let's say you have an ``nn.Module`` ``A`` that
 |      looks like this:
 |      
 |      .. code-block:: text
 |      
 |          A(
 |              (net_b): Module(
 |                  (net_c): Module(
 |                      (conv): Conv2d(3, 3, 3)
 |                  )
 |                  (linear): Linear(3, 3)
 |              )
 |          )
 |      
 |      (The diagram shows an ``nn.Module`` ``A``. ``A`` has a nested
 |      submodule ``net_b``, which itself has two submodules ``net_c``
 |      and ``linear``. ``net_c`` then has a submodule ``conv``.)
 |      
 |      To override the ``Conv2d`` with a new submodule ``Linear``, you
 |      could call ``set_submodule("net_b.net_c.conv", nn.Linear(1, 1))``
 |      where ``strict`` could be ``True`` or ``False``
 |      
 |      To add a new submodule ``Conv2d`` to the existing ``net_b`` module,
 |      you would call ``set_submodule("net_b.conv", nn.Conv2d(1, 1, 1))``.
 |      
 |      In the above if you set ``strict=True`` and call
 |      ``set_submodule("net_b.conv", nn.Conv2d(1, 1, 1), strict=True)``, an AttributeError
 |      will be raised because ``net_b`` does not have a submodule named ``conv``.
 |      
 |      Args:
 |          target: The fully-qualified string name of the submodule
 |              to look for. (See above example for how to specify a
 |              fully-qualified string.)
 |          module: The module to set the submodule to.
 |          strict: If ``False``, the method will replace an existing submodule
 |              or create a new submodule if the parent module exists. If ``True``,
 |              the method will only attempt to replace an existing submodule and throw an error
 |              if the submodule doesn't already exist.
 |      
 |      Raises:
 |          ValueError: If the ``target`` string is empty or if ``module`` is not an instance of ``nn.Module``.
 |          AttributeError: If at any point along the path resulting from
 |              the ``target`` string the (sub)path resolves to a non-existent
 |              attribute name or an object that is not an instance of ``nn.Module``.
 |  
 |  share_memory(self) -> Self
 |      See :meth:`torch.Tensor.share_memory_`.
 |  
 |  state_dict(self, *args, destination=None, prefix='', keep_vars=False)
 |      Return a dictionary containing references to the whole state of the module.
 |      
 |      Both parameters and persistent buffers (e.g. running averages) are
 |      included. Keys are corresponding parameter and buffer names.
 |      Parameters and buffers set to ``None`` are not included.
 |      
 |      .. note::
 |          The returned object is a shallow copy. It contains references
 |          to the module's parameters and buffers.
 |      
 |      .. warning::
 |          Currently ``state_dict()`` also accepts positional arguments for
 |          ``destination``, ``prefix`` and ``keep_vars`` in order. However,
 |          this is being deprecated and keyword arguments will be enforced in
 |          future releases.
 |      
 |      .. warning::
 |          Please avoid the use of argument ``destination`` as it is not
 |          designed for end-users.
 |      
 |      Args:
 |          destination (dict, optional): If provided, the state of module will
 |              be updated into the dict and the same object is returned.
 |              Otherwise, an ``OrderedDict`` will be created and returned.
 |              Default: ``None``.
 |          prefix (str, optional): a prefix added to parameter and buffer
 |              names to compose the keys in state_dict. Default: ``''``.
 |          keep_vars (bool, optional): by default the :class:`~torch.Tensor` s
 |              returned in the state dict are detached from autograd. If it's
 |              set to ``True``, detaching will not be performed.
 |              Default: ``False``.
 |      
 |      Returns:
 |          dict:
 |              a dictionary containing a whole state of the module
 |      
 |      Example::
 |      
 |          >>> # xdoctest: +SKIP("undefined vars")
 |          >>> module.state_dict().keys()
 |          ['bias', 'weight']
 |  
 |  to(self, *args, **kwargs)
 |      Move and/or cast the parameters and buffers.
 |      
 |      This can be called as
 |      
 |      .. function:: to(device=None, dtype=None, non_blocking=False)
 |         :noindex:
 |      
 |      .. function:: to(dtype, non_blocking=False)
 |         :noindex:
 |      
 |      .. function:: to(tensor, non_blocking=False)
 |         :noindex:
 |      
 |      .. function:: to(memory_format=torch.channels_last)
 |         :noindex:
 |      
 |      Its signature is similar to :meth:`torch.Tensor.to`, but only accepts
 |      floating point or complex :attr:`dtype`\ s. In addition, this method will
 |      only cast the floating point or complex parameters and buffers to :attr:`dtype`
 |      (if given). The integral parameters and buffers will be moved
 |      :attr:`device`, if that is given, but with dtypes unchanged. When
 |      :attr:`non_blocking` is set, it tries to convert/move asynchronously
 |      with respect to the host if possible, e.g., moving CPU Tensors with
 |      pinned memory to CUDA devices.
 |      
 |      See below for examples.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Args:
 |          device (:class:`torch.device`): the desired device of the parameters
 |              and buffers in this module
 |          dtype (:class:`torch.dtype`): the desired floating point or complex dtype of
 |              the parameters and buffers in this module
 |          tensor (torch.Tensor): Tensor whose dtype and device are the desired
 |              dtype and device for all parameters and buffers in this module
 |          memory_format (:class:`torch.memory_format`): the desired memory
 |              format for 4D parameters and buffers in this module (keyword
 |              only argument)
 |      
 |      Returns:
 |          Module: self
 |      
 |      Examples::
 |      
 |          >>> # xdoctest: +IGNORE_WANT("non-deterministic")
 |          >>> linear = nn.Linear(2, 2)
 |          >>> linear.weight
 |          Parameter containing:
 |          tensor([[ 0.1913, -0.3420],
 |                  [-0.5113, -0.2325]])
 |          >>> linear.to(torch.double)
 |          Linear(in_features=2, out_features=2, bias=True)
 |          >>> linear.weight
 |          Parameter containing:
 |          tensor([[ 0.1913, -0.3420],
 |                  [-0.5113, -0.2325]], dtype=torch.float64)
 |          >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA1)
 |          >>> gpu1 = torch.device("cuda:1")
 |          >>> linear.to(gpu1, dtype=torch.half, non_blocking=True)
 |          Linear(in_features=2, out_features=2, bias=True)
 |          >>> linear.weight
 |          Parameter containing:
 |          tensor([[ 0.1914, -0.3420],
 |                  [-0.5112, -0.2324]], dtype=torch.float16, device='cuda:1')
 |          >>> cpu = torch.device("cpu")
 |          >>> linear.to(cpu)
 |          Linear(in_features=2, out_features=2, bias=True)
 |          >>> linear.weight
 |          Parameter containing:
 |          tensor([[ 0.1914, -0.3420],
 |                  [-0.5112, -0.2324]], dtype=torch.float16)
 |      
 |          >>> linear = nn.Linear(2, 2, bias=None).to(torch.cdouble)
 |          >>> linear.weight
 |          Parameter containing:
 |          tensor([[ 0.3741+0.j,  0.2382+0.j],
 |                  [ 0.5593+0.j, -0.4443+0.j]], dtype=torch.complex128)
 |          >>> linear(torch.ones(3, 2, dtype=torch.cdouble))
 |          tensor([[0.6122+0.j, 0.1150+0.j],
 |                  [0.6122+0.j, 0.1150+0.j],
 |                  [0.6122+0.j, 0.1150+0.j]], dtype=torch.complex128)
 |  
 |  to_empty(self, *, device: Union[int, str, torch.device, NoneType], recurse: bool = True) -> Self
 |      Move the parameters and buffers to the specified device without copying storage.
 |      
 |      Args:
 |          device (:class:`torch.device`): The desired device of the parameters
 |              and buffers in this module.
 |          recurse (bool): Whether parameters and buffers of submodules should
 |              be recursively moved to the specified device.
 |      
 |      Returns:
 |          Module: self
 |  
 |  train(self, mode: bool = True) -> Self
 |      Set the module in training mode.
 |      
 |      This has an effect only on certain modules. See the documentation of
 |      particular modules for details of their behaviors in training/evaluation
 |      mode, i.e., whether they are affected, e.g. :class:`Dropout`, :class:`BatchNorm`,
 |      etc.
 |      
 |      Args:
 |          mode (bool): whether to set training mode (``True``) or evaluation
 |                       mode (``False``). Default: ``True``.
 |      
 |      Returns:
 |          Module: self
 |  
 |  type(self, dst_type: Union[torch.dtype, str]) -> Self
 |      Casts all parameters and buffers to :attr:`dst_type`.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Args:
 |          dst_type (type or string): the desired type
 |      
 |      Returns:
 |          Module: self
 |  
 |  xpu(self, device: Union[torch.device, int, NoneType] = None) -> Self
 |      Move all model parameters and buffers to the XPU.
 |      
 |      This also makes associated parameters and buffers different objects. So
 |      it should be called before constructing optimizer if the module will
 |      live on XPU while being optimized.
 |      
 |      .. note::
 |          This method modifies the module in-place.
 |      
 |      Arguments:
 |          device (int, optional): if specified, all parameters will be
 |              copied to that device
 |      
 |      Returns:
 |          Module: self
 |  
 |  zero_grad(self, set_to_none: bool = True) -> None
 |      Reset gradients of all model parameters.
 |      
 |      See similar function under :class:`torch.optim.Optimizer` for more context.
 |      
 |      Args:
 |          set_to_none (bool): instead of setting to zero, set the grads to None.
 |              See :meth:`torch.optim.Optimizer.zero_grad` for details.
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors inherited from torch.nn.modules.module.Module:
 |  
 |  __dict__
 |      dictionary for instance variables
 |  
 |  __weakref__
 |      list of weak references to the object
 |  
 |  ----------------------------------------------------------------------
 |  Data and other attributes inherited from torch.nn.modules.module.Module:
 |  
 |  T_destination = ~T_destination
 |  
 |  call_super_init = False
 |  
 |  dump_patches = False

Training the ABaCo model#

To train ABaCo on the prepared dataset, we then use method abaco.metaABaCo.fit().

# Train the model,
model.fit(
  seed=42,
  w_elbo_nll=10, # more emphasis on reconstruction
  w_bio_penalty=0.0, # disable bio supervision
  w_cluster_penalty=0.0, # light regularization or can be 0
  w_disc=1.0, # default, discriminator training strength
)

Hide code cell output

Training: VAE for learning meaningful embeddings:   0%|          | 0/3000 [00:00<?, ?it/s]
Training: VAE for learning meaningful embeddings:   0%|          | 0/3000 [00:00<?, ?it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=918.9119, epoch=0/3001, vae_loss=918.9119]
Training: VAE for learning meaningful embeddings:   0%|          | 1/3000 [00:00<01:57, 25.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=894.8184, epoch=1/3001, vae_loss=894.8184]
Training: VAE for learning meaningful embeddings:   0%|          | 2/3000 [00:00<01:23, 35.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=867.3492, epoch=2/3001, vae_loss=867.3492]
Training: VAE for learning meaningful embeddings:   0%|          | 3/3000 [00:00<01:11, 41.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=832.3920, epoch=3/3001, vae_loss=832.3920]
Training: VAE for learning meaningful embeddings:   0%|          | 4/3000 [00:00<01:06, 45.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=782.3972, epoch=4/3001, vae_loss=782.3972]
Training: VAE for learning meaningful embeddings:   0%|          | 5/3000 [00:00<01:03, 47.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=732.9723, epoch=5/3001, vae_loss=732.9723]
Training: VAE for learning meaningful embeddings:   0%|          | 6/3000 [00:00<00:53, 56.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=732.9723, epoch=5/3001, vae_loss=732.9723]
Training: VAE for learning meaningful embeddings:   0%|          | 6/3000 [00:00<00:53, 56.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=691.3864, epoch=6/3001, vae_loss=691.3864]
Training: VAE for learning meaningful embeddings:   0%|          | 7/3000 [00:00<00:53, 56.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=693.9954, epoch=7/3001, vae_loss=693.9954]
Training: VAE for learning meaningful embeddings:   0%|          | 8/3000 [00:00<00:53, 56.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=682.7816, epoch=8/3001, vae_loss=682.7816]
Training: VAE for learning meaningful embeddings:   0%|          | 9/3000 [00:00<00:53, 56.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=669.4434, epoch=9/3001, vae_loss=669.4434]
Training: VAE for learning meaningful embeddings:   0%|          | 10/3000 [00:00<00:53, 56.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=645.7401, epoch=10/3001, vae_loss=645.7401]
Training: VAE for learning meaningful embeddings:   0%|          | 11/3000 [00:00<00:53, 56.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=638.6320, epoch=11/3001, vae_loss=638.6320]
Training: VAE for learning meaningful embeddings:   0%|          | 12/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=638.6320, epoch=11/3001, vae_loss=638.6320]
Training: VAE for learning meaningful embeddings:   0%|          | 12/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=636.9016, epoch=12/3001, vae_loss=636.9016]
Training: VAE for learning meaningful embeddings:   0%|          | 13/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=636.9546, epoch=13/3001, vae_loss=636.9546]
Training: VAE for learning meaningful embeddings:   0%|          | 14/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=639.1094, epoch=14/3001, vae_loss=639.1094]
Training: VAE for learning meaningful embeddings:   0%|          | 15/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=638.0964, epoch=15/3001, vae_loss=638.0964]
Training: VAE for learning meaningful embeddings:   1%|          | 16/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=635.6674, epoch=16/3001, vae_loss=635.6674]
Training: VAE for learning meaningful embeddings:   1%|          | 17/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=633.8750, epoch=17/3001, vae_loss=633.8750]
Training: VAE for learning meaningful embeddings:   1%|          | 18/3000 [00:00<00:51, 58.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=629.6696, epoch=18/3001, vae_loss=629.6696]
Training: VAE for learning meaningful embeddings:   1%|          | 19/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=629.6696, epoch=18/3001, vae_loss=629.6696]
Training: VAE for learning meaningful embeddings:   1%|          | 19/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=627.4567, epoch=19/3001, vae_loss=627.4567]
Training: VAE for learning meaningful embeddings:   1%|          | 20/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=622.4626, epoch=20/3001, vae_loss=622.4626]
Training: VAE for learning meaningful embeddings:   1%|          | 21/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=622.8429, epoch=21/3001, vae_loss=622.8429]
Training: VAE for learning meaningful embeddings:   1%|          | 22/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=621.3018, epoch=22/3001, vae_loss=621.3018]
Training: VAE for learning meaningful embeddings:   1%|          | 23/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=620.8085, epoch=23/3001, vae_loss=620.8085]
Training: VAE for learning meaningful embeddings:   1%|          | 24/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=617.2312, epoch=24/3001, vae_loss=617.2312]
Training: VAE for learning meaningful embeddings:   1%|          | 25/3000 [00:00<00:49, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=616.8054, epoch=25/3001, vae_loss=616.8054]
Training: VAE for learning meaningful embeddings:   1%|          | 26/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=616.8054, epoch=25/3001, vae_loss=616.8054]
Training: VAE for learning meaningful embeddings:   1%|          | 26/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=614.3492, epoch=26/3001, vae_loss=614.3492]
Training: VAE for learning meaningful embeddings:   1%|          | 27/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=610.9437, epoch=27/3001, vae_loss=610.9437]
Training: VAE for learning meaningful embeddings:   1%|          | 28/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=610.1854, epoch=28/3001, vae_loss=610.1854]
Training: VAE for learning meaningful embeddings:   1%|          | 29/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=608.5901, epoch=29/3001, vae_loss=608.5901]
Training: VAE for learning meaningful embeddings:   1%|          | 30/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=607.0811, epoch=30/3001, vae_loss=607.0811]
Training: VAE for learning meaningful embeddings:   1%|          | 31/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=605.7859, epoch=31/3001, vae_loss=605.7859]
Training: VAE for learning meaningful embeddings:   1%|          | 32/3000 [00:00<00:49, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=604.6293, epoch=32/3001, vae_loss=604.6293]
Training: VAE for learning meaningful embeddings:   1%|          | 33/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=604.6293, epoch=32/3001, vae_loss=604.6293]
Training: VAE for learning meaningful embeddings:   1%|          | 33/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=604.0841, epoch=33/3001, vae_loss=604.0841]
Training: VAE for learning meaningful embeddings:   1%|          | 34/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=602.4225, epoch=34/3001, vae_loss=602.4225]
Training: VAE for learning meaningful embeddings:   1%|          | 35/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=601.9346, epoch=35/3001, vae_loss=601.9346]
Training: VAE for learning meaningful embeddings:   1%|          | 36/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=600.8361, epoch=36/3001, vae_loss=600.8361]
Training: VAE for learning meaningful embeddings:   1%|          | 37/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=599.7629, epoch=37/3001, vae_loss=599.7629]
Training: VAE for learning meaningful embeddings:   1%|▏         | 38/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=599.5275, epoch=38/3001, vae_loss=599.5275]
Training: VAE for learning meaningful embeddings:   1%|▏         | 39/3000 [00:00<00:49, 60.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=597.0433, epoch=39/3001, vae_loss=597.0433]
Training: VAE for learning meaningful embeddings:   1%|▏         | 40/3000 [00:00<00:49, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=597.0433, epoch=39/3001, vae_loss=597.0433]
Training: VAE for learning meaningful embeddings:   1%|▏         | 40/3000 [00:00<00:49, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=595.4258, epoch=40/3001, vae_loss=595.4258]
Training: VAE for learning meaningful embeddings:   1%|▏         | 41/3000 [00:00<00:49, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=594.1569, epoch=41/3001, vae_loss=594.1569]
Training: VAE for learning meaningful embeddings:   1%|▏         | 42/3000 [00:00<00:49, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=593.5142, epoch=42/3001, vae_loss=593.5142]
Training: VAE for learning meaningful embeddings:   1%|▏         | 43/3000 [00:00<00:49, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=590.8879, epoch=43/3001, vae_loss=590.8879]
Training: VAE for learning meaningful embeddings:   1%|▏         | 44/3000 [00:00<00:49, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=589.7823, epoch=44/3001, vae_loss=589.7823]
Training: VAE for learning meaningful embeddings:   2%|▏         | 45/3000 [00:00<00:49, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=588.3401, epoch=45/3001, vae_loss=588.3401]
Training: VAE for learning meaningful embeddings:   2%|▏         | 46/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=588.3401, epoch=45/3001, vae_loss=588.3401]
Training: VAE for learning meaningful embeddings:   2%|▏         | 46/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=585.7177, epoch=46/3001, vae_loss=585.7177]
Training: VAE for learning meaningful embeddings:   2%|▏         | 47/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=584.7783, epoch=47/3001, vae_loss=584.7783]
Training: VAE for learning meaningful embeddings:   2%|▏         | 48/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=582.4249, epoch=48/3001, vae_loss=582.4249]
Training: VAE for learning meaningful embeddings:   2%|▏         | 49/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=580.9417, epoch=49/3001, vae_loss=580.9417]
Training: VAE for learning meaningful embeddings:   2%|▏         | 50/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=579.3416, epoch=50/3001, vae_loss=579.3416]
Training: VAE for learning meaningful embeddings:   2%|▏         | 51/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=575.6123, epoch=51/3001, vae_loss=575.6123]
Training: VAE for learning meaningful embeddings:   2%|▏         | 52/3000 [00:00<00:49, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=574.9401, epoch=52/3001, vae_loss=574.9401]
Training: VAE for learning meaningful embeddings:   2%|▏         | 53/3000 [00:00<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=574.9401, epoch=52/3001, vae_loss=574.9401]
Training: VAE for learning meaningful embeddings:   2%|▏         | 53/3000 [00:00<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=572.8786, epoch=53/3001, vae_loss=572.8786]
Training: VAE for learning meaningful embeddings:   2%|▏         | 54/3000 [00:00<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=569.2222, epoch=54/3001, vae_loss=569.2222]
Training: VAE for learning meaningful embeddings:   2%|▏         | 55/3000 [00:00<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=566.7844, epoch=55/3001, vae_loss=566.7844]
Training: VAE for learning meaningful embeddings:   2%|▏         | 56/3000 [00:00<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=564.7992, epoch=56/3001, vae_loss=564.7992]
Training: VAE for learning meaningful embeddings:   2%|▏         | 57/3000 [00:00<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=561.5648, epoch=57/3001, vae_loss=561.5648]
Training: VAE for learning meaningful embeddings:   2%|▏         | 58/3000 [00:00<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=560.5914, epoch=58/3001, vae_loss=560.5914]
Training: VAE for learning meaningful embeddings:   2%|▏         | 59/3000 [00:01<00:49, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=558.1286, epoch=59/3001, vae_loss=558.1286]
Training: VAE for learning meaningful embeddings:   2%|▏         | 60/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=558.1286, epoch=59/3001, vae_loss=558.1286]
Training: VAE for learning meaningful embeddings:   2%|▏         | 60/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=557.7374, epoch=60/3001, vae_loss=557.7374]
Training: VAE for learning meaningful embeddings:   2%|▏         | 61/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=556.5650, epoch=61/3001, vae_loss=556.5650]
Training: VAE for learning meaningful embeddings:   2%|▏         | 62/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=555.2563, epoch=62/3001, vae_loss=555.2563]
Training: VAE for learning meaningful embeddings:   2%|▏         | 63/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=553.8992, epoch=63/3001, vae_loss=553.8992]
Training: VAE for learning meaningful embeddings:   2%|▏         | 64/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=554.8588, epoch=64/3001, vae_loss=554.8588]
Training: VAE for learning meaningful embeddings:   2%|▏         | 65/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=549.7709, epoch=65/3001, vae_loss=549.7709]
Training: VAE for learning meaningful embeddings:   2%|▏         | 66/3000 [00:01<00:48, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=551.1070, epoch=66/3001, vae_loss=551.1070]
Training: VAE for learning meaningful embeddings:   2%|▏         | 67/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=551.1070, epoch=66/3001, vae_loss=551.1070]
Training: VAE for learning meaningful embeddings:   2%|▏         | 67/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=549.5630, epoch=67/3001, vae_loss=549.5630]
Training: VAE for learning meaningful embeddings:   2%|▏         | 68/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=547.4845, epoch=68/3001, vae_loss=547.4845]
Training: VAE for learning meaningful embeddings:   2%|▏         | 69/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=546.6841, epoch=69/3001, vae_loss=546.6841]
Training: VAE for learning meaningful embeddings:   2%|▏         | 70/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=544.9457, epoch=70/3001, vae_loss=544.9457]
Training: VAE for learning meaningful embeddings:   2%|▏         | 71/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=546.4123, epoch=71/3001, vae_loss=546.4123]
Training: VAE for learning meaningful embeddings:   2%|▏         | 72/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=544.0052, epoch=72/3001, vae_loss=544.0052]
Training: VAE for learning meaningful embeddings:   2%|▏         | 73/3000 [00:01<00:48, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=544.2761, epoch=73/3001, vae_loss=544.2761]
Training: VAE for learning meaningful embeddings:   2%|▏         | 74/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=544.2761, epoch=73/3001, vae_loss=544.2761]
Training: VAE for learning meaningful embeddings:   2%|▏         | 74/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=543.6945, epoch=74/3001, vae_loss=543.6945]
Training: VAE for learning meaningful embeddings:   2%|▎         | 75/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=541.4831, epoch=75/3001, vae_loss=541.4831]
Training: VAE for learning meaningful embeddings:   3%|▎         | 76/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=541.5951, epoch=76/3001, vae_loss=541.5951]
Training: VAE for learning meaningful embeddings:   3%|▎         | 77/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=541.1836, epoch=77/3001, vae_loss=541.1836]
Training: VAE for learning meaningful embeddings:   3%|▎         | 78/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=541.0220, epoch=78/3001, vae_loss=541.0220]
Training: VAE for learning meaningful embeddings:   3%|▎         | 79/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=539.6613, epoch=79/3001, vae_loss=539.6613]
Training: VAE for learning meaningful embeddings:   3%|▎         | 80/3000 [00:01<00:48, 60.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=539.2209, epoch=80/3001, vae_loss=539.2209]
Training: VAE for learning meaningful embeddings:   3%|▎         | 81/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=539.2209, epoch=80/3001, vae_loss=539.2209]
Training: VAE for learning meaningful embeddings:   3%|▎         | 81/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=539.2177, epoch=81/3001, vae_loss=539.2177]
Training: VAE for learning meaningful embeddings:   3%|▎         | 82/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=537.0812, epoch=82/3001, vae_loss=537.0812]
Training: VAE for learning meaningful embeddings:   3%|▎         | 83/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=536.4221, epoch=83/3001, vae_loss=536.4221]
Training: VAE for learning meaningful embeddings:   3%|▎         | 84/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=535.6172, epoch=84/3001, vae_loss=535.6172]
Training: VAE for learning meaningful embeddings:   3%|▎         | 85/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=535.7534, epoch=85/3001, vae_loss=535.7534]
Training: VAE for learning meaningful embeddings:   3%|▎         | 86/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=536.9967, epoch=86/3001, vae_loss=536.9967]
Training: VAE for learning meaningful embeddings:   3%|▎         | 87/3000 [00:01<00:47, 61.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=534.2714, epoch=87/3001, vae_loss=534.2714]
Training: VAE for learning meaningful embeddings:   3%|▎         | 88/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=534.2714, epoch=87/3001, vae_loss=534.2714]
Training: VAE for learning meaningful embeddings:   3%|▎         | 88/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=533.8265, epoch=88/3001, vae_loss=533.8265]
Training: VAE for learning meaningful embeddings:   3%|▎         | 89/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=533.4528, epoch=89/3001, vae_loss=533.4528]
Training: VAE for learning meaningful embeddings:   3%|▎         | 90/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=532.3148, epoch=90/3001, vae_loss=532.3148]
Training: VAE for learning meaningful embeddings:   3%|▎         | 91/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=531.8831, epoch=91/3001, vae_loss=531.8831]
Training: VAE for learning meaningful embeddings:   3%|▎         | 92/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=530.1837, epoch=92/3001, vae_loss=530.1837]
Training: VAE for learning meaningful embeddings:   3%|▎         | 93/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=530.2667, epoch=93/3001, vae_loss=530.2667]
Training: VAE for learning meaningful embeddings:   3%|▎         | 94/3000 [00:01<00:47, 61.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=529.8094, epoch=94/3001, vae_loss=529.8094]
Training: VAE for learning meaningful embeddings:   3%|▎         | 95/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=529.8094, epoch=94/3001, vae_loss=529.8094]
Training: VAE for learning meaningful embeddings:   3%|▎         | 95/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=529.6590, epoch=95/3001, vae_loss=529.6590]
Training: VAE for learning meaningful embeddings:   3%|▎         | 96/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=528.1101, epoch=96/3001, vae_loss=528.1101]
Training: VAE for learning meaningful embeddings:   3%|▎         | 97/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=527.3344, epoch=97/3001, vae_loss=527.3344]
Training: VAE for learning meaningful embeddings:   3%|▎         | 98/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=527.1116, epoch=98/3001, vae_loss=527.1116]
Training: VAE for learning meaningful embeddings:   3%|▎         | 99/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=526.2188, epoch=99/3001, vae_loss=526.2188]
Training: VAE for learning meaningful embeddings:   3%|▎         | 100/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=525.7128, epoch=100/3001, vae_loss=525.7128]
Training: VAE for learning meaningful embeddings:   3%|▎         | 101/3000 [00:01<00:47, 61.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=525.6895, epoch=101/3001, vae_loss=525.6895]
Training: VAE for learning meaningful embeddings:   3%|▎         | 102/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=525.6895, epoch=101/3001, vae_loss=525.6895]
Training: VAE for learning meaningful embeddings:   3%|▎         | 102/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=524.1963, epoch=102/3001, vae_loss=524.1963]
Training: VAE for learning meaningful embeddings:   3%|▎         | 103/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=523.5730, epoch=103/3001, vae_loss=523.5730]
Training: VAE for learning meaningful embeddings:   3%|▎         | 104/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=523.4762, epoch=104/3001, vae_loss=523.4762]
Training: VAE for learning meaningful embeddings:   4%|▎         | 105/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=522.6941, epoch=105/3001, vae_loss=522.6941]
Training: VAE for learning meaningful embeddings:   4%|▎         | 106/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=523.6064, epoch=106/3001, vae_loss=523.6064]
Training: VAE for learning meaningful embeddings:   4%|▎         | 107/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=522.7230, epoch=107/3001, vae_loss=522.7230]
Training: VAE for learning meaningful embeddings:   4%|▎         | 108/3000 [00:01<00:47, 60.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=521.6865, epoch=108/3001, vae_loss=521.6865]
Training: VAE for learning meaningful embeddings:   4%|▎         | 109/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=521.6865, epoch=108/3001, vae_loss=521.6865]
Training: VAE for learning meaningful embeddings:   4%|▎         | 109/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=520.5925, epoch=109/3001, vae_loss=520.5925]
Training: VAE for learning meaningful embeddings:   4%|▎         | 110/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=519.9964, epoch=110/3001, vae_loss=519.9964]
Training: VAE for learning meaningful embeddings:   4%|▎         | 111/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=519.6995, epoch=111/3001, vae_loss=519.6995]
Training: VAE for learning meaningful embeddings:   4%|▎         | 112/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=518.5430, epoch=112/3001, vae_loss=518.5430]
Training: VAE for learning meaningful embeddings:   4%|▍         | 113/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=520.3011, epoch=113/3001, vae_loss=520.3011]
Training: VAE for learning meaningful embeddings:   4%|▍         | 114/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=519.7534, epoch=114/3001, vae_loss=519.7534]
Training: VAE for learning meaningful embeddings:   4%|▍         | 115/3000 [00:01<00:47, 60.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=518.4705, epoch=115/3001, vae_loss=518.4705]
Training: VAE for learning meaningful embeddings:   4%|▍         | 116/3000 [00:01<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=518.4705, epoch=115/3001, vae_loss=518.4705]
Training: VAE for learning meaningful embeddings:   4%|▍         | 116/3000 [00:01<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=517.4904, epoch=116/3001, vae_loss=517.4904]
Training: VAE for learning meaningful embeddings:   4%|▍         | 117/3000 [00:01<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=516.4748, epoch=117/3001, vae_loss=516.4748]
Training: VAE for learning meaningful embeddings:   4%|▍         | 118/3000 [00:01<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=517.2795, epoch=118/3001, vae_loss=517.2795]
Training: VAE for learning meaningful embeddings:   4%|▍         | 119/3000 [00:01<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=517.5200, epoch=119/3001, vae_loss=517.5200]
Training: VAE for learning meaningful embeddings:   4%|▍         | 120/3000 [00:02<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=516.6118, epoch=120/3001, vae_loss=516.6118]
Training: VAE for learning meaningful embeddings:   4%|▍         | 121/3000 [00:02<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=515.6205, epoch=121/3001, vae_loss=515.6205]
Training: VAE for learning meaningful embeddings:   4%|▍         | 122/3000 [00:02<00:47, 61.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=519.3757, epoch=122/3001, vae_loss=519.3757]
Training: VAE for learning meaningful embeddings:   4%|▍         | 123/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=519.3757, epoch=122/3001, vae_loss=519.3757]
Training: VAE for learning meaningful embeddings:   4%|▍         | 123/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=514.0705, epoch=123/3001, vae_loss=514.0705]
Training: VAE for learning meaningful embeddings:   4%|▍         | 124/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=516.0278, epoch=124/3001, vae_loss=516.0278]
Training: VAE for learning meaningful embeddings:   4%|▍         | 125/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=513.8423, epoch=125/3001, vae_loss=513.8423]
Training: VAE for learning meaningful embeddings:   4%|▍         | 126/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=514.3844, epoch=126/3001, vae_loss=514.3844]
Training: VAE for learning meaningful embeddings:   4%|▍         | 127/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=513.2563, epoch=127/3001, vae_loss=513.2563]
Training: VAE for learning meaningful embeddings:   4%|▍         | 128/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=512.7279, epoch=128/3001, vae_loss=512.7279]
Training: VAE for learning meaningful embeddings:   4%|▍         | 129/3000 [00:02<00:46, 61.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=513.1276, epoch=129/3001, vae_loss=513.1276]
Training: VAE for learning meaningful embeddings:   4%|▍         | 130/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=513.1276, epoch=129/3001, vae_loss=513.1276]
Training: VAE for learning meaningful embeddings:   4%|▍         | 130/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=511.9173, epoch=130/3001, vae_loss=511.9173]
Training: VAE for learning meaningful embeddings:   4%|▍         | 131/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=511.5288, epoch=131/3001, vae_loss=511.5288]
Training: VAE for learning meaningful embeddings:   4%|▍         | 132/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=511.8548, epoch=132/3001, vae_loss=511.8548]
Training: VAE for learning meaningful embeddings:   4%|▍         | 133/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=510.4281, epoch=133/3001, vae_loss=510.4281]
Training: VAE for learning meaningful embeddings:   4%|▍         | 134/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=511.7213, epoch=134/3001, vae_loss=511.7213]
Training: VAE for learning meaningful embeddings:   4%|▍         | 135/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=509.1677, epoch=135/3001, vae_loss=509.1677]
Training: VAE for learning meaningful embeddings:   5%|▍         | 136/3000 [00:02<00:46, 61.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=510.5731, epoch=136/3001, vae_loss=510.5731]
Training: VAE for learning meaningful embeddings:   5%|▍         | 137/3000 [00:02<00:47, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=510.5731, epoch=136/3001, vae_loss=510.5731]
Training: VAE for learning meaningful embeddings:   5%|▍         | 137/3000 [00:02<00:47, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=507.2650, epoch=137/3001, vae_loss=507.2650]
Training: VAE for learning meaningful embeddings:   5%|▍         | 138/3000 [00:02<00:46, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=508.9597, epoch=138/3001, vae_loss=508.9597]
Training: VAE for learning meaningful embeddings:   5%|▍         | 139/3000 [00:02<00:46, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=507.9370, epoch=139/3001, vae_loss=507.9370]
Training: VAE for learning meaningful embeddings:   5%|▍         | 140/3000 [00:02<00:46, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=506.6524, epoch=140/3001, vae_loss=506.6524]
Training: VAE for learning meaningful embeddings:   5%|▍         | 141/3000 [00:02<00:46, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=507.2030, epoch=141/3001, vae_loss=507.2030]
Training: VAE for learning meaningful embeddings:   5%|▍         | 142/3000 [00:02<00:46, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=504.9174, epoch=142/3001, vae_loss=504.9174]
Training: VAE for learning meaningful embeddings:   5%|▍         | 143/3000 [00:02<00:46, 60.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=507.3676, epoch=143/3001, vae_loss=507.3676]
Training: VAE for learning meaningful embeddings:   5%|▍         | 144/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=507.3676, epoch=143/3001, vae_loss=507.3676]
Training: VAE for learning meaningful embeddings:   5%|▍         | 144/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=505.5034, epoch=144/3001, vae_loss=505.5034]
Training: VAE for learning meaningful embeddings:   5%|▍         | 145/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=504.1598, epoch=145/3001, vae_loss=504.1598]
Training: VAE for learning meaningful embeddings:   5%|▍         | 146/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=504.3055, epoch=146/3001, vae_loss=504.3055]
Training: VAE for learning meaningful embeddings:   5%|▍         | 147/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=503.8647, epoch=147/3001, vae_loss=503.8647]
Training: VAE for learning meaningful embeddings:   5%|▍         | 148/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=502.4794, epoch=148/3001, vae_loss=502.4794]
Training: VAE for learning meaningful embeddings:   5%|▍         | 149/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=502.3091, epoch=149/3001, vae_loss=502.3091]
Training: VAE for learning meaningful embeddings:   5%|▌         | 150/3000 [00:02<00:47, 60.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=501.7877, epoch=150/3001, vae_loss=501.7877]
Training: VAE for learning meaningful embeddings:   5%|▌         | 151/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=501.7877, epoch=150/3001, vae_loss=501.7877]
Training: VAE for learning meaningful embeddings:   5%|▌         | 151/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=502.0220, epoch=151/3001, vae_loss=502.0220]
Training: VAE for learning meaningful embeddings:   5%|▌         | 152/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=501.5876, epoch=152/3001, vae_loss=501.5876]
Training: VAE for learning meaningful embeddings:   5%|▌         | 153/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=501.4606, epoch=153/3001, vae_loss=501.4606]
Training: VAE for learning meaningful embeddings:   5%|▌         | 154/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=499.9347, epoch=154/3001, vae_loss=499.9347]
Training: VAE for learning meaningful embeddings:   5%|▌         | 155/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=501.3042, epoch=155/3001, vae_loss=501.3042]
Training: VAE for learning meaningful embeddings:   5%|▌         | 156/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=499.5121, epoch=156/3001, vae_loss=499.5121]
Training: VAE for learning meaningful embeddings:   5%|▌         | 157/3000 [00:02<00:47, 60.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=499.6096, epoch=157/3001, vae_loss=499.6096]
Training: VAE for learning meaningful embeddings:   5%|▌         | 158/3000 [00:02<00:48, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=499.6096, epoch=157/3001, vae_loss=499.6096]
Training: VAE for learning meaningful embeddings:   5%|▌         | 158/3000 [00:02<00:48, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=498.2206, epoch=158/3001, vae_loss=498.2206]
Training: VAE for learning meaningful embeddings:   5%|▌         | 159/3000 [00:02<00:48, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=498.3348, epoch=159/3001, vae_loss=498.3348]
Training: VAE for learning meaningful embeddings:   5%|▌         | 160/3000 [00:02<00:48, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=498.2260, epoch=160/3001, vae_loss=498.2260]
Training: VAE for learning meaningful embeddings:   5%|▌         | 161/3000 [00:02<00:48, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=500.5678, epoch=161/3001, vae_loss=500.5678]
Training: VAE for learning meaningful embeddings:   5%|▌         | 162/3000 [00:02<00:48, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=496.5559, epoch=162/3001, vae_loss=496.5559]
Training: VAE for learning meaningful embeddings:   5%|▌         | 163/3000 [00:02<00:48, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=494.6335, epoch=163/3001, vae_loss=494.6335]
Training: VAE for learning meaningful embeddings:   5%|▌         | 164/3000 [00:02<00:48, 58.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=494.6335, epoch=163/3001, vae_loss=494.6335]
Training: VAE for learning meaningful embeddings:   5%|▌         | 164/3000 [00:02<00:48, 58.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=495.8412, epoch=164/3001, vae_loss=495.8412]
Training: VAE for learning meaningful embeddings:   6%|▌         | 165/3000 [00:02<00:48, 58.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=494.5543, epoch=165/3001, vae_loss=494.5543]
Training: VAE for learning meaningful embeddings:   6%|▌         | 166/3000 [00:02<00:48, 58.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=494.7027, epoch=166/3001, vae_loss=494.7027]
Training: VAE for learning meaningful embeddings:   6%|▌         | 167/3000 [00:02<00:48, 58.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=493.9301, epoch=167/3001, vae_loss=493.9301]
Training: VAE for learning meaningful embeddings:   6%|▌         | 168/3000 [00:02<00:48, 58.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=493.2139, epoch=168/3001, vae_loss=493.2139]
Training: VAE for learning meaningful embeddings:   6%|▌         | 169/3000 [00:02<00:48, 58.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=492.8141, epoch=169/3001, vae_loss=492.8141]
Training: VAE for learning meaningful embeddings:   6%|▌         | 170/3000 [00:02<00:48, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=492.8141, epoch=169/3001, vae_loss=492.8141]
Training: VAE for learning meaningful embeddings:   6%|▌         | 170/3000 [00:02<00:48, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=491.9000, epoch=170/3001, vae_loss=491.9000]
Training: VAE for learning meaningful embeddings:   6%|▌         | 171/3000 [00:02<00:48, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=491.9485, epoch=171/3001, vae_loss=491.9485]
Training: VAE for learning meaningful embeddings:   6%|▌         | 172/3000 [00:02<00:48, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=492.0483, epoch=172/3001, vae_loss=492.0483]
Training: VAE for learning meaningful embeddings:   6%|▌         | 173/3000 [00:02<00:48, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=491.3182, epoch=173/3001, vae_loss=491.3182]
Training: VAE for learning meaningful embeddings:   6%|▌         | 174/3000 [00:02<00:48, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=490.2437, epoch=174/3001, vae_loss=490.2437]
Training: VAE for learning meaningful embeddings:   6%|▌         | 175/3000 [00:02<00:48, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=490.9566, epoch=175/3001, vae_loss=490.9566]
Training: VAE for learning meaningful embeddings:   6%|▌         | 176/3000 [00:02<00:47, 59.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=490.9566, epoch=175/3001, vae_loss=490.9566]
Training: VAE for learning meaningful embeddings:   6%|▌         | 176/3000 [00:02<00:47, 59.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=488.8441, epoch=176/3001, vae_loss=488.8441]
Training: VAE for learning meaningful embeddings:   6%|▌         | 177/3000 [00:02<00:47, 59.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=489.2007, epoch=177/3001, vae_loss=489.2007]
Training: VAE for learning meaningful embeddings:   6%|▌         | 178/3000 [00:02<00:47, 59.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=490.4838, epoch=178/3001, vae_loss=490.4838]
Training: VAE for learning meaningful embeddings:   6%|▌         | 179/3000 [00:02<00:47, 59.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=487.5392, epoch=179/3001, vae_loss=487.5392]
Training: VAE for learning meaningful embeddings:   6%|▌         | 180/3000 [00:03<00:47, 59.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=488.4474, epoch=180/3001, vae_loss=488.4474]
Training: VAE for learning meaningful embeddings:   6%|▌         | 181/3000 [00:03<00:47, 59.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=485.6237, epoch=181/3001, vae_loss=485.6237]
Training: VAE for learning meaningful embeddings:   6%|▌         | 182/3000 [00:03<00:47, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=485.6237, epoch=181/3001, vae_loss=485.6237]
Training: VAE for learning meaningful embeddings:   6%|▌         | 182/3000 [00:03<00:47, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=486.2426, epoch=182/3001, vae_loss=486.2426]
Training: VAE for learning meaningful embeddings:   6%|▌         | 183/3000 [00:03<00:47, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=485.9161, epoch=183/3001, vae_loss=485.9161]
Training: VAE for learning meaningful embeddings:   6%|▌         | 184/3000 [00:03<00:47, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=484.0772, epoch=184/3001, vae_loss=484.0772]
Training: VAE for learning meaningful embeddings:   6%|▌         | 185/3000 [00:03<00:47, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=485.2176, epoch=185/3001, vae_loss=485.2176]
Training: VAE for learning meaningful embeddings:   6%|▌         | 186/3000 [00:03<00:47, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=483.0175, epoch=186/3001, vae_loss=483.0175]
Training: VAE for learning meaningful embeddings:   6%|▌         | 187/3000 [00:03<00:47, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=483.0082, epoch=187/3001, vae_loss=483.0082]
Training: VAE for learning meaningful embeddings:   6%|▋         | 188/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=483.0082, epoch=187/3001, vae_loss=483.0082]
Training: VAE for learning meaningful embeddings:   6%|▋         | 188/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=481.8582, epoch=188/3001, vae_loss=481.8582]
Training: VAE for learning meaningful embeddings:   6%|▋         | 189/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=481.2541, epoch=189/3001, vae_loss=481.2541]
Training: VAE for learning meaningful embeddings:   6%|▋         | 190/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=479.9860, epoch=190/3001, vae_loss=479.9860]
Training: VAE for learning meaningful embeddings:   6%|▋         | 191/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=481.3775, epoch=191/3001, vae_loss=481.3775]
Training: VAE for learning meaningful embeddings:   6%|▋         | 192/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=479.9717, epoch=192/3001, vae_loss=479.9717]
Training: VAE for learning meaningful embeddings:   6%|▋         | 193/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=479.6370, epoch=193/3001, vae_loss=479.6370]
Training: VAE for learning meaningful embeddings:   6%|▋         | 194/3000 [00:03<00:47, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=477.7107, epoch=194/3001, vae_loss=477.7107]
Training: VAE for learning meaningful embeddings:   6%|▋         | 195/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=477.7107, epoch=194/3001, vae_loss=477.7107]
Training: VAE for learning meaningful embeddings:   6%|▋         | 195/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=477.1699, epoch=195/3001, vae_loss=477.1699]
Training: VAE for learning meaningful embeddings:   7%|▋         | 196/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=476.7582, epoch=196/3001, vae_loss=476.7582]
Training: VAE for learning meaningful embeddings:   7%|▋         | 197/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=477.9392, epoch=197/3001, vae_loss=477.9392]
Training: VAE for learning meaningful embeddings:   7%|▋         | 198/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=475.9722, epoch=198/3001, vae_loss=475.9722]
Training: VAE for learning meaningful embeddings:   7%|▋         | 199/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=475.9887, epoch=199/3001, vae_loss=475.9887]
Training: VAE for learning meaningful embeddings:   7%|▋         | 200/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=474.1534, epoch=200/3001, vae_loss=474.1534]
Training: VAE for learning meaningful embeddings:   7%|▋         | 201/3000 [00:03<00:46, 59.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=473.2801, epoch=201/3001, vae_loss=473.2801]
Training: VAE for learning meaningful embeddings:   7%|▋         | 202/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=473.2801, epoch=201/3001, vae_loss=473.2801]
Training: VAE for learning meaningful embeddings:   7%|▋         | 202/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=473.6110, epoch=202/3001, vae_loss=473.6110]
Training: VAE for learning meaningful embeddings:   7%|▋         | 203/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=473.1432, epoch=203/3001, vae_loss=473.1432]
Training: VAE for learning meaningful embeddings:   7%|▋         | 204/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=471.4917, epoch=204/3001, vae_loss=471.4917]
Training: VAE for learning meaningful embeddings:   7%|▋         | 205/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=471.3067, epoch=205/3001, vae_loss=471.3067]
Training: VAE for learning meaningful embeddings:   7%|▋         | 206/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=471.1242, epoch=206/3001, vae_loss=471.1242]
Training: VAE for learning meaningful embeddings:   7%|▋         | 207/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=470.6195, epoch=207/3001, vae_loss=470.6195]
Training: VAE for learning meaningful embeddings:   7%|▋         | 208/3000 [00:03<00:46, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=468.3279, epoch=208/3001, vae_loss=468.3279]
Training: VAE for learning meaningful embeddings:   7%|▋         | 209/3000 [00:03<00:46, 59.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=468.3279, epoch=208/3001, vae_loss=468.3279]
Training: VAE for learning meaningful embeddings:   7%|▋         | 209/3000 [00:03<00:46, 59.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=469.1885, epoch=209/3001, vae_loss=469.1885]
Training: VAE for learning meaningful embeddings:   7%|▋         | 210/3000 [00:03<00:46, 59.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=468.6678, epoch=210/3001, vae_loss=468.6678]
Training: VAE for learning meaningful embeddings:   7%|▋         | 211/3000 [00:03<00:46, 59.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=467.8490, epoch=211/3001, vae_loss=467.8490]
Training: VAE for learning meaningful embeddings:   7%|▋         | 212/3000 [00:03<00:46, 59.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=467.5875, epoch=212/3001, vae_loss=467.5875]
Training: VAE for learning meaningful embeddings:   7%|▋         | 213/3000 [00:03<00:46, 59.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=466.4025, epoch=213/3001, vae_loss=466.4025]
Training: VAE for learning meaningful embeddings:   7%|▋         | 214/3000 [00:03<00:46, 59.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=467.7428, epoch=214/3001, vae_loss=467.7428]
Training: VAE for learning meaningful embeddings:   7%|▋         | 215/3000 [00:03<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=467.7428, epoch=214/3001, vae_loss=467.7428]
Training: VAE for learning meaningful embeddings:   7%|▋         | 215/3000 [00:03<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=464.1251, epoch=215/3001, vae_loss=464.1251]
Training: VAE for learning meaningful embeddings:   7%|▋         | 216/3000 [00:03<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=466.2338, epoch=216/3001, vae_loss=466.2338]
Training: VAE for learning meaningful embeddings:   7%|▋         | 217/3000 [00:03<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=464.6628, epoch=217/3001, vae_loss=464.6628]
Training: VAE for learning meaningful embeddings:   7%|▋         | 218/3000 [00:03<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=464.4648, epoch=218/3001, vae_loss=464.4648]
Training: VAE for learning meaningful embeddings:   7%|▋         | 219/3000 [00:03<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=463.5138, epoch=219/3001, vae_loss=463.5138]
Training: VAE for learning meaningful embeddings:   7%|▋         | 220/3000 [00:03<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=463.7702, epoch=220/3001, vae_loss=463.7702]
Training: VAE for learning meaningful embeddings:   7%|▋         | 221/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=463.7702, epoch=220/3001, vae_loss=463.7702]
Training: VAE for learning meaningful embeddings:   7%|▋         | 221/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=462.2973, epoch=221/3001, vae_loss=462.2973]
Training: VAE for learning meaningful embeddings:   7%|▋         | 222/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=463.2745, epoch=222/3001, vae_loss=463.2745]
Training: VAE for learning meaningful embeddings:   7%|▋         | 223/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=462.4913, epoch=223/3001, vae_loss=462.4913]
Training: VAE for learning meaningful embeddings:   7%|▋         | 224/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=461.5457, epoch=224/3001, vae_loss=461.5457]
Training: VAE for learning meaningful embeddings:   8%|▊         | 225/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=460.8914, epoch=225/3001, vae_loss=460.8914]
Training: VAE for learning meaningful embeddings:   8%|▊         | 226/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=460.1161, epoch=226/3001, vae_loss=460.1161]
Training: VAE for learning meaningful embeddings:   8%|▊         | 227/3000 [00:03<00:47, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=460.3989, epoch=227/3001, vae_loss=460.3989]
Training: VAE for learning meaningful embeddings:   8%|▊         | 228/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=460.3989, epoch=227/3001, vae_loss=460.3989]
Training: VAE for learning meaningful embeddings:   8%|▊         | 228/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=459.1050, epoch=228/3001, vae_loss=459.1050]
Training: VAE for learning meaningful embeddings:   8%|▊         | 229/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=462.1657, epoch=229/3001, vae_loss=462.1657]
Training: VAE for learning meaningful embeddings:   8%|▊         | 230/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=457.8391, epoch=230/3001, vae_loss=457.8391]
Training: VAE for learning meaningful embeddings:   8%|▊         | 231/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=460.7992, epoch=231/3001, vae_loss=460.7992]
Training: VAE for learning meaningful embeddings:   8%|▊         | 232/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=457.0075, epoch=232/3001, vae_loss=457.0075]
Training: VAE for learning meaningful embeddings:   8%|▊         | 233/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=458.3730, epoch=233/3001, vae_loss=458.3730]
Training: VAE for learning meaningful embeddings:   8%|▊         | 234/3000 [00:03<00:46, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=456.9799, epoch=234/3001, vae_loss=456.9799]
Training: VAE for learning meaningful embeddings:   8%|▊         | 235/3000 [00:03<00:46, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=456.9799, epoch=234/3001, vae_loss=456.9799]
Training: VAE for learning meaningful embeddings:   8%|▊         | 235/3000 [00:03<00:46, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=456.3516, epoch=235/3001, vae_loss=456.3516]
Training: VAE for learning meaningful embeddings:   8%|▊         | 236/3000 [00:03<00:46, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=457.1919, epoch=236/3001, vae_loss=457.1919]
Training: VAE for learning meaningful embeddings:   8%|▊         | 237/3000 [00:03<00:46, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=455.8616, epoch=237/3001, vae_loss=455.8616]
Training: VAE for learning meaningful embeddings:   8%|▊         | 238/3000 [00:03<00:46, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=454.7295, epoch=238/3001, vae_loss=454.7295]
Training: VAE for learning meaningful embeddings:   8%|▊         | 239/3000 [00:04<00:46, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=455.4019, epoch=239/3001, vae_loss=455.4019]
Training: VAE for learning meaningful embeddings:   8%|▊         | 240/3000 [00:04<00:46, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=452.9132, epoch=240/3001, vae_loss=452.9132]
Training: VAE for learning meaningful embeddings:   8%|▊         | 241/3000 [00:04<00:46, 58.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=452.9132, epoch=240/3001, vae_loss=452.9132]
Training: VAE for learning meaningful embeddings:   8%|▊         | 241/3000 [00:04<00:46, 58.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=452.7241, epoch=241/3001, vae_loss=452.7241]
Training: VAE for learning meaningful embeddings:   8%|▊         | 242/3000 [00:04<00:46, 58.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=451.7109, epoch=242/3001, vae_loss=451.7109]
Training: VAE for learning meaningful embeddings:   8%|▊         | 243/3000 [00:04<00:46, 58.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=450.7405, epoch=243/3001, vae_loss=450.7405]
Training: VAE for learning meaningful embeddings:   8%|▊         | 244/3000 [00:04<00:46, 58.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=452.1797, epoch=244/3001, vae_loss=452.1797]
Training: VAE for learning meaningful embeddings:   8%|▊         | 245/3000 [00:04<00:46, 58.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=450.5915, epoch=245/3001, vae_loss=450.5915]
Training: VAE for learning meaningful embeddings:   8%|▊         | 246/3000 [00:04<00:46, 58.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=449.9809, epoch=246/3001, vae_loss=449.9809]
Training: VAE for learning meaningful embeddings:   8%|▊         | 247/3000 [00:04<00:46, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=449.9809, epoch=246/3001, vae_loss=449.9809]
Training: VAE for learning meaningful embeddings:   8%|▊         | 247/3000 [00:04<00:46, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=449.0396, epoch=247/3001, vae_loss=449.0396]
Training: VAE for learning meaningful embeddings:   8%|▊         | 248/3000 [00:04<00:46, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=448.6845, epoch=248/3001, vae_loss=448.6845]
Training: VAE for learning meaningful embeddings:   8%|▊         | 249/3000 [00:04<00:46, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=449.2532, epoch=249/3001, vae_loss=449.2532]
Training: VAE for learning meaningful embeddings:   8%|▊         | 250/3000 [00:04<00:46, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=446.3167, epoch=250/3001, vae_loss=446.3167]
Training: VAE for learning meaningful embeddings:   8%|▊         | 251/3000 [00:04<00:46, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=447.6033, epoch=251/3001, vae_loss=447.6033]
Training: VAE for learning meaningful embeddings:   8%|▊         | 252/3000 [00:04<00:46, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=445.1882, epoch=252/3001, vae_loss=445.1882]
Training: VAE for learning meaningful embeddings:   8%|▊         | 253/3000 [00:04<00:46, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=445.1882, epoch=252/3001, vae_loss=445.1882]
Training: VAE for learning meaningful embeddings:   8%|▊         | 253/3000 [00:04<00:46, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=445.2859, epoch=253/3001, vae_loss=445.2859]
Training: VAE for learning meaningful embeddings:   8%|▊         | 254/3000 [00:04<00:46, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=445.9546, epoch=254/3001, vae_loss=445.9546]
Training: VAE for learning meaningful embeddings:   8%|▊         | 255/3000 [00:04<00:46, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=444.4217, epoch=255/3001, vae_loss=444.4217]
Training: VAE for learning meaningful embeddings:   9%|▊         | 256/3000 [00:04<00:46, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=445.6433, epoch=256/3001, vae_loss=445.6433]
Training: VAE for learning meaningful embeddings:   9%|▊         | 257/3000 [00:04<00:46, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=444.1559, epoch=257/3001, vae_loss=444.1559]
Training: VAE for learning meaningful embeddings:   9%|▊         | 258/3000 [00:04<00:46, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=443.6880, epoch=258/3001, vae_loss=443.6880]
Training: VAE for learning meaningful embeddings:   9%|▊         | 259/3000 [00:04<00:46, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=443.6880, epoch=258/3001, vae_loss=443.6880]
Training: VAE for learning meaningful embeddings:   9%|▊         | 259/3000 [00:04<00:46, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=443.4608, epoch=259/3001, vae_loss=443.4608]
Training: VAE for learning meaningful embeddings:   9%|▊         | 260/3000 [00:04<00:46, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=442.0287, epoch=260/3001, vae_loss=442.0287]
Training: VAE for learning meaningful embeddings:   9%|▊         | 261/3000 [00:04<00:46, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=441.4687, epoch=261/3001, vae_loss=441.4687]
Training: VAE for learning meaningful embeddings:   9%|▊         | 262/3000 [00:04<00:46, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=440.3170, epoch=262/3001, vae_loss=440.3170]
Training: VAE for learning meaningful embeddings:   9%|▉         | 263/3000 [00:04<00:46, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=440.8778, epoch=263/3001, vae_loss=440.8778]
Training: VAE for learning meaningful embeddings:   9%|▉         | 264/3000 [00:04<00:46, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=439.5078, epoch=264/3001, vae_loss=439.5078]
Training: VAE for learning meaningful embeddings:   9%|▉         | 265/3000 [00:04<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=439.5078, epoch=264/3001, vae_loss=439.5078]
Training: VAE for learning meaningful embeddings:   9%|▉         | 265/3000 [00:04<00:46, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=439.6567, epoch=265/3001, vae_loss=439.6567]
Training: VAE for learning meaningful embeddings:   9%|▉         | 266/3000 [00:04<00:45, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=441.6024, epoch=266/3001, vae_loss=441.6024]
Training: VAE for learning meaningful embeddings:   9%|▉         | 267/3000 [00:04<00:45, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=440.6662, epoch=267/3001, vae_loss=440.6662]
Training: VAE for learning meaningful embeddings:   9%|▉         | 268/3000 [00:04<00:45, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=437.0804, epoch=268/3001, vae_loss=437.0804]
Training: VAE for learning meaningful embeddings:   9%|▉         | 269/3000 [00:04<00:45, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=440.5412, epoch=269/3001, vae_loss=440.5412]
Training: VAE for learning meaningful embeddings:   9%|▉         | 270/3000 [00:04<00:45, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=439.4338, epoch=270/3001, vae_loss=439.4338]
Training: VAE for learning meaningful embeddings:   9%|▉         | 271/3000 [00:04<00:46, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=439.4338, epoch=270/3001, vae_loss=439.4338]
Training: VAE for learning meaningful embeddings:   9%|▉         | 271/3000 [00:04<00:46, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=435.9407, epoch=271/3001, vae_loss=435.9407]
Training: VAE for learning meaningful embeddings:   9%|▉         | 272/3000 [00:04<00:46, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=438.4575, epoch=272/3001, vae_loss=438.4575]
Training: VAE for learning meaningful embeddings:   9%|▉         | 273/3000 [00:04<00:46, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=437.7642, epoch=273/3001, vae_loss=437.7642]
Training: VAE for learning meaningful embeddings:   9%|▉         | 274/3000 [00:04<00:46, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=434.8025, epoch=274/3001, vae_loss=434.8025]
Training: VAE for learning meaningful embeddings:   9%|▉         | 275/3000 [00:04<00:46, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=435.8057, epoch=275/3001, vae_loss=435.8057]
Training: VAE for learning meaningful embeddings:   9%|▉         | 276/3000 [00:04<00:46, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=433.3853, epoch=276/3001, vae_loss=433.3853]
Training: VAE for learning meaningful embeddings:   9%|▉         | 277/3000 [00:04<00:46, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=433.3853, epoch=276/3001, vae_loss=433.3853]
Training: VAE for learning meaningful embeddings:   9%|▉         | 277/3000 [00:04<00:46, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=435.1456, epoch=277/3001, vae_loss=435.1456]
Training: VAE for learning meaningful embeddings:   9%|▉         | 278/3000 [00:04<00:46, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=432.9803, epoch=278/3001, vae_loss=432.9803]
Training: VAE for learning meaningful embeddings:   9%|▉         | 279/3000 [00:04<00:46, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=432.5456, epoch=279/3001, vae_loss=432.5456]
Training: VAE for learning meaningful embeddings:   9%|▉         | 280/3000 [00:04<00:46, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=432.2151, epoch=280/3001, vae_loss=432.2151]
Training: VAE for learning meaningful embeddings:   9%|▉         | 281/3000 [00:04<00:46, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=431.5785, epoch=281/3001, vae_loss=431.5785]
Training: VAE for learning meaningful embeddings:   9%|▉         | 282/3000 [00:04<00:46, 58.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=430.9843, epoch=282/3001, vae_loss=430.9843]
Training: VAE for learning meaningful embeddings:   9%|▉         | 283/3000 [00:04<00:46, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=430.9843, epoch=282/3001, vae_loss=430.9843]
Training: VAE for learning meaningful embeddings:   9%|▉         | 283/3000 [00:04<00:46, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=429.7657, epoch=283/3001, vae_loss=429.7657]
Training: VAE for learning meaningful embeddings:   9%|▉         | 284/3000 [00:04<00:46, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=429.7311, epoch=284/3001, vae_loss=429.7311]
Training: VAE for learning meaningful embeddings:  10%|▉         | 285/3000 [00:04<00:46, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=429.7218, epoch=285/3001, vae_loss=429.7218]
Training: VAE for learning meaningful embeddings:  10%|▉         | 286/3000 [00:04<00:46, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=430.3141, epoch=286/3001, vae_loss=430.3141]
Training: VAE for learning meaningful embeddings:  10%|▉         | 287/3000 [00:04<00:46, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=429.8339, epoch=287/3001, vae_loss=429.8339]
Training: VAE for learning meaningful embeddings:  10%|▉         | 288/3000 [00:04<00:46, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=429.5230, epoch=288/3001, vae_loss=429.5230]
Training: VAE for learning meaningful embeddings:  10%|▉         | 289/3000 [00:04<00:46, 58.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=429.5230, epoch=288/3001, vae_loss=429.5230]
Training: VAE for learning meaningful embeddings:  10%|▉         | 289/3000 [00:04<00:46, 58.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=427.5879, epoch=289/3001, vae_loss=427.5879]
Training: VAE for learning meaningful embeddings:  10%|▉         | 290/3000 [00:04<00:46, 58.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=427.1977, epoch=290/3001, vae_loss=427.1977]
Training: VAE for learning meaningful embeddings:  10%|▉         | 291/3000 [00:04<00:46, 58.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=427.3243, epoch=291/3001, vae_loss=427.3243]
Training: VAE for learning meaningful embeddings:  10%|▉         | 292/3000 [00:04<00:46, 58.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=427.3261, epoch=292/3001, vae_loss=427.3261]
Training: VAE for learning meaningful embeddings:  10%|▉         | 293/3000 [00:04<00:46, 58.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=426.1672, epoch=293/3001, vae_loss=426.1672]
Training: VAE for learning meaningful embeddings:  10%|▉         | 294/3000 [00:04<00:46, 58.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=426.3623, epoch=294/3001, vae_loss=426.3623]
Training: VAE for learning meaningful embeddings:  10%|▉         | 295/3000 [00:04<00:46, 58.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=426.3623, epoch=294/3001, vae_loss=426.3623]
Training: VAE for learning meaningful embeddings:  10%|▉         | 295/3000 [00:04<00:46, 58.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=424.1155, epoch=295/3001, vae_loss=424.1155]
Training: VAE for learning meaningful embeddings:  10%|▉         | 296/3000 [00:04<00:46, 58.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=425.3794, epoch=296/3001, vae_loss=425.3794]
Training: VAE for learning meaningful embeddings:  10%|▉         | 297/3000 [00:04<00:46, 58.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=424.2104, epoch=297/3001, vae_loss=424.2104]
Training: VAE for learning meaningful embeddings:  10%|▉         | 298/3000 [00:05<00:46, 58.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=426.0462, epoch=298/3001, vae_loss=426.0462]
Training: VAE for learning meaningful embeddings:  10%|▉         | 299/3000 [00:05<00:46, 58.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=422.1647, epoch=299/3001, vae_loss=422.1647]
Training: VAE for learning meaningful embeddings:  10%|█         | 300/3000 [00:05<00:46, 58.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=424.0317, epoch=300/3001, vae_loss=424.0317]
Training: VAE for learning meaningful embeddings:  10%|█         | 301/3000 [00:05<00:46, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=424.0317, epoch=300/3001, vae_loss=424.0317]
Training: VAE for learning meaningful embeddings:  10%|█         | 301/3000 [00:05<00:46, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=422.8152, epoch=301/3001, vae_loss=422.8152]
Training: VAE for learning meaningful embeddings:  10%|█         | 302/3000 [00:05<00:46, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=423.7153, epoch=302/3001, vae_loss=423.7153]
Training: VAE for learning meaningful embeddings:  10%|█         | 303/3000 [00:05<00:46, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=420.9929, epoch=303/3001, vae_loss=420.9929]
Training: VAE for learning meaningful embeddings:  10%|█         | 304/3000 [00:05<00:46, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=420.9153, epoch=304/3001, vae_loss=420.9153]
Training: VAE for learning meaningful embeddings:  10%|█         | 305/3000 [00:05<00:46, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=421.6013, epoch=305/3001, vae_loss=421.6013]
Training: VAE for learning meaningful embeddings:  10%|█         | 306/3000 [00:05<00:46, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=421.2888, epoch=306/3001, vae_loss=421.2888]
Training: VAE for learning meaningful embeddings:  10%|█         | 307/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=421.2888, epoch=306/3001, vae_loss=421.2888]
Training: VAE for learning meaningful embeddings:  10%|█         | 307/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=418.3088, epoch=307/3001, vae_loss=418.3088]
Training: VAE for learning meaningful embeddings:  10%|█         | 308/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=418.9915, epoch=308/3001, vae_loss=418.9915]
Training: VAE for learning meaningful embeddings:  10%|█         | 309/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=419.1411, epoch=309/3001, vae_loss=419.1411]
Training: VAE for learning meaningful embeddings:  10%|█         | 310/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=418.8483, epoch=310/3001, vae_loss=418.8483]
Training: VAE for learning meaningful embeddings:  10%|█         | 311/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=417.1085, epoch=311/3001, vae_loss=417.1085]
Training: VAE for learning meaningful embeddings:  10%|█         | 312/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=416.1842, epoch=312/3001, vae_loss=416.1842]
Training: VAE for learning meaningful embeddings:  10%|█         | 313/3000 [00:05<00:46, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=416.6736, epoch=313/3001, vae_loss=416.6736]
Training: VAE for learning meaningful embeddings:  10%|█         | 314/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=416.6736, epoch=313/3001, vae_loss=416.6736]
Training: VAE for learning meaningful embeddings:  10%|█         | 314/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=416.9512, epoch=314/3001, vae_loss=416.9512]
Training: VAE for learning meaningful embeddings:  10%|█         | 315/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=416.3278, epoch=315/3001, vae_loss=416.3278]
Training: VAE for learning meaningful embeddings:  11%|█         | 316/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=413.8210, epoch=316/3001, vae_loss=413.8210]
Training: VAE for learning meaningful embeddings:  11%|█         | 317/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=414.2049, epoch=317/3001, vae_loss=414.2049]
Training: VAE for learning meaningful embeddings:  11%|█         | 318/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=415.0878, epoch=318/3001, vae_loss=415.0878]
Training: VAE for learning meaningful embeddings:  11%|█         | 319/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=413.5942, epoch=319/3001, vae_loss=413.5942]
Training: VAE for learning meaningful embeddings:  11%|█         | 320/3000 [00:05<00:45, 58.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=414.1577, epoch=320/3001, vae_loss=414.1577]
Training: VAE for learning meaningful embeddings:  11%|█         | 321/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=414.1577, epoch=320/3001, vae_loss=414.1577]
Training: VAE for learning meaningful embeddings:  11%|█         | 321/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=412.1860, epoch=321/3001, vae_loss=412.1860]
Training: VAE for learning meaningful embeddings:  11%|█         | 322/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=413.8281, epoch=322/3001, vae_loss=413.8281]
Training: VAE for learning meaningful embeddings:  11%|█         | 323/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=416.0045, epoch=323/3001, vae_loss=416.0045]
Training: VAE for learning meaningful embeddings:  11%|█         | 324/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=412.1212, epoch=324/3001, vae_loss=412.1212]
Training: VAE for learning meaningful embeddings:  11%|█         | 325/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=412.4871, epoch=325/3001, vae_loss=412.4871]
Training: VAE for learning meaningful embeddings:  11%|█         | 326/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=411.3312, epoch=326/3001, vae_loss=411.3312]
Training: VAE for learning meaningful embeddings:  11%|█         | 327/3000 [00:05<00:45, 59.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=411.0563, epoch=327/3001, vae_loss=411.0563]
Training: VAE for learning meaningful embeddings:  11%|█         | 328/3000 [00:05<00:44, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=411.0563, epoch=327/3001, vae_loss=411.0563]
Training: VAE for learning meaningful embeddings:  11%|█         | 328/3000 [00:05<00:44, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=413.8555, epoch=328/3001, vae_loss=413.8555]
Training: VAE for learning meaningful embeddings:  11%|█         | 329/3000 [00:05<00:44, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=408.4464, epoch=329/3001, vae_loss=408.4464]
Training: VAE for learning meaningful embeddings:  11%|█         | 330/3000 [00:05<00:44, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=411.3849, epoch=330/3001, vae_loss=411.3849]
Training: VAE for learning meaningful embeddings:  11%|█         | 331/3000 [00:05<00:44, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=409.0762, epoch=331/3001, vae_loss=409.0762]
Training: VAE for learning meaningful embeddings:  11%|█         | 332/3000 [00:05<00:44, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=409.9820, epoch=332/3001, vae_loss=409.9820]
Training: VAE for learning meaningful embeddings:  11%|█         | 333/3000 [00:05<00:44, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=409.9442, epoch=333/3001, vae_loss=409.9442]
Training: VAE for learning meaningful embeddings:  11%|█         | 334/3000 [00:05<00:44, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=409.9442, epoch=333/3001, vae_loss=409.9442]
Training: VAE for learning meaningful embeddings:  11%|█         | 334/3000 [00:05<00:44, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=406.4679, epoch=334/3001, vae_loss=406.4679]
Training: VAE for learning meaningful embeddings:  11%|█         | 335/3000 [00:05<00:44, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=407.8593, epoch=335/3001, vae_loss=407.8593]
Training: VAE for learning meaningful embeddings:  11%|█         | 336/3000 [00:05<00:44, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=406.6017, epoch=336/3001, vae_loss=406.6017]
Training: VAE for learning meaningful embeddings:  11%|█         | 337/3000 [00:05<00:44, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=406.5090, epoch=337/3001, vae_loss=406.5090]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 338/3000 [00:05<00:44, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=405.4602, epoch=338/3001, vae_loss=405.4602]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 339/3000 [00:05<00:44, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=405.8038, epoch=339/3001, vae_loss=405.8038]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 340/3000 [00:05<00:44, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=405.8038, epoch=339/3001, vae_loss=405.8038]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 340/3000 [00:05<00:44, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=404.5984, epoch=340/3001, vae_loss=404.5984]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 341/3000 [00:05<00:44, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=405.0313, epoch=341/3001, vae_loss=405.0313]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 342/3000 [00:05<00:44, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=404.2196, epoch=342/3001, vae_loss=404.2196]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 343/3000 [00:05<00:44, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=402.6503, epoch=343/3001, vae_loss=402.6503]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 344/3000 [00:05<00:44, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=403.0490, epoch=344/3001, vae_loss=403.0490]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 345/3000 [00:05<00:44, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=402.4991, epoch=345/3001, vae_loss=402.4991]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 346/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=402.4991, epoch=345/3001, vae_loss=402.4991]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 346/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=400.5873, epoch=346/3001, vae_loss=400.5873]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 347/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=401.3778, epoch=347/3001, vae_loss=401.3778]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 348/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=399.8788, epoch=348/3001, vae_loss=399.8788]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 349/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=399.0627, epoch=349/3001, vae_loss=399.0627]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 350/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=399.8658, epoch=350/3001, vae_loss=399.8658]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 351/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=400.4824, epoch=351/3001, vae_loss=400.4824]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 352/3000 [00:05<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=400.4442, epoch=352/3001, vae_loss=400.4442]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 353/3000 [00:05<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=400.4442, epoch=352/3001, vae_loss=400.4442]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 353/3000 [00:05<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=399.6704, epoch=353/3001, vae_loss=399.6704]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 354/3000 [00:05<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=397.7934, epoch=354/3001, vae_loss=397.7934]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 355/3000 [00:05<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=397.7542, epoch=355/3001, vae_loss=397.7542]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 356/3000 [00:05<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=399.2732, epoch=356/3001, vae_loss=399.2732]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 357/3000 [00:06<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=395.7769, epoch=357/3001, vae_loss=395.7769]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 358/3000 [00:06<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=396.6315, epoch=358/3001, vae_loss=396.6315]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 359/3000 [00:06<00:44, 59.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=397.2774, epoch=359/3001, vae_loss=397.2774]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 360/3000 [00:06<00:44, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=397.2774, epoch=359/3001, vae_loss=397.2774]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 360/3000 [00:06<00:44, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=395.7819, epoch=360/3001, vae_loss=395.7819]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 361/3000 [00:06<00:44, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=394.7075, epoch=361/3001, vae_loss=394.7075]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 362/3000 [00:06<00:44, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=394.7599, epoch=362/3001, vae_loss=394.7599]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 363/3000 [00:06<00:44, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=397.3441, epoch=363/3001, vae_loss=397.3441]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 364/3000 [00:06<00:44, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=398.5015, epoch=364/3001, vae_loss=398.5015]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 365/3000 [00:06<00:44, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=393.5992, epoch=365/3001, vae_loss=393.5992]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 366/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=393.5992, epoch=365/3001, vae_loss=393.5992]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 366/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=393.9414, epoch=366/3001, vae_loss=393.9414]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 367/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=395.4539, epoch=367/3001, vae_loss=395.4539]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 368/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=392.8249, epoch=368/3001, vae_loss=392.8249]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 369/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.3816, epoch=369/3001, vae_loss=390.3816]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 370/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.9919, epoch=370/3001, vae_loss=390.9919]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 371/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.5121, epoch=371/3001, vae_loss=390.5121]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 372/3000 [00:06<00:44, 58.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.0816, epoch=372/3001, vae_loss=390.0816]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 373/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.0816, epoch=372/3001, vae_loss=390.0816]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 373/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.5457, epoch=373/3001, vae_loss=390.5457]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 374/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.9570, epoch=374/3001, vae_loss=390.9570]
Training: VAE for learning meaningful embeddings:  12%|█▎        | 375/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=388.5559, epoch=375/3001, vae_loss=388.5559]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 376/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=387.0752, epoch=376/3001, vae_loss=387.0752]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 377/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=388.4394, epoch=377/3001, vae_loss=388.4394]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 378/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=386.1015, epoch=378/3001, vae_loss=386.1015]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 379/3000 [00:06<00:44, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=387.4241, epoch=379/3001, vae_loss=387.4241]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 380/3000 [00:06<00:43, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=387.4241, epoch=379/3001, vae_loss=387.4241]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 380/3000 [00:06<00:43, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=386.6461, epoch=380/3001, vae_loss=386.6461]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 381/3000 [00:06<00:43, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=384.8354, epoch=381/3001, vae_loss=384.8354]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 382/3000 [00:06<00:43, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=384.4755, epoch=382/3001, vae_loss=384.4755]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 383/3000 [00:06<00:43, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=385.2053, epoch=383/3001, vae_loss=385.2053]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 384/3000 [00:06<00:43, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.1659, epoch=384/3001, vae_loss=382.1659]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 385/3000 [00:06<00:43, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.6459, epoch=385/3001, vae_loss=382.6459]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 386/3000 [00:06<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.6459, epoch=385/3001, vae_loss=382.6459]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 386/3000 [00:06<00:44, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=381.9122, epoch=386/3001, vae_loss=381.9122]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 387/3000 [00:06<00:43, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=381.3442, epoch=387/3001, vae_loss=381.3442]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 388/3000 [00:06<00:43, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=383.1299, epoch=388/3001, vae_loss=383.1299]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 389/3000 [00:06<00:43, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=381.7827, epoch=389/3001, vae_loss=381.7827]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 390/3000 [00:06<00:43, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=381.5563, epoch=390/3001, vae_loss=381.5563]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 391/3000 [00:06<00:43, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=381.6926, epoch=391/3001, vae_loss=381.6926]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 392/3000 [00:06<00:44, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=381.6926, epoch=391/3001, vae_loss=381.6926]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 392/3000 [00:06<00:44, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.9643, epoch=392/3001, vae_loss=382.9643]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 393/3000 [00:06<00:44, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.5513, epoch=393/3001, vae_loss=382.5513]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 394/3000 [00:06<00:44, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=379.5450, epoch=394/3001, vae_loss=379.5450]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 395/3000 [00:06<00:44, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.8022, epoch=395/3001, vae_loss=382.8022]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 396/3000 [00:06<00:44, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=384.3338, epoch=396/3001, vae_loss=384.3338]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 397/3000 [00:06<00:44, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=377.2327, epoch=397/3001, vae_loss=377.2327]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 398/3000 [00:06<00:44, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=377.2327, epoch=397/3001, vae_loss=377.2327]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 398/3000 [00:06<00:44, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=386.0511, epoch=398/3001, vae_loss=386.0511]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 399/3000 [00:06<00:44, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=390.9448, epoch=399/3001, vae_loss=390.9448]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 400/3000 [00:06<00:44, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=378.7100, epoch=400/3001, vae_loss=378.7100]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 401/3000 [00:06<00:44, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=387.3743, epoch=401/3001, vae_loss=387.3743]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 402/3000 [00:06<00:44, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=385.5316, epoch=402/3001, vae_loss=385.5316]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 403/3000 [00:06<00:44, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.9109, epoch=403/3001, vae_loss=382.9109]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 404/3000 [00:06<00:44, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=382.9109, epoch=403/3001, vae_loss=382.9109]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 404/3000 [00:06<00:44, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=385.1565, epoch=404/3001, vae_loss=385.1565]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 405/3000 [00:06<00:44, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=378.7346, epoch=405/3001, vae_loss=378.7346]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 406/3000 [00:06<00:44, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=380.0926, epoch=406/3001, vae_loss=380.0926]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 407/3000 [00:06<00:44, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=378.4121, epoch=407/3001, vae_loss=378.4121]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 408/3000 [00:06<00:44, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=377.3086, epoch=408/3001, vae_loss=377.3086]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 409/3000 [00:06<00:44, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=376.3444, epoch=409/3001, vae_loss=376.3444]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 410/3000 [00:06<00:44, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=376.3444, epoch=409/3001, vae_loss=376.3444]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 410/3000 [00:06<00:44, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=375.9686, epoch=410/3001, vae_loss=375.9686]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 411/3000 [00:06<00:44, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=374.3051, epoch=411/3001, vae_loss=374.3051]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 412/3000 [00:06<00:44, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=373.1434, epoch=412/3001, vae_loss=373.1434]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 413/3000 [00:06<00:44, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=371.7174, epoch=413/3001, vae_loss=371.7174]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 414/3000 [00:06<00:44, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=372.7946, epoch=414/3001, vae_loss=372.7946]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 415/3000 [00:06<00:44, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=371.2592, epoch=415/3001, vae_loss=371.2592]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 416/3000 [00:06<00:44, 58.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=371.2592, epoch=415/3001, vae_loss=371.2592]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 416/3000 [00:07<00:44, 58.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=370.2349, epoch=416/3001, vae_loss=370.2349]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 417/3000 [00:07<00:44, 58.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=370.2096, epoch=417/3001, vae_loss=370.2096]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 418/3000 [00:07<00:44, 58.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=368.9395, epoch=418/3001, vae_loss=368.9395]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 419/3000 [00:07<00:44, 58.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=369.8299, epoch=419/3001, vae_loss=369.8299]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 420/3000 [00:07<00:44, 58.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=367.8085, epoch=420/3001, vae_loss=367.8085]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 421/3000 [00:07<00:44, 58.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=368.2217, epoch=421/3001, vae_loss=368.2217]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 422/3000 [00:07<00:44, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=368.2217, epoch=421/3001, vae_loss=368.2217]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 422/3000 [00:07<00:44, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=367.6008, epoch=422/3001, vae_loss=367.6008]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 423/3000 [00:07<00:44, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=367.1364, epoch=423/3001, vae_loss=367.1364]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 424/3000 [00:07<00:44, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=367.2686, epoch=424/3001, vae_loss=367.2686]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 425/3000 [00:07<00:44, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=365.2577, epoch=425/3001, vae_loss=365.2577]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 426/3000 [00:07<00:44, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=366.3918, epoch=426/3001, vae_loss=366.3918]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 427/3000 [00:07<00:44, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=365.2286, epoch=427/3001, vae_loss=365.2286]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 428/3000 [00:07<00:44, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=365.2286, epoch=427/3001, vae_loss=365.2286]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 428/3000 [00:07<00:44, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=364.4072, epoch=428/3001, vae_loss=364.4072]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 429/3000 [00:07<00:44, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=365.4056, epoch=429/3001, vae_loss=365.4056]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 430/3000 [00:07<00:44, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=364.4633, epoch=430/3001, vae_loss=364.4633]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 431/3000 [00:07<00:44, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=364.2811, epoch=431/3001, vae_loss=364.2811]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 432/3000 [00:07<00:44, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=363.1482, epoch=432/3001, vae_loss=363.1482]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 433/3000 [00:07<00:44, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=363.3808, epoch=433/3001, vae_loss=363.3808]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 434/3000 [00:07<00:44, 57.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=363.3808, epoch=433/3001, vae_loss=363.3808]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 434/3000 [00:07<00:44, 57.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=364.2626, epoch=434/3001, vae_loss=364.2626]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 435/3000 [00:07<00:44, 57.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=362.7327, epoch=435/3001, vae_loss=362.7327]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 436/3000 [00:07<00:44, 57.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=362.7076, epoch=436/3001, vae_loss=362.7076]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 437/3000 [00:07<00:44, 57.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=362.3404, epoch=437/3001, vae_loss=362.3404]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 438/3000 [00:07<00:44, 57.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=362.0294, epoch=438/3001, vae_loss=362.0294]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 439/3000 [00:07<00:44, 57.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=361.3516, epoch=439/3001, vae_loss=361.3516]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 440/3000 [00:07<00:44, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=361.3516, epoch=439/3001, vae_loss=361.3516]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 440/3000 [00:07<00:44, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=361.1583, epoch=440/3001, vae_loss=361.1583]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 441/3000 [00:07<00:44, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=359.7145, epoch=441/3001, vae_loss=359.7145]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 442/3000 [00:07<00:44, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=360.7188, epoch=442/3001, vae_loss=360.7188]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 443/3000 [00:07<00:44, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=359.1823, epoch=443/3001, vae_loss=359.1823]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 444/3000 [00:07<00:44, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=360.4962, epoch=444/3001, vae_loss=360.4962]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 445/3000 [00:07<00:44, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=360.7755, epoch=445/3001, vae_loss=360.7755]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 446/3000 [00:07<00:44, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=360.7755, epoch=445/3001, vae_loss=360.7755]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 446/3000 [00:07<00:44, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=359.4703, epoch=446/3001, vae_loss=359.4703]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 447/3000 [00:07<00:44, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=361.3065, epoch=447/3001, vae_loss=361.3065]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 448/3000 [00:07<00:44, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=359.1167, epoch=448/3001, vae_loss=359.1167]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 449/3000 [00:07<00:44, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=357.9577, epoch=449/3001, vae_loss=357.9577]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 450/3000 [00:07<00:44, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=357.5285, epoch=450/3001, vae_loss=357.5285]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 451/3000 [00:07<00:44, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=357.9863, epoch=451/3001, vae_loss=357.9863]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 452/3000 [00:07<00:44, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=357.9863, epoch=451/3001, vae_loss=357.9863]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 452/3000 [00:07<00:44, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=356.9275, epoch=452/3001, vae_loss=356.9275]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 453/3000 [00:07<00:44, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=355.3523, epoch=453/3001, vae_loss=355.3523]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 454/3000 [00:07<00:44, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=356.8012, epoch=454/3001, vae_loss=356.8012]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 455/3000 [00:07<00:44, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=354.8703, epoch=455/3001, vae_loss=354.8703]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 456/3000 [00:07<00:44, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=354.8562, epoch=456/3001, vae_loss=354.8562]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 457/3000 [00:07<00:44, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=355.7801, epoch=457/3001, vae_loss=355.7801]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 458/3000 [00:07<00:43, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=355.7801, epoch=457/3001, vae_loss=355.7801]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 458/3000 [00:07<00:43, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=354.8277, epoch=458/3001, vae_loss=354.8277]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 459/3000 [00:07<00:43, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=355.2154, epoch=459/3001, vae_loss=355.2154]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 460/3000 [00:07<00:43, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=355.1609, epoch=460/3001, vae_loss=355.1609]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 461/3000 [00:07<00:43, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=353.4240, epoch=461/3001, vae_loss=353.4240]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 462/3000 [00:07<00:43, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=352.6682, epoch=462/3001, vae_loss=352.6682]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 463/3000 [00:07<00:43, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=351.9925, epoch=463/3001, vae_loss=351.9925]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 464/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=351.9925, epoch=463/3001, vae_loss=351.9925]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 464/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=352.7581, epoch=464/3001, vae_loss=352.7581]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 465/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=352.1483, epoch=465/3001, vae_loss=352.1483]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 466/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=351.3464, epoch=466/3001, vae_loss=351.3464]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 467/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=351.2423, epoch=467/3001, vae_loss=351.2423]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 468/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=350.3675, epoch=468/3001, vae_loss=350.3675]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 469/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=351.2762, epoch=469/3001, vae_loss=351.2762]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 470/3000 [00:07<00:43, 58.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=350.6347, epoch=470/3001, vae_loss=350.6347]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 471/3000 [00:07<00:42, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=350.6347, epoch=470/3001, vae_loss=350.6347]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 471/3000 [00:07<00:42, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=350.7035, epoch=471/3001, vae_loss=350.7035]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 472/3000 [00:07<00:42, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=349.6895, epoch=472/3001, vae_loss=349.6895]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 473/3000 [00:07<00:42, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=349.0380, epoch=473/3001, vae_loss=349.0380]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 474/3000 [00:08<00:42, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=350.2982, epoch=474/3001, vae_loss=350.2982]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 475/3000 [00:08<00:42, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=349.4682, epoch=475/3001, vae_loss=349.4682]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 476/3000 [00:08<00:42, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.9990, epoch=476/3001, vae_loss=348.9990]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 477/3000 [00:08<00:42, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.9990, epoch=476/3001, vae_loss=348.9990]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 477/3000 [00:08<00:42, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.5392, epoch=477/3001, vae_loss=348.5392]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 478/3000 [00:08<00:42, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.1540, epoch=478/3001, vae_loss=348.1540]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 479/3000 [00:08<00:42, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.6456, epoch=479/3001, vae_loss=348.6456]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 480/3000 [00:08<00:42, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.2403, epoch=480/3001, vae_loss=348.2403]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 481/3000 [00:08<00:42, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=347.3876, epoch=481/3001, vae_loss=347.3876]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 482/3000 [00:08<00:42, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=347.8229, epoch=482/3001, vae_loss=347.8229]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 483/3000 [00:08<00:43, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=347.8229, epoch=482/3001, vae_loss=347.8229]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 483/3000 [00:08<00:43, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.3146, epoch=483/3001, vae_loss=348.3146]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 484/3000 [00:08<00:43, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=347.3841, epoch=484/3001, vae_loss=347.3841]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 485/3000 [00:08<00:43, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=346.2810, epoch=485/3001, vae_loss=346.2810]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 486/3000 [00:08<00:43, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=345.9570, epoch=486/3001, vae_loss=345.9570]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 487/3000 [00:08<00:43, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=347.5428, epoch=487/3001, vae_loss=347.5428]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 488/3000 [00:08<00:43, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=346.6874, epoch=488/3001, vae_loss=346.6874]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 489/3000 [00:08<00:43, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=346.6874, epoch=488/3001, vae_loss=346.6874]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 489/3000 [00:08<00:43, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=345.2431, epoch=489/3001, vae_loss=345.2431]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 490/3000 [00:08<00:43, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=346.1829, epoch=490/3001, vae_loss=346.1829]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 491/3000 [00:08<00:43, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.0541, epoch=491/3001, vae_loss=348.0541]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 492/3000 [00:08<00:43, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.4831, epoch=492/3001, vae_loss=348.4831]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 493/3000 [00:08<00:43, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=345.7259, epoch=493/3001, vae_loss=345.7259]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 494/3000 [00:08<00:43, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=346.9480, epoch=494/3001, vae_loss=346.9480]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 495/3000 [00:08<00:43, 57.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=346.9480, epoch=494/3001, vae_loss=346.9480]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 495/3000 [00:08<00:43, 57.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=347.1856, epoch=495/3001, vae_loss=347.1856]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 496/3000 [00:08<00:43, 57.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=345.5104, epoch=496/3001, vae_loss=345.5104]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 497/3000 [00:08<00:43, 57.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=348.5204, epoch=497/3001, vae_loss=348.5204]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 498/3000 [00:08<00:43, 57.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=342.2217, epoch=498/3001, vae_loss=342.2217]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 499/3000 [00:08<00:43, 57.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=344.8027, epoch=499/3001, vae_loss=344.8027]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 500/3000 [00:08<00:43, 57.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=342.5966, epoch=500/3001, vae_loss=342.5966]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 501/3000 [00:08<00:43, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=342.5966, epoch=500/3001, vae_loss=342.5966]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 501/3000 [00:08<00:43, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=341.5782, epoch=501/3001, vae_loss=341.5782]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 502/3000 [00:08<00:43, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=341.6925, epoch=502/3001, vae_loss=341.6925]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 503/3000 [00:08<00:43, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=340.7452, epoch=503/3001, vae_loss=340.7452]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 504/3000 [00:08<00:43, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=340.8038, epoch=504/3001, vae_loss=340.8038]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 505/3000 [00:08<00:43, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=340.0731, epoch=505/3001, vae_loss=340.0731]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 506/3000 [00:08<00:43, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=340.5867, epoch=506/3001, vae_loss=340.5867]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 507/3000 [00:08<00:44, 56.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=340.5867, epoch=506/3001, vae_loss=340.5867]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 507/3000 [00:08<00:44, 56.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=340.7737, epoch=507/3001, vae_loss=340.7737]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 508/3000 [00:08<00:44, 56.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=339.7828, epoch=508/3001, vae_loss=339.7828]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 509/3000 [00:08<00:44, 56.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=338.8457, epoch=509/3001, vae_loss=338.8457]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 510/3000 [00:08<00:44, 56.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=338.6022, epoch=510/3001, vae_loss=338.6022]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 511/3000 [00:08<00:44, 56.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=338.1422, epoch=511/3001, vae_loss=338.1422]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 512/3000 [00:08<00:44, 56.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=338.4542, epoch=512/3001, vae_loss=338.4542]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 513/3000 [00:08<00:43, 56.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=338.4542, epoch=512/3001, vae_loss=338.4542]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 513/3000 [00:08<00:43, 56.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=338.2342, epoch=513/3001, vae_loss=338.2342]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 514/3000 [00:08<00:43, 56.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=337.9420, epoch=514/3001, vae_loss=337.9420]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 515/3000 [00:08<00:43, 56.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=337.2150, epoch=515/3001, vae_loss=337.2150]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 516/3000 [00:08<00:43, 56.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=337.1639, epoch=516/3001, vae_loss=337.1639]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 517/3000 [00:08<00:43, 56.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=339.0934, epoch=517/3001, vae_loss=339.0934]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 518/3000 [00:08<00:43, 56.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=336.5224, epoch=518/3001, vae_loss=336.5224]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 519/3000 [00:08<00:43, 56.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=336.5224, epoch=518/3001, vae_loss=336.5224]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 519/3000 [00:08<00:43, 56.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=337.1333, epoch=519/3001, vae_loss=337.1333]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 520/3000 [00:08<00:43, 56.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=337.1532, epoch=520/3001, vae_loss=337.1532]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 521/3000 [00:08<00:43, 56.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=334.8194, epoch=521/3001, vae_loss=334.8194]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 522/3000 [00:08<00:43, 56.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=335.4323, epoch=522/3001, vae_loss=335.4323]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 523/3000 [00:08<00:43, 56.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=335.5320, epoch=523/3001, vae_loss=335.5320]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 524/3000 [00:08<00:43, 56.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=334.7569, epoch=524/3001, vae_loss=334.7569]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 525/3000 [00:08<00:43, 57.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=334.7569, epoch=524/3001, vae_loss=334.7569]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 525/3000 [00:08<00:43, 57.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=335.4753, epoch=525/3001, vae_loss=335.4753]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 526/3000 [00:08<00:43, 57.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.9440, epoch=526/3001, vae_loss=333.9440]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 527/3000 [00:08<00:43, 57.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=335.3928, epoch=527/3001, vae_loss=335.3928]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 528/3000 [00:08<00:43, 57.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.9118, epoch=528/3001, vae_loss=333.9118]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 529/3000 [00:08<00:43, 57.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.2751, epoch=529/3001, vae_loss=333.2751]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 530/3000 [00:08<00:43, 57.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.5987, epoch=530/3001, vae_loss=333.5987]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 531/3000 [00:08<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.5987, epoch=530/3001, vae_loss=333.5987]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 531/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=331.8054, epoch=531/3001, vae_loss=331.8054]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 532/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.1348, epoch=532/3001, vae_loss=333.1348]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 533/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.8174, epoch=533/3001, vae_loss=333.8174]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 534/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=333.2339, epoch=534/3001, vae_loss=333.2339]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 535/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=332.5255, epoch=535/3001, vae_loss=332.5255]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 536/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=330.8212, epoch=536/3001, vae_loss=330.8212]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 537/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=330.8212, epoch=536/3001, vae_loss=330.8212]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 537/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=331.2646, epoch=537/3001, vae_loss=331.2646]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 538/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=331.1013, epoch=538/3001, vae_loss=331.1013]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 539/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=332.3879, epoch=539/3001, vae_loss=332.3879]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 540/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=330.0233, epoch=540/3001, vae_loss=330.0233]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 541/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.9340, epoch=541/3001, vae_loss=329.9340]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 542/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=330.7027, epoch=542/3001, vae_loss=330.7027]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 543/3000 [00:09<00:42, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.6717, epoch=543/3001, vae_loss=329.6717]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 544/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.6717, epoch=543/3001, vae_loss=329.6717]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 544/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.8456, epoch=544/3001, vae_loss=329.8456]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 545/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.4571, epoch=545/3001, vae_loss=329.4571]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 546/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.5989, epoch=546/3001, vae_loss=329.5989]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 547/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.0962, epoch=547/3001, vae_loss=329.0962]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 548/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=330.0747, epoch=548/3001, vae_loss=330.0747]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 549/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.8404, epoch=549/3001, vae_loss=329.8404]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 550/3000 [00:09<00:41, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=327.6215, epoch=550/3001, vae_loss=327.6215]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 551/3000 [00:09<00:41, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=327.6215, epoch=550/3001, vae_loss=327.6215]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 551/3000 [00:09<00:41, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=329.0575, epoch=551/3001, vae_loss=329.0575]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 552/3000 [00:09<00:41, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=331.0868, epoch=552/3001, vae_loss=331.0868]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 553/3000 [00:09<00:41, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=328.4733, epoch=553/3001, vae_loss=328.4733]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 554/3000 [00:09<00:41, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=327.8951, epoch=554/3001, vae_loss=327.8951]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 555/3000 [00:09<00:41, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=328.6014, epoch=555/3001, vae_loss=328.6014]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 556/3000 [00:09<00:41, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=326.7580, epoch=556/3001, vae_loss=326.7580]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 557/3000 [00:09<00:42, 57.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=326.7580, epoch=556/3001, vae_loss=326.7580]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 557/3000 [00:09<00:42, 57.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.6654, epoch=557/3001, vae_loss=325.6654]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 558/3000 [00:09<00:42, 57.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=326.7456, epoch=558/3001, vae_loss=326.7456]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 559/3000 [00:09<00:42, 57.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=327.0525, epoch=559/3001, vae_loss=327.0525]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 560/3000 [00:09<00:42, 57.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.6468, epoch=560/3001, vae_loss=325.6468]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 561/3000 [00:09<00:42, 57.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=328.2977, epoch=561/3001, vae_loss=328.2977]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 562/3000 [00:09<00:42, 57.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.3774, epoch=562/3001, vae_loss=325.3774]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 563/3000 [00:09<00:42, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.3774, epoch=562/3001, vae_loss=325.3774]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 563/3000 [00:09<00:42, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=326.0163, epoch=563/3001, vae_loss=326.0163]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 564/3000 [00:09<00:42, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=326.6239, epoch=564/3001, vae_loss=326.6239]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 565/3000 [00:09<00:42, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=324.5653, epoch=565/3001, vae_loss=324.5653]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 566/3000 [00:09<00:42, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=326.3146, epoch=566/3001, vae_loss=326.3146]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 567/3000 [00:09<00:42, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.6736, epoch=567/3001, vae_loss=325.6736]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 568/3000 [00:09<00:42, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.8582, epoch=568/3001, vae_loss=325.8582]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 569/3000 [00:09<00:41, 58.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.8582, epoch=568/3001, vae_loss=325.8582]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 569/3000 [00:09<00:41, 58.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.0341, epoch=569/3001, vae_loss=325.0341]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 570/3000 [00:09<00:41, 58.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.6687, epoch=570/3001, vae_loss=325.6687]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 571/3000 [00:09<00:41, 58.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=324.0719, epoch=571/3001, vae_loss=324.0719]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 572/3000 [00:09<00:41, 58.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=322.7909, epoch=572/3001, vae_loss=322.7909]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 573/3000 [00:09<00:41, 58.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.6394, epoch=573/3001, vae_loss=325.6394]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 574/3000 [00:09<00:41, 58.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=323.2600, epoch=574/3001, vae_loss=323.2600]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 575/3000 [00:09<00:41, 58.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=323.2600, epoch=574/3001, vae_loss=323.2600]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 575/3000 [00:09<00:41, 58.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.1852, epoch=575/3001, vae_loss=325.1852]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 576/3000 [00:09<00:41, 58.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=324.3899, epoch=576/3001, vae_loss=324.3899]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 577/3000 [00:09<00:41, 58.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.9751, epoch=577/3001, vae_loss=321.9751]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 578/3000 [00:09<00:41, 58.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=325.7795, epoch=578/3001, vae_loss=325.7795]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 579/3000 [00:09<00:41, 58.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=322.8633, epoch=579/3001, vae_loss=322.8633]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 580/3000 [00:09<00:41, 58.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=322.0659, epoch=580/3001, vae_loss=322.0659]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 581/3000 [00:09<00:43, 55.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=322.0659, epoch=580/3001, vae_loss=322.0659]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 581/3000 [00:09<00:43, 55.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.0317, epoch=581/3001, vae_loss=321.0317]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 582/3000 [00:09<00:43, 55.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=322.8470, epoch=582/3001, vae_loss=322.8470]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 583/3000 [00:09<00:43, 55.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.7556, epoch=583/3001, vae_loss=320.7556]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 584/3000 [00:09<00:43, 55.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.9406, epoch=584/3001, vae_loss=321.9406]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 585/3000 [00:09<00:43, 55.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.9965, epoch=585/3001, vae_loss=320.9965]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 586/3000 [00:09<00:43, 55.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.5739, epoch=586/3001, vae_loss=321.5739]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 587/3000 [00:09<00:43, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.5739, epoch=586/3001, vae_loss=321.5739]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 587/3000 [00:09<00:43, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.0024, epoch=587/3001, vae_loss=321.0024]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 588/3000 [00:10<00:43, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.0548, epoch=588/3001, vae_loss=321.0548]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 589/3000 [00:10<00:43, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.9711, epoch=589/3001, vae_loss=320.9711]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 590/3000 [00:10<00:43, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=319.4301, epoch=590/3001, vae_loss=319.4301]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 591/3000 [00:10<00:43, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.5037, epoch=591/3001, vae_loss=321.5037]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 592/3000 [00:10<00:43, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=319.9725, epoch=592/3001, vae_loss=319.9725]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 593/3000 [00:10<00:42, 55.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.3569, epoch=593/3001, vae_loss=320.3569]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 594/3000 [00:10<00:41, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.3569, epoch=593/3001, vae_loss=320.3569]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 594/3000 [00:10<00:41, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.2428, epoch=594/3001, vae_loss=321.2428]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 595/3000 [00:10<00:41, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.8935, epoch=595/3001, vae_loss=320.8935]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 596/3000 [00:10<00:41, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=319.2256, epoch=596/3001, vae_loss=319.2256]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 597/3000 [00:10<00:41, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=319.6053, epoch=597/3001, vae_loss=319.6053]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 598/3000 [00:10<00:41, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.4315, epoch=598/3001, vae_loss=320.4315]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 599/3000 [00:10<00:41, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=317.8023, epoch=599/3001, vae_loss=317.8023]
Training: VAE for learning meaningful embeddings:  20%|██        | 600/3000 [00:10<00:41, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=317.8023, epoch=599/3001, vae_loss=317.8023]
Training: VAE for learning meaningful embeddings:  20%|██        | 600/3000 [00:10<00:41, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=319.9700, epoch=600/3001, vae_loss=319.9700]
Training: VAE for learning meaningful embeddings:  20%|██        | 601/3000 [00:10<00:41, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=321.1430, epoch=601/3001, vae_loss=321.1430]
Training: VAE for learning meaningful embeddings:  20%|██        | 602/3000 [00:10<00:41, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=317.4889, epoch=602/3001, vae_loss=317.4889]
Training: VAE for learning meaningful embeddings:  20%|██        | 603/3000 [00:10<00:41, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=320.8177, epoch=603/3001, vae_loss=320.8177]
Training: VAE for learning meaningful embeddings:  20%|██        | 604/3000 [00:10<00:41, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=318.5341, epoch=604/3001, vae_loss=318.5341]
Training: VAE for learning meaningful embeddings:  20%|██        | 605/3000 [00:10<00:41, 57.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=317.3403, epoch=605/3001, vae_loss=317.3403]
Training: VAE for learning meaningful embeddings:  20%|██        | 606/3000 [00:10<00:41, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=317.3403, epoch=605/3001, vae_loss=317.3403]
Training: VAE for learning meaningful embeddings:  20%|██        | 606/3000 [00:10<00:41, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=319.0355, epoch=606/3001, vae_loss=319.0355]
Training: VAE for learning meaningful embeddings:  20%|██        | 607/3000 [00:10<00:41, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.2942, epoch=607/3001, vae_loss=316.2942]
Training: VAE for learning meaningful embeddings:  20%|██        | 608/3000 [00:10<00:41, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=317.2244, epoch=608/3001, vae_loss=317.2244]
Training: VAE for learning meaningful embeddings:  20%|██        | 609/3000 [00:10<00:41, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.9479, epoch=609/3001, vae_loss=316.9479]
Training: VAE for learning meaningful embeddings:  20%|██        | 610/3000 [00:10<00:41, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.7975, epoch=610/3001, vae_loss=316.7975]
Training: VAE for learning meaningful embeddings:  20%|██        | 611/3000 [00:10<00:41, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.8622, epoch=611/3001, vae_loss=316.8622]
Training: VAE for learning meaningful embeddings:  20%|██        | 612/3000 [00:10<00:41, 57.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.8622, epoch=611/3001, vae_loss=316.8622]
Training: VAE for learning meaningful embeddings:  20%|██        | 612/3000 [00:10<00:41, 57.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.6409, epoch=612/3001, vae_loss=316.6409]
Training: VAE for learning meaningful embeddings:  20%|██        | 613/3000 [00:10<00:41, 57.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=315.4645, epoch=613/3001, vae_loss=315.4645]
Training: VAE for learning meaningful embeddings:  20%|██        | 614/3000 [00:10<00:41, 57.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=315.0436, epoch=614/3001, vae_loss=315.0436]
Training: VAE for learning meaningful embeddings:  20%|██        | 615/3000 [00:10<00:41, 57.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=315.2510, epoch=615/3001, vae_loss=315.2510]
Training: VAE for learning meaningful embeddings:  21%|██        | 616/3000 [00:10<00:41, 57.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.5213, epoch=616/3001, vae_loss=316.5213]
Training: VAE for learning meaningful embeddings:  21%|██        | 617/3000 [00:10<00:41, 57.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=314.7796, epoch=617/3001, vae_loss=314.7796]
Training: VAE for learning meaningful embeddings:  21%|██        | 618/3000 [00:10<00:41, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=314.7796, epoch=617/3001, vae_loss=314.7796]
Training: VAE for learning meaningful embeddings:  21%|██        | 618/3000 [00:10<00:41, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=316.0350, epoch=618/3001, vae_loss=316.0350]
Training: VAE for learning meaningful embeddings:  21%|██        | 619/3000 [00:10<00:41, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=315.4853, epoch=619/3001, vae_loss=315.4853]
Training: VAE for learning meaningful embeddings:  21%|██        | 620/3000 [00:10<00:41, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.0783, epoch=620/3001, vae_loss=313.0783]
Training: VAE for learning meaningful embeddings:  21%|██        | 621/3000 [00:10<00:41, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=314.6371, epoch=621/3001, vae_loss=314.6371]
Training: VAE for learning meaningful embeddings:  21%|██        | 622/3000 [00:10<00:41, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.4450, epoch=622/3001, vae_loss=313.4450]
Training: VAE for learning meaningful embeddings:  21%|██        | 623/3000 [00:10<00:41, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.8951, epoch=623/3001, vae_loss=313.8951]
Training: VAE for learning meaningful embeddings:  21%|██        | 624/3000 [00:10<01:05, 36.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.8951, epoch=623/3001, vae_loss=313.8951]
Training: VAE for learning meaningful embeddings:  21%|██        | 624/3000 [00:10<01:05, 36.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.7745, epoch=624/3001, vae_loss=313.7745]
Training: VAE for learning meaningful embeddings:  21%|██        | 625/3000 [00:10<01:05, 36.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.5936, epoch=625/3001, vae_loss=313.5936]
Training: VAE for learning meaningful embeddings:  21%|██        | 626/3000 [00:10<01:05, 36.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=312.7643, epoch=626/3001, vae_loss=312.7643]
Training: VAE for learning meaningful embeddings:  21%|██        | 627/3000 [00:10<01:05, 36.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=312.2260, epoch=627/3001, vae_loss=312.2260]
Training: VAE for learning meaningful embeddings:  21%|██        | 628/3000 [00:10<01:05, 36.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.0621, epoch=628/3001, vae_loss=313.0621]
Training: VAE for learning meaningful embeddings:  21%|██        | 629/3000 [00:10<01:05, 36.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=312.8467, epoch=629/3001, vae_loss=312.8467]
Training: VAE for learning meaningful embeddings:  21%|██        | 630/3000 [00:10<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=312.8467, epoch=629/3001, vae_loss=312.8467]
Training: VAE for learning meaningful embeddings:  21%|██        | 630/3000 [00:10<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.7260, epoch=630/3001, vae_loss=311.7260]
Training: VAE for learning meaningful embeddings:  21%|██        | 631/3000 [00:10<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=312.7933, epoch=631/3001, vae_loss=312.7933]
Training: VAE for learning meaningful embeddings:  21%|██        | 632/3000 [00:10<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=313.7520, epoch=632/3001, vae_loss=313.7520]
Training: VAE for learning meaningful embeddings:  21%|██        | 633/3000 [00:10<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.9558, epoch=633/3001, vae_loss=311.9558]
Training: VAE for learning meaningful embeddings:  21%|██        | 634/3000 [00:10<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.5574, epoch=634/3001, vae_loss=311.5574]
Training: VAE for learning meaningful embeddings:  21%|██        | 635/3000 [00:11<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=310.5401, epoch=635/3001, vae_loss=310.5401]
Training: VAE for learning meaningful embeddings:  21%|██        | 636/3000 [00:11<00:57, 41.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.4641, epoch=636/3001, vae_loss=311.4641]
Training: VAE for learning meaningful embeddings:  21%|██        | 637/3000 [00:11<00:51, 46.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.4641, epoch=636/3001, vae_loss=311.4641]
Training: VAE for learning meaningful embeddings:  21%|██        | 637/3000 [00:11<00:51, 46.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.6487, epoch=637/3001, vae_loss=311.6487]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 638/3000 [00:11<00:51, 46.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.9223, epoch=638/3001, vae_loss=309.9223]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 639/3000 [00:11<00:51, 46.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.7102, epoch=639/3001, vae_loss=311.7102]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 640/3000 [00:11<00:51, 46.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=312.2784, epoch=640/3001, vae_loss=312.2784]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 641/3000 [00:11<00:51, 46.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=310.1154, epoch=641/3001, vae_loss=310.1154]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 642/3000 [00:11<00:51, 46.03it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.8261, epoch=642/3001, vae_loss=311.8261]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 643/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=311.8261, epoch=642/3001, vae_loss=311.8261]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 643/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.6752, epoch=643/3001, vae_loss=309.6752]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 644/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.9306, epoch=644/3001, vae_loss=309.9306]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 645/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.3422, epoch=645/3001, vae_loss=309.3422]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 646/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.3073, epoch=646/3001, vae_loss=309.3073]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 647/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=308.8738, epoch=647/3001, vae_loss=308.8738]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 648/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=308.4050, epoch=648/3001, vae_loss=308.4050]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 649/3000 [00:11<00:48, 48.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.3036, epoch=649/3001, vae_loss=309.3036]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 650/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.3036, epoch=649/3001, vae_loss=309.3036]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 650/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=308.5406, epoch=650/3001, vae_loss=308.5406]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 651/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=308.6891, epoch=651/3001, vae_loss=308.6891]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 652/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=308.7404, epoch=652/3001, vae_loss=308.7404]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 653/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.1019, epoch=653/3001, vae_loss=309.1019]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 654/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=309.0426, epoch=654/3001, vae_loss=309.0426]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 655/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.2751, epoch=655/3001, vae_loss=307.2751]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 656/3000 [00:11<00:44, 52.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.5580, epoch=656/3001, vae_loss=307.5580]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 657/3000 [00:11<00:42, 54.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.5580, epoch=656/3001, vae_loss=307.5580]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 657/3000 [00:11<00:42, 54.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.6522, epoch=657/3001, vae_loss=307.6522]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 658/3000 [00:11<00:42, 54.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.0649, epoch=658/3001, vae_loss=307.0649]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 659/3000 [00:11<00:42, 54.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.9407, epoch=659/3001, vae_loss=306.9407]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 660/3000 [00:11<00:42, 54.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.3846, epoch=660/3001, vae_loss=307.3846]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 661/3000 [00:11<00:42, 54.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.0135, epoch=661/3001, vae_loss=307.0135]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 662/3000 [00:11<00:42, 54.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.3149, epoch=662/3001, vae_loss=306.3149]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 663/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.3149, epoch=662/3001, vae_loss=306.3149]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 663/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.6269, epoch=663/3001, vae_loss=306.6269]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 664/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.9410, epoch=664/3001, vae_loss=306.9410]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 665/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.1657, epoch=665/3001, vae_loss=307.1657]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 666/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.6994, epoch=666/3001, vae_loss=306.6994]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 667/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.0512, epoch=667/3001, vae_loss=306.0512]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 668/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.7083, epoch=668/3001, vae_loss=307.7083]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 669/3000 [00:11<00:41, 56.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.0932, epoch=669/3001, vae_loss=306.0932]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 670/3000 [00:11<00:40, 57.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.0932, epoch=669/3001, vae_loss=306.0932]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 670/3000 [00:11<00:40, 57.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.4382, epoch=670/3001, vae_loss=307.4382]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 671/3000 [00:11<00:40, 57.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.7005, epoch=671/3001, vae_loss=307.7005]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 672/3000 [00:11<00:40, 57.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=305.4102, epoch=672/3001, vae_loss=305.4102]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 673/3000 [00:11<00:40, 57.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.2804, epoch=673/3001, vae_loss=307.2804]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 674/3000 [00:11<00:40, 57.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.6609, epoch=674/3001, vae_loss=304.6609]
Training: VAE for learning meaningful embeddings:  22%|██▎       | 675/3000 [00:11<00:40, 57.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=305.8896, epoch=675/3001, vae_loss=305.8896]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 676/3000 [00:11<00:40, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=305.8896, epoch=675/3001, vae_loss=305.8896]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 676/3000 [00:11<00:40, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=307.6127, epoch=676/3001, vae_loss=307.6127]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 677/3000 [00:11<00:40, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.8663, epoch=677/3001, vae_loss=304.8663]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 678/3000 [00:11<00:40, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.3329, epoch=678/3001, vae_loss=306.3329]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 679/3000 [00:11<00:40, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.1725, epoch=679/3001, vae_loss=304.1725]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 680/3000 [00:11<00:40, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.7068, epoch=680/3001, vae_loss=306.7068]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 681/3000 [00:11<00:40, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=305.6377, epoch=681/3001, vae_loss=305.6377]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 682/3000 [00:11<00:40, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=305.6377, epoch=681/3001, vae_loss=305.6377]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 682/3000 [00:11<00:40, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.2522, epoch=682/3001, vae_loss=304.2522]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 683/3000 [00:11<00:40, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=305.4459, epoch=683/3001, vae_loss=305.4459]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 684/3000 [00:11<00:40, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.2413, epoch=684/3001, vae_loss=304.2413]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 685/3000 [00:11<00:40, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.9079, epoch=685/3001, vae_loss=306.9079]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 686/3000 [00:11<00:40, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=303.2237, epoch=686/3001, vae_loss=303.2237]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 687/3000 [00:11<00:40, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.0283, epoch=687/3001, vae_loss=306.0283]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 688/3000 [00:11<00:40, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=306.0283, epoch=687/3001, vae_loss=306.0283]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 688/3000 [00:11<00:40, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.0088, epoch=688/3001, vae_loss=304.0088]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 689/3000 [00:11<00:40, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=303.0157, epoch=689/3001, vae_loss=303.0157]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 690/3000 [00:11<00:40, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.2276, epoch=690/3001, vae_loss=304.2276]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 691/3000 [00:11<00:40, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=303.8993, epoch=691/3001, vae_loss=303.8993]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 692/3000 [00:11<00:40, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=304.1776, epoch=692/3001, vae_loss=304.1776]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 693/3000 [00:11<00:40, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.4599, epoch=693/3001, vae_loss=302.4599]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 694/3000 [00:11<00:39, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.4599, epoch=693/3001, vae_loss=302.4599]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 694/3000 [00:12<00:39, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.8796, epoch=694/3001, vae_loss=302.8796]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 695/3000 [00:12<00:39, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.6356, epoch=695/3001, vae_loss=302.6356]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 696/3000 [00:12<00:39, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.2640, epoch=696/3001, vae_loss=302.2640]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 697/3000 [00:12<00:39, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.4090, epoch=697/3001, vae_loss=302.4090]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 698/3000 [00:12<00:39, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.8194, epoch=698/3001, vae_loss=302.8194]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 699/3000 [00:12<00:39, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.1155, epoch=699/3001, vae_loss=301.1155]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 700/3000 [00:12<00:39, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.1155, epoch=699/3001, vae_loss=301.1155]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 700/3000 [00:12<00:39, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.7159, epoch=700/3001, vae_loss=301.7159]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 701/3000 [00:12<00:39, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.3931, epoch=701/3001, vae_loss=301.3931]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 702/3000 [00:12<00:39, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.8857, epoch=702/3001, vae_loss=300.8857]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 703/3000 [00:12<00:39, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=303.0109, epoch=703/3001, vae_loss=303.0109]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 704/3000 [00:12<00:39, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.5008, epoch=704/3001, vae_loss=301.5008]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 705/3000 [00:12<00:39, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.0165, epoch=705/3001, vae_loss=301.0165]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 706/3000 [00:12<00:39, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.0165, epoch=705/3001, vae_loss=301.0165]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 706/3000 [00:12<00:39, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.2965, epoch=706/3001, vae_loss=302.2965]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 707/3000 [00:12<00:39, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.2628, epoch=707/3001, vae_loss=302.2628]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 708/3000 [00:12<00:39, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.2256, epoch=708/3001, vae_loss=300.2256]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 709/3000 [00:12<00:39, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.4959, epoch=709/3001, vae_loss=301.4959]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 710/3000 [00:12<00:39, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.4963, epoch=710/3001, vae_loss=300.4963]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 711/3000 [00:12<00:39, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.8724, epoch=711/3001, vae_loss=300.8724]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 712/3000 [00:12<00:40, 56.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.8724, epoch=711/3001, vae_loss=300.8724]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 712/3000 [00:12<00:40, 56.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.3782, epoch=712/3001, vae_loss=301.3782]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 713/3000 [00:12<00:40, 56.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.1215, epoch=713/3001, vae_loss=300.1215]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 714/3000 [00:12<00:40, 56.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=302.7271, epoch=714/3001, vae_loss=302.7271]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 715/3000 [00:12<00:40, 56.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=301.8787, epoch=715/3001, vae_loss=301.8787]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 716/3000 [00:12<00:40, 56.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.1004, epoch=716/3001, vae_loss=300.1004]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 717/3000 [00:12<00:40, 56.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.1922, epoch=717/3001, vae_loss=300.1922]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 718/3000 [00:12<00:39, 57.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=300.1922, epoch=717/3001, vae_loss=300.1922]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 718/3000 [00:12<00:39, 57.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=299.9630, epoch=718/3001, vae_loss=299.9630]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 719/3000 [00:12<00:39, 57.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=299.4551, epoch=719/3001, vae_loss=299.4551]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 720/3000 [00:12<00:39, 57.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=299.9643, epoch=720/3001, vae_loss=299.9643]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 721/3000 [00:12<00:39, 57.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=299.1437, epoch=721/3001, vae_loss=299.1437]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 722/3000 [00:12<00:39, 57.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=299.7053, epoch=722/3001, vae_loss=299.7053]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 723/3000 [00:12<00:39, 57.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=298.8827, epoch=723/3001, vae_loss=298.8827]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 724/3000 [00:12<00:39, 57.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=298.8827, epoch=723/3001, vae_loss=298.8827]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 724/3000 [00:12<00:39, 57.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=298.6620, epoch=724/3001, vae_loss=298.6620]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 725/3000 [00:12<00:39, 57.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=299.0724, epoch=725/3001, vae_loss=299.0724]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 726/3000 [00:12<00:39, 57.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=298.7215, epoch=726/3001, vae_loss=298.7215]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 727/3000 [00:12<00:39, 57.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=298.5710, epoch=727/3001, vae_loss=298.5710]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 728/3000 [00:12<00:39, 57.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=299.7543, epoch=728/3001, vae_loss=299.7543]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 729/3000 [00:12<00:39, 57.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=298.3090, epoch=729/3001, vae_loss=298.3090]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 730/3000 [00:12<00:39, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=298.3090, epoch=729/3001, vae_loss=298.3090]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 730/3000 [00:12<00:39, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.7696, epoch=730/3001, vae_loss=297.7696]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 731/3000 [00:12<00:39, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.6440, epoch=731/3001, vae_loss=296.6440]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 732/3000 [00:12<00:39, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.4584, epoch=732/3001, vae_loss=297.4584]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 733/3000 [00:12<00:39, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.9397, epoch=733/3001, vae_loss=297.9397]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 734/3000 [00:12<00:39, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.8262, epoch=734/3001, vae_loss=297.8262]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 735/3000 [00:12<00:39, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.9214, epoch=735/3001, vae_loss=296.9214]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 736/3000 [00:12<00:39, 57.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.9214, epoch=735/3001, vae_loss=296.9214]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 736/3000 [00:12<00:39, 57.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.0692, epoch=736/3001, vae_loss=297.0692]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 737/3000 [00:12<00:39, 57.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.0937, epoch=737/3001, vae_loss=297.0937]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 738/3000 [00:12<00:39, 57.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.3231, epoch=738/3001, vae_loss=296.3231]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 739/3000 [00:12<00:39, 57.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.3370, epoch=739/3001, vae_loss=297.3370]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 740/3000 [00:12<00:39, 57.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.9099, epoch=740/3001, vae_loss=296.9099]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 741/3000 [00:12<00:39, 57.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.3645, epoch=741/3001, vae_loss=296.3645]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 742/3000 [00:12<00:39, 57.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.3645, epoch=741/3001, vae_loss=296.3645]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 742/3000 [00:12<00:39, 57.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.1589, epoch=742/3001, vae_loss=297.1589]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 743/3000 [00:12<00:39, 57.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=297.1666, epoch=743/3001, vae_loss=297.1666]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 744/3000 [00:12<00:39, 57.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=295.4510, epoch=744/3001, vae_loss=295.4510]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 745/3000 [00:12<00:39, 57.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=295.9757, epoch=745/3001, vae_loss=295.9757]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 746/3000 [00:12<00:39, 57.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.5070, epoch=746/3001, vae_loss=294.5070]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 747/3000 [00:12<00:39, 57.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.8431, epoch=747/3001, vae_loss=294.8431]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 748/3000 [00:12<00:38, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.8431, epoch=747/3001, vae_loss=294.8431]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 748/3000 [00:12<00:38, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=295.3338, epoch=748/3001, vae_loss=295.3338]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 749/3000 [00:12<00:38, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=296.6952, epoch=749/3001, vae_loss=296.6952]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 750/3000 [00:12<00:38, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=295.6888, epoch=750/3001, vae_loss=295.6888]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 751/3000 [00:13<00:38, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=295.1500, epoch=751/3001, vae_loss=295.1500]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 752/3000 [00:13<00:38, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.6743, epoch=752/3001, vae_loss=294.6743]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 753/3000 [00:13<00:38, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=295.1807, epoch=753/3001, vae_loss=295.1807]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 754/3000 [00:13<00:38, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=295.1807, epoch=753/3001, vae_loss=295.1807]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 754/3000 [00:13<00:38, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.2797, epoch=754/3001, vae_loss=294.2797]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 755/3000 [00:13<00:38, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.7698, epoch=755/3001, vae_loss=294.7698]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 756/3000 [00:13<00:38, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.7542, epoch=756/3001, vae_loss=294.7542]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 757/3000 [00:13<00:38, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.8516, epoch=757/3001, vae_loss=294.8516]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 758/3000 [00:13<00:38, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.1468, epoch=758/3001, vae_loss=294.1468]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 759/3000 [00:13<00:38, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.4743, epoch=759/3001, vae_loss=294.4743]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 760/3000 [00:13<00:38, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.4743, epoch=759/3001, vae_loss=294.4743]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 760/3000 [00:13<00:38, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.2160, epoch=760/3001, vae_loss=294.2160]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 761/3000 [00:13<00:38, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.4265, epoch=761/3001, vae_loss=294.4265]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 762/3000 [00:13<00:38, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.4877, epoch=762/3001, vae_loss=294.4877]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 763/3000 [00:13<00:38, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=294.4846, epoch=763/3001, vae_loss=294.4846]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 764/3000 [00:13<00:38, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.6696, epoch=764/3001, vae_loss=293.6696]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 765/3000 [00:13<00:38, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.6790, epoch=765/3001, vae_loss=293.6790]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 766/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.6790, epoch=765/3001, vae_loss=293.6790]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 766/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.7617, epoch=766/3001, vae_loss=292.7617]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 767/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.8510, epoch=767/3001, vae_loss=292.8510]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 768/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.1920, epoch=768/3001, vae_loss=293.1920]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 769/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.4326, epoch=769/3001, vae_loss=293.4326]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 770/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.4941, epoch=770/3001, vae_loss=293.4941]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 771/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.0097, epoch=771/3001, vae_loss=292.0097]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 772/3000 [00:13<00:38, 58.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.9770, epoch=772/3001, vae_loss=292.9770]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 773/3000 [00:13<00:37, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.9770, epoch=772/3001, vae_loss=292.9770]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 773/3000 [00:13<00:37, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.3731, epoch=773/3001, vae_loss=292.3731]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 774/3000 [00:13<00:37, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.1178, epoch=774/3001, vae_loss=293.1178]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 775/3000 [00:13<00:37, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.9484, epoch=775/3001, vae_loss=293.9484]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 776/3000 [00:13<00:37, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=293.1524, epoch=776/3001, vae_loss=293.1524]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 777/3000 [00:13<00:37, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.7955, epoch=777/3001, vae_loss=292.7955]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 778/3000 [00:13<00:37, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.4330, epoch=778/3001, vae_loss=292.4330]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 779/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.4330, epoch=778/3001, vae_loss=292.4330]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 779/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.0930, epoch=779/3001, vae_loss=292.0930]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 780/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.1508, epoch=780/3001, vae_loss=292.1508]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 781/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.1560, epoch=781/3001, vae_loss=292.1560]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 782/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.0458, epoch=782/3001, vae_loss=291.0458]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 783/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.0528, epoch=783/3001, vae_loss=292.0528]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 784/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.8847, epoch=784/3001, vae_loss=291.8847]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 785/3000 [00:13<00:37, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.1723, epoch=785/3001, vae_loss=291.1723]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 786/3000 [00:13<00:37, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.1723, epoch=785/3001, vae_loss=291.1723]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 786/3000 [00:13<00:37, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=292.9846, epoch=786/3001, vae_loss=292.9846]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 787/3000 [00:13<00:37, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.4195, epoch=787/3001, vae_loss=291.4195]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 788/3000 [00:13<00:36, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.8663, epoch=788/3001, vae_loss=291.8663]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 789/3000 [00:13<00:36, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.3494, epoch=789/3001, vae_loss=291.3494]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 790/3000 [00:13<00:36, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.9447, epoch=790/3001, vae_loss=290.9447]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 791/3000 [00:13<00:36, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.7074, epoch=791/3001, vae_loss=291.7074]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 792/3000 [00:13<00:37, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.7074, epoch=791/3001, vae_loss=291.7074]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 792/3000 [00:13<00:37, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.5174, epoch=792/3001, vae_loss=291.5174]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 793/3000 [00:13<00:37, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.9713, epoch=793/3001, vae_loss=290.9713]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 794/3000 [00:13<00:37, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.8952, epoch=794/3001, vae_loss=290.8952]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 795/3000 [00:13<00:37, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.4013, epoch=795/3001, vae_loss=290.4013]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 796/3000 [00:13<00:37, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.1746, epoch=796/3001, vae_loss=290.1746]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 797/3000 [00:13<00:37, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.7336, epoch=797/3001, vae_loss=291.7336]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 798/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.7336, epoch=797/3001, vae_loss=291.7336]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 798/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.7890, epoch=798/3001, vae_loss=290.7890]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 799/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.9865, epoch=799/3001, vae_loss=290.9865]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 800/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.1320, epoch=800/3001, vae_loss=291.1320]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 801/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.0148, epoch=801/3001, vae_loss=291.0148]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 802/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.4939, epoch=802/3001, vae_loss=290.4939]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 803/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.3423, epoch=803/3001, vae_loss=290.3423]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 804/3000 [00:13<00:37, 59.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.7822, epoch=804/3001, vae_loss=290.7822]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 805/3000 [00:13<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.7822, epoch=804/3001, vae_loss=290.7822]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 805/3000 [00:13<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.6977, epoch=805/3001, vae_loss=290.6977]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 806/3000 [00:13<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=291.5961, epoch=806/3001, vae_loss=291.5961]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 807/3000 [00:13<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=289.8160, epoch=807/3001, vae_loss=289.8160]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 808/3000 [00:13<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=290.3200, epoch=808/3001, vae_loss=290.3200]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 809/3000 [00:13<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.6029, epoch=809/3001, vae_loss=288.6029]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 810/3000 [00:13<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=289.0795, epoch=810/3001, vae_loss=289.0795]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 811/3000 [00:14<00:36, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.7011, epoch=811/3001, vae_loss=288.7011]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 812/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.7011, epoch=811/3001, vae_loss=288.7011]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 812/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.1646, epoch=812/3001, vae_loss=288.1646]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 813/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.7917, epoch=813/3001, vae_loss=288.7917]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 814/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.4354, epoch=814/3001, vae_loss=288.4354]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 815/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.9490, epoch=815/3001, vae_loss=288.9490]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 816/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.4744, epoch=816/3001, vae_loss=288.4744]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 817/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=289.0866, epoch=817/3001, vae_loss=289.0866]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 818/3000 [00:14<00:36, 59.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.3485, epoch=818/3001, vae_loss=288.3485]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 819/3000 [00:14<00:36, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.3485, epoch=818/3001, vae_loss=288.3485]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 819/3000 [00:14<00:36, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.5001, epoch=819/3001, vae_loss=288.5001]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 820/3000 [00:14<00:36, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.2587, epoch=820/3001, vae_loss=288.2587]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 821/3000 [00:14<00:36, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.6322, epoch=821/3001, vae_loss=288.6322]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 822/3000 [00:14<00:36, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.5435, epoch=822/3001, vae_loss=288.5435]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 823/3000 [00:14<00:36, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.3764, epoch=823/3001, vae_loss=287.3764]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 824/3000 [00:14<00:36, 59.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.5952, epoch=824/3001, vae_loss=288.5952]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 825/3000 [00:14<00:36, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.5952, epoch=824/3001, vae_loss=288.5952]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 825/3000 [00:14<00:36, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.8943, epoch=825/3001, vae_loss=288.8943]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 826/3000 [00:14<00:36, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.9378, epoch=826/3001, vae_loss=287.9378]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 827/3000 [00:14<00:36, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=288.0283, epoch=827/3001, vae_loss=288.0283]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 828/3000 [00:14<00:36, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.3555, epoch=828/3001, vae_loss=287.3555]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 829/3000 [00:14<00:36, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.5722, epoch=829/3001, vae_loss=287.5722]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 830/3000 [00:14<00:36, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.5122, epoch=830/3001, vae_loss=286.5122]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 831/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.5122, epoch=830/3001, vae_loss=286.5122]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 831/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.9676, epoch=831/3001, vae_loss=286.9676]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 832/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.6500, epoch=832/3001, vae_loss=287.6500]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 833/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.2278, epoch=833/3001, vae_loss=287.2278]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 834/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.1877, epoch=834/3001, vae_loss=287.1877]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 835/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.6661, epoch=835/3001, vae_loss=286.6661]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 836/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.7772, epoch=836/3001, vae_loss=286.7772]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 837/3000 [00:14<00:36, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.0609, epoch=837/3001, vae_loss=286.0609]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 838/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.0609, epoch=837/3001, vae_loss=286.0609]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 838/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=287.2930, epoch=838/3001, vae_loss=287.2930]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 839/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.9173, epoch=839/3001, vae_loss=285.9173]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 840/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.5117, epoch=840/3001, vae_loss=286.5117]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 841/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.1080, epoch=841/3001, vae_loss=286.1080]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 842/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.8831, epoch=842/3001, vae_loss=286.8831]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 843/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.3422, epoch=843/3001, vae_loss=285.3422]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 844/3000 [00:14<00:35, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.7018, epoch=844/3001, vae_loss=286.7018]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 845/3000 [00:14<00:36, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.7018, epoch=844/3001, vae_loss=286.7018]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 845/3000 [00:14<00:36, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.8798, epoch=845/3001, vae_loss=286.8798]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 846/3000 [00:14<00:36, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.8158, epoch=846/3001, vae_loss=285.8158]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 847/3000 [00:14<00:36, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.3022, epoch=847/3001, vae_loss=286.3022]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 848/3000 [00:14<00:36, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.5799, epoch=848/3001, vae_loss=285.5799]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 849/3000 [00:14<00:36, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.7040, epoch=849/3001, vae_loss=286.7040]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 850/3000 [00:14<00:36, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.2911, epoch=850/3001, vae_loss=286.2911]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 851/3000 [00:14<00:36, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.2911, epoch=850/3001, vae_loss=286.2911]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 851/3000 [00:14<00:36, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.9940, epoch=851/3001, vae_loss=285.9940]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 852/3000 [00:14<00:36, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.7839, epoch=852/3001, vae_loss=285.7839]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 853/3000 [00:14<00:36, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.1652, epoch=853/3001, vae_loss=285.1652]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 854/3000 [00:14<00:36, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.6719, epoch=854/3001, vae_loss=285.6719]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 855/3000 [00:14<00:36, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.2900, epoch=855/3001, vae_loss=285.2900]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 856/3000 [00:14<00:36, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.5122, epoch=856/3001, vae_loss=284.5122]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 857/3000 [00:14<00:36, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.5122, epoch=856/3001, vae_loss=284.5122]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 857/3000 [00:14<00:36, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.7249, epoch=857/3001, vae_loss=285.7249]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 858/3000 [00:14<00:36, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.2546, epoch=858/3001, vae_loss=284.2546]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 859/3000 [00:14<00:36, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=286.0005, epoch=859/3001, vae_loss=286.0005]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 860/3000 [00:14<00:36, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=285.1172, epoch=860/3001, vae_loss=285.1172]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 861/3000 [00:14<00:36, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.9080, epoch=861/3001, vae_loss=284.9080]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 862/3000 [00:14<00:36, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.8713, epoch=862/3001, vae_loss=284.8713]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 863/3000 [00:14<00:36, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.8713, epoch=862/3001, vae_loss=284.8713]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 863/3000 [00:14<00:36, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.9803, epoch=863/3001, vae_loss=283.9803]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 864/3000 [00:14<00:36, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.1993, epoch=864/3001, vae_loss=284.1993]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 865/3000 [00:14<00:36, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=284.2805, epoch=865/3001, vae_loss=284.2805]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 866/3000 [00:14<00:36, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.9193, epoch=866/3001, vae_loss=283.9193]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 867/3000 [00:14<00:36, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.4586, epoch=867/3001, vae_loss=283.4586]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 868/3000 [00:14<00:36, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.8566, epoch=868/3001, vae_loss=283.8566]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 869/3000 [00:14<00:36, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.8566, epoch=868/3001, vae_loss=283.8566]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 869/3000 [00:14<00:36, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.9799, epoch=869/3001, vae_loss=283.9799]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 870/3000 [00:15<00:36, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.9823, epoch=870/3001, vae_loss=283.9823]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 871/3000 [00:15<00:36, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.1214, epoch=871/3001, vae_loss=283.1214]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 872/3000 [00:15<00:36, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.1974, epoch=872/3001, vae_loss=283.1974]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 873/3000 [00:15<00:36, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.6562, epoch=873/3001, vae_loss=283.6562]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 874/3000 [00:15<00:36, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.4426, epoch=874/3001, vae_loss=283.4426]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 875/3000 [00:15<00:36, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.4426, epoch=874/3001, vae_loss=283.4426]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 875/3000 [00:15<00:36, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.2377, epoch=875/3001, vae_loss=283.2377]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 876/3000 [00:15<00:36, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.4540, epoch=876/3001, vae_loss=283.4540]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 877/3000 [00:15<00:36, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.8369, epoch=877/3001, vae_loss=282.8369]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 878/3000 [00:15<00:36, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.3137, epoch=878/3001, vae_loss=283.3137]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 879/3000 [00:15<00:36, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.2285, epoch=879/3001, vae_loss=283.2285]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 880/3000 [00:15<00:36, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.8826, epoch=880/3001, vae_loss=282.8826]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 881/3000 [00:15<00:36, 58.53it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.8826, epoch=880/3001, vae_loss=282.8826]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 881/3000 [00:15<00:36, 58.53it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.8777, epoch=881/3001, vae_loss=282.8777]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 882/3000 [00:15<00:36, 58.53it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.5906, epoch=882/3001, vae_loss=282.5906]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 883/3000 [00:15<00:36, 58.53it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.0750, epoch=883/3001, vae_loss=283.0750]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 884/3000 [00:15<00:36, 58.53it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.3774, epoch=884/3001, vae_loss=283.3774]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 885/3000 [00:15<00:36, 58.53it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=283.5612, epoch=885/3001, vae_loss=283.5612]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 886/3000 [00:15<00:36, 58.53it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.3269, epoch=886/3001, vae_loss=282.3269]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 887/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.3269, epoch=886/3001, vae_loss=282.3269]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 887/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.5570, epoch=887/3001, vae_loss=282.5570]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 888/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.7686, epoch=888/3001, vae_loss=282.7686]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 889/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.0661, epoch=889/3001, vae_loss=282.0661]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 890/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.0468, epoch=890/3001, vae_loss=282.0468]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 891/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.8228, epoch=891/3001, vae_loss=282.8228]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 892/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.1582, epoch=892/3001, vae_loss=282.1582]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 893/3000 [00:15<00:35, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.0854, epoch=893/3001, vae_loss=282.0854]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 894/3000 [00:15<00:35, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.0854, epoch=893/3001, vae_loss=282.0854]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 894/3000 [00:15<00:35, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.0192, epoch=894/3001, vae_loss=282.0192]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 895/3000 [00:15<00:35, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.4205, epoch=895/3001, vae_loss=282.4205]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 896/3000 [00:15<00:35, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.2890, epoch=896/3001, vae_loss=282.2890]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 897/3000 [00:15<00:35, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.1197, epoch=897/3001, vae_loss=282.1197]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 898/3000 [00:15<00:35, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.3221, epoch=898/3001, vae_loss=282.3221]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 899/3000 [00:15<00:35, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.1194, epoch=899/3001, vae_loss=281.1194]
Training: VAE for learning meaningful embeddings:  30%|███       | 900/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.1194, epoch=899/3001, vae_loss=281.1194]
Training: VAE for learning meaningful embeddings:  30%|███       | 900/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.2454, epoch=900/3001, vae_loss=282.2454]
Training: VAE for learning meaningful embeddings:  30%|███       | 901/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.9067, epoch=901/3001, vae_loss=280.9067]
Training: VAE for learning meaningful embeddings:  30%|███       | 902/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.6474, epoch=902/3001, vae_loss=281.6474]
Training: VAE for learning meaningful embeddings:  30%|███       | 903/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.9221, epoch=903/3001, vae_loss=281.9221]
Training: VAE for learning meaningful embeddings:  30%|███       | 904/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.3147, epoch=904/3001, vae_loss=281.3147]
Training: VAE for learning meaningful embeddings:  30%|███       | 905/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.0722, epoch=905/3001, vae_loss=282.0722]
Training: VAE for learning meaningful embeddings:  30%|███       | 906/3000 [00:15<00:35, 59.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.3331, epoch=906/3001, vae_loss=280.3331]
Training: VAE for learning meaningful embeddings:  30%|███       | 907/3000 [00:15<00:35, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.3331, epoch=906/3001, vae_loss=280.3331]
Training: VAE for learning meaningful embeddings:  30%|███       | 907/3000 [00:15<00:35, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.5329, epoch=907/3001, vae_loss=281.5329]
Training: VAE for learning meaningful embeddings:  30%|███       | 908/3000 [00:15<00:34, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.1653, epoch=908/3001, vae_loss=281.1653]
Training: VAE for learning meaningful embeddings:  30%|███       | 909/3000 [00:15<00:34, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.1750, epoch=909/3001, vae_loss=281.1750]
Training: VAE for learning meaningful embeddings:  30%|███       | 910/3000 [00:15<00:34, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.6527, epoch=910/3001, vae_loss=281.6527]
Training: VAE for learning meaningful embeddings:  30%|███       | 911/3000 [00:15<00:34, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.8327, epoch=911/3001, vae_loss=281.8327]
Training: VAE for learning meaningful embeddings:  30%|███       | 912/3000 [00:15<00:34, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.0668, epoch=912/3001, vae_loss=281.0668]
Training: VAE for learning meaningful embeddings:  30%|███       | 913/3000 [00:15<00:35, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.0668, epoch=912/3001, vae_loss=281.0668]
Training: VAE for learning meaningful embeddings:  30%|███       | 913/3000 [00:15<00:35, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.8700, epoch=913/3001, vae_loss=280.8700]
Training: VAE for learning meaningful embeddings:  30%|███       | 914/3000 [00:15<00:35, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.5346, epoch=914/3001, vae_loss=281.5346]
Training: VAE for learning meaningful embeddings:  30%|███       | 915/3000 [00:15<00:35, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.8713, epoch=915/3001, vae_loss=281.8713]
Training: VAE for learning meaningful embeddings:  31%|███       | 916/3000 [00:15<00:35, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.0189, epoch=916/3001, vae_loss=281.0189]
Training: VAE for learning meaningful embeddings:  31%|███       | 917/3000 [00:15<00:35, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.7983, epoch=917/3001, vae_loss=281.7983]
Training: VAE for learning meaningful embeddings:  31%|███       | 918/3000 [00:15<00:35, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.3098, epoch=918/3001, vae_loss=282.3098]
Training: VAE for learning meaningful embeddings:  31%|███       | 919/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=282.3098, epoch=918/3001, vae_loss=282.3098]
Training: VAE for learning meaningful embeddings:  31%|███       | 919/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.7878, epoch=919/3001, vae_loss=280.7878]
Training: VAE for learning meaningful embeddings:  31%|███       | 920/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.8873, epoch=920/3001, vae_loss=280.8873]
Training: VAE for learning meaningful embeddings:  31%|███       | 921/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.1222, epoch=921/3001, vae_loss=280.1222]
Training: VAE for learning meaningful embeddings:  31%|███       | 922/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.5516, epoch=922/3001, vae_loss=281.5516]
Training: VAE for learning meaningful embeddings:  31%|███       | 923/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.7580, epoch=923/3001, vae_loss=280.7580]
Training: VAE for learning meaningful embeddings:  31%|███       | 924/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.4539, epoch=924/3001, vae_loss=281.4539]
Training: VAE for learning meaningful embeddings:  31%|███       | 925/3000 [00:15<00:34, 59.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.5553, epoch=925/3001, vae_loss=279.5553]
Training: VAE for learning meaningful embeddings:  31%|███       | 926/3000 [00:15<00:34, 59.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.5553, epoch=925/3001, vae_loss=279.5553]
Training: VAE for learning meaningful embeddings:  31%|███       | 926/3000 [00:15<00:34, 59.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.2805, epoch=926/3001, vae_loss=280.2805]
Training: VAE for learning meaningful embeddings:  31%|███       | 927/3000 [00:15<00:34, 59.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.0033, epoch=927/3001, vae_loss=280.0033]
Training: VAE for learning meaningful embeddings:  31%|███       | 928/3000 [00:15<00:34, 59.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.3942, epoch=928/3001, vae_loss=280.3942]
Training: VAE for learning meaningful embeddings:  31%|███       | 929/3000 [00:15<00:34, 59.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.3716, epoch=929/3001, vae_loss=281.3716]
Training: VAE for learning meaningful embeddings:  31%|███       | 930/3000 [00:16<00:34, 59.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.6655, epoch=930/3001, vae_loss=279.6655]
Training: VAE for learning meaningful embeddings:  31%|███       | 931/3000 [00:16<00:34, 59.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.4495, epoch=931/3001, vae_loss=281.4495]
Training: VAE for learning meaningful embeddings:  31%|███       | 932/3000 [00:16<00:34, 59.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.4495, epoch=931/3001, vae_loss=281.4495]
Training: VAE for learning meaningful embeddings:  31%|███       | 932/3000 [00:16<00:34, 59.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.3564, epoch=932/3001, vae_loss=281.3564]
Training: VAE for learning meaningful embeddings:  31%|███       | 933/3000 [00:16<00:34, 59.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.7323, epoch=933/3001, vae_loss=280.7323]
Training: VAE for learning meaningful embeddings:  31%|███       | 934/3000 [00:16<00:34, 59.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.6257, epoch=934/3001, vae_loss=280.6257]
Training: VAE for learning meaningful embeddings:  31%|███       | 935/3000 [00:16<00:34, 59.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.8958, epoch=935/3001, vae_loss=279.8958]
Training: VAE for learning meaningful embeddings:  31%|███       | 936/3000 [00:16<00:34, 59.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.2219, epoch=936/3001, vae_loss=280.2219]
Training: VAE for learning meaningful embeddings:  31%|███       | 937/3000 [00:16<00:34, 59.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.4434, epoch=937/3001, vae_loss=279.4434]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 938/3000 [00:16<00:34, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.4434, epoch=937/3001, vae_loss=279.4434]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 938/3000 [00:16<00:34, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.7823, epoch=938/3001, vae_loss=280.7823]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 939/3000 [00:16<00:34, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=281.0987, epoch=939/3001, vae_loss=281.0987]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 940/3000 [00:16<00:34, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.6256, epoch=940/3001, vae_loss=279.6256]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 941/3000 [00:16<00:34, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.0092, epoch=941/3001, vae_loss=280.0092]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 942/3000 [00:16<00:34, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.4762, epoch=942/3001, vae_loss=279.4762]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 943/3000 [00:16<00:34, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.7253, epoch=943/3001, vae_loss=279.7253]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 944/3000 [00:16<00:34, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.7253, epoch=943/3001, vae_loss=279.7253]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 944/3000 [00:16<00:34, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.9901, epoch=944/3001, vae_loss=279.9901]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 945/3000 [00:16<00:34, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.2288, epoch=945/3001, vae_loss=280.2288]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 946/3000 [00:16<00:34, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=280.1924, epoch=946/3001, vae_loss=280.1924]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 947/3000 [00:16<00:34, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.3881, epoch=947/3001, vae_loss=279.3881]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 948/3000 [00:16<00:34, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.5557, epoch=948/3001, vae_loss=279.5557]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 949/3000 [00:16<00:34, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.0628, epoch=949/3001, vae_loss=279.0628]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 950/3000 [00:16<00:34, 58.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.0628, epoch=949/3001, vae_loss=279.0628]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 950/3000 [00:16<00:34, 58.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.8440, epoch=950/3001, vae_loss=279.8440]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 951/3000 [00:16<00:34, 58.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.8181, epoch=951/3001, vae_loss=279.8181]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 952/3000 [00:16<00:34, 58.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.8825, epoch=952/3001, vae_loss=278.8825]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 953/3000 [00:16<00:34, 58.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.5262, epoch=953/3001, vae_loss=279.5262]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 954/3000 [00:16<00:34, 58.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.5589, epoch=954/3001, vae_loss=278.5589]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 955/3000 [00:16<00:34, 58.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.2825, epoch=955/3001, vae_loss=278.2825]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 956/3000 [00:16<00:34, 58.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.2825, epoch=955/3001, vae_loss=278.2825]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 956/3000 [00:16<00:34, 58.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.9660, epoch=956/3001, vae_loss=277.9660]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 957/3000 [00:16<00:34, 58.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.2913, epoch=957/3001, vae_loss=279.2913]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 958/3000 [00:16<00:34, 58.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.0581, epoch=958/3001, vae_loss=279.0581]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 959/3000 [00:16<00:34, 58.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.1922, epoch=959/3001, vae_loss=278.1922]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 960/3000 [00:16<00:34, 58.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=279.7067, epoch=960/3001, vae_loss=279.7067]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 961/3000 [00:16<00:34, 58.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.5102, epoch=961/3001, vae_loss=278.5102]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 962/3000 [00:16<00:34, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.5102, epoch=961/3001, vae_loss=278.5102]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 962/3000 [00:16<00:34, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.3074, epoch=962/3001, vae_loss=278.3074]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 963/3000 [00:16<00:34, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.8478, epoch=963/3001, vae_loss=278.8478]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 964/3000 [00:16<00:34, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.3627, epoch=964/3001, vae_loss=278.3627]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 965/3000 [00:16<00:34, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.4392, epoch=965/3001, vae_loss=278.4392]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 966/3000 [00:16<00:34, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.0022, epoch=966/3001, vae_loss=278.0022]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 967/3000 [00:16<00:34, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.7291, epoch=967/3001, vae_loss=278.7291]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 968/3000 [00:16<00:34, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.7291, epoch=967/3001, vae_loss=278.7291]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 968/3000 [00:16<00:34, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.6347, epoch=968/3001, vae_loss=277.6347]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 969/3000 [00:16<00:34, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.7509, epoch=969/3001, vae_loss=278.7509]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 970/3000 [00:16<00:34, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.7002, epoch=970/3001, vae_loss=278.7002]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 971/3000 [00:16<00:34, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.3985, epoch=971/3001, vae_loss=278.3985]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 972/3000 [00:16<00:34, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.9966, epoch=972/3001, vae_loss=278.9966]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 973/3000 [00:16<00:34, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.3851, epoch=973/3001, vae_loss=277.3851]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 974/3000 [00:16<00:34, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.3851, epoch=973/3001, vae_loss=277.3851]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 974/3000 [00:16<00:34, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=278.7487, epoch=974/3001, vae_loss=278.7487]
Training: VAE for learning meaningful embeddings:  32%|███▎      | 975/3000 [00:16<00:34, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.9074, epoch=975/3001, vae_loss=276.9074]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 976/3000 [00:16<00:34, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.9937, epoch=976/3001, vae_loss=277.9937]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 977/3000 [00:16<00:34, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.7223, epoch=977/3001, vae_loss=277.7223]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 978/3000 [00:16<00:34, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.3816, epoch=978/3001, vae_loss=277.3816]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 979/3000 [00:16<00:34, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.4559, epoch=979/3001, vae_loss=277.4559]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 980/3000 [00:16<00:34, 58.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.4559, epoch=979/3001, vae_loss=277.4559]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 980/3000 [00:16<00:34, 58.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.3150, epoch=980/3001, vae_loss=277.3150]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 981/3000 [00:16<00:34, 58.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.8266, epoch=981/3001, vae_loss=276.8266]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 982/3000 [00:16<00:34, 58.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.5284, epoch=982/3001, vae_loss=277.5284]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 983/3000 [00:16<00:34, 58.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.0322, epoch=983/3001, vae_loss=277.0322]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 984/3000 [00:16<00:34, 58.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.5231, epoch=984/3001, vae_loss=277.5231]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 985/3000 [00:16<00:34, 58.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.3445, epoch=985/3001, vae_loss=277.3445]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 986/3000 [00:16<00:34, 58.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.3445, epoch=985/3001, vae_loss=277.3445]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 986/3000 [00:16<00:34, 58.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.7969, epoch=986/3001, vae_loss=276.7969]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 987/3000 [00:16<00:34, 58.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.5719, epoch=987/3001, vae_loss=276.5719]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 988/3000 [00:17<00:34, 58.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.5042, epoch=988/3001, vae_loss=277.5042]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 989/3000 [00:17<00:34, 58.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.9317, epoch=989/3001, vae_loss=275.9317]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 990/3000 [00:17<00:34, 58.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.1957, epoch=990/3001, vae_loss=277.1957]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 991/3000 [00:17<00:34, 58.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.1115, epoch=991/3001, vae_loss=276.1115]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 992/3000 [00:17<00:34, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.1115, epoch=991/3001, vae_loss=276.1115]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 992/3000 [00:17<00:34, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.9579, epoch=992/3001, vae_loss=276.9579]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 993/3000 [00:17<00:34, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.0214, epoch=993/3001, vae_loss=276.0214]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 994/3000 [00:17<00:34, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.9025, epoch=994/3001, vae_loss=276.9025]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 995/3000 [00:17<00:34, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.0581, epoch=995/3001, vae_loss=276.0581]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 996/3000 [00:17<00:34, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.7122, epoch=996/3001, vae_loss=275.7122]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 997/3000 [00:17<00:34, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.1965, epoch=997/3001, vae_loss=276.1965]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 998/3000 [00:17<00:34, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.1965, epoch=997/3001, vae_loss=276.1965]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 998/3000 [00:17<00:34, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.9130, epoch=998/3001, vae_loss=276.9130]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 999/3000 [00:17<00:34, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.9971, epoch=999/3001, vae_loss=275.9971]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 1000/3000 [00:17<00:34, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.2428, epoch=1000/3001, vae_loss=276.2428]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 1001/3000 [00:17<00:34, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.8949, epoch=1001/3001, vae_loss=276.8949]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 1002/3000 [00:17<00:34, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.2936, epoch=1002/3001, vae_loss=276.2936]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 1003/3000 [00:17<00:34, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.8401, epoch=1003/3001, vae_loss=275.8401]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 1004/3000 [00:17<00:34, 58.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.8401, epoch=1003/3001, vae_loss=275.8401]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 1004/3000 [00:17<00:34, 58.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.7692, epoch=1004/3001, vae_loss=275.7692]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1005/3000 [00:17<00:34, 58.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.6816, epoch=1005/3001, vae_loss=275.6816]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1006/3000 [00:17<00:34, 58.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.5818, epoch=1006/3001, vae_loss=275.5818]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1007/3000 [00:17<00:34, 58.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.1509, epoch=1007/3001, vae_loss=276.1509]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1008/3000 [00:17<00:34, 58.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.8653, epoch=1008/3001, vae_loss=274.8653]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1009/3000 [00:17<00:34, 58.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.7657, epoch=1009/3001, vae_loss=275.7657]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1010/3000 [00:17<00:33, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.7657, epoch=1009/3001, vae_loss=275.7657]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1010/3000 [00:17<00:33, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.5105, epoch=1010/3001, vae_loss=275.5105]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1011/3000 [00:17<00:33, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.9628, epoch=1011/3001, vae_loss=275.9628]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 1012/3000 [00:17<00:33, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.5471, epoch=1012/3001, vae_loss=275.5471]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1013/3000 [00:17<00:33, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.6834, epoch=1013/3001, vae_loss=275.6834]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1014/3000 [00:17<00:33, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.7994, epoch=1014/3001, vae_loss=275.7994]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1015/3000 [00:17<00:33, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.6491, epoch=1015/3001, vae_loss=275.6491]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1016/3000 [00:17<00:33, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.6491, epoch=1015/3001, vae_loss=275.6491]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1016/3000 [00:17<00:33, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.1259, epoch=1016/3001, vae_loss=275.1259]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1017/3000 [00:17<00:33, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.9138, epoch=1017/3001, vae_loss=275.9138]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1018/3000 [00:17<00:33, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=276.5467, epoch=1018/3001, vae_loss=276.5467]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1019/3000 [00:17<00:33, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.5311, epoch=1019/3001, vae_loss=275.5311]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1020/3000 [00:17<00:33, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=277.1194, epoch=1020/3001, vae_loss=277.1194]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1021/3000 [00:17<00:33, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.6034, epoch=1021/3001, vae_loss=275.6034]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1022/3000 [00:17<00:33, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.6034, epoch=1021/3001, vae_loss=275.6034]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1022/3000 [00:17<00:33, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.2888, epoch=1022/3001, vae_loss=275.2888]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1023/3000 [00:17<00:33, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.1790, epoch=1023/3001, vae_loss=275.1790]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1024/3000 [00:17<00:33, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.5652, epoch=1024/3001, vae_loss=275.5652]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1025/3000 [00:17<00:33, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.8419, epoch=1025/3001, vae_loss=275.8419]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1026/3000 [00:17<00:33, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.7629, epoch=1026/3001, vae_loss=274.7629]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1027/3000 [00:17<00:33, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.0108, epoch=1027/3001, vae_loss=275.0108]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1028/3000 [00:17<00:33, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.0108, epoch=1027/3001, vae_loss=275.0108]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1028/3000 [00:17<00:33, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.7389, epoch=1028/3001, vae_loss=274.7389]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1029/3000 [00:17<00:33, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.0596, epoch=1029/3001, vae_loss=274.0596]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1030/3000 [00:17<00:33, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.8105, epoch=1030/3001, vae_loss=274.8105]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1031/3000 [00:17<00:33, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=275.1353, epoch=1031/3001, vae_loss=275.1353]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1032/3000 [00:17<00:33, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.4894, epoch=1032/3001, vae_loss=274.4894]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1033/3000 [00:17<00:33, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.5262, epoch=1033/3001, vae_loss=274.5262]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1034/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.5262, epoch=1033/3001, vae_loss=274.5262]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1034/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.3940, epoch=1034/3001, vae_loss=274.3940]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 1035/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.4556, epoch=1035/3001, vae_loss=274.4556]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1036/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.7951, epoch=1036/3001, vae_loss=274.7951]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1037/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.2381, epoch=1037/3001, vae_loss=274.2381]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1038/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.4954, epoch=1038/3001, vae_loss=274.4954]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1039/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.7824, epoch=1039/3001, vae_loss=274.7824]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1040/3000 [00:17<00:33, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.2008, epoch=1040/3001, vae_loss=274.2008]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1041/3000 [00:17<00:33, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.2008, epoch=1040/3001, vae_loss=274.2008]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1041/3000 [00:17<00:33, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.4398, epoch=1041/3001, vae_loss=274.4398]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1042/3000 [00:17<00:33, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.3042, epoch=1042/3001, vae_loss=274.3042]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1043/3000 [00:17<00:33, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.2704, epoch=1043/3001, vae_loss=274.2704]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1044/3000 [00:17<00:33, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.4737, epoch=1044/3001, vae_loss=274.4737]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1045/3000 [00:17<00:33, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.1014, epoch=1045/3001, vae_loss=274.1014]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1046/3000 [00:17<00:33, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.0374, epoch=1046/3001, vae_loss=274.0374]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1047/3000 [00:17<00:32, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.0374, epoch=1046/3001, vae_loss=274.0374]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1047/3000 [00:17<00:32, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.6034, epoch=1047/3001, vae_loss=274.6034]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1048/3000 [00:18<00:32, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.0146, epoch=1048/3001, vae_loss=274.0146]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 1049/3000 [00:18<00:32, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.2791, epoch=1049/3001, vae_loss=274.2791]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1050/3000 [00:18<00:32, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.8688, epoch=1050/3001, vae_loss=273.8688]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1051/3000 [00:18<00:32, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.1841, epoch=1051/3001, vae_loss=274.1841]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1052/3000 [00:18<00:32, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.8370, epoch=1052/3001, vae_loss=273.8370]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1053/3000 [00:18<00:32, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.8370, epoch=1052/3001, vae_loss=273.8370]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1053/3000 [00:18<00:32, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.3836, epoch=1053/3001, vae_loss=273.3836]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1054/3000 [00:18<00:32, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.3793, epoch=1054/3001, vae_loss=273.3793]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1055/3000 [00:18<00:32, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.2609, epoch=1055/3001, vae_loss=273.2609]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1056/3000 [00:18<00:32, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.3375, epoch=1056/3001, vae_loss=273.3375]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1057/3000 [00:18<00:32, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.7864, epoch=1057/3001, vae_loss=273.7864]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1058/3000 [00:18<00:32, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.6054, epoch=1058/3001, vae_loss=273.6054]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1059/3000 [00:18<00:33, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.6054, epoch=1058/3001, vae_loss=273.6054]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1059/3000 [00:18<00:33, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.9080, epoch=1059/3001, vae_loss=272.9080]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1060/3000 [00:18<00:33, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7946, epoch=1060/3001, vae_loss=272.7946]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1061/3000 [00:18<00:33, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.8688, epoch=1061/3001, vae_loss=273.8688]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1062/3000 [00:18<00:33, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.5900, epoch=1062/3001, vae_loss=273.5900]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1063/3000 [00:18<00:33, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.3232, epoch=1063/3001, vae_loss=273.3232]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 1064/3000 [00:18<00:33, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.1887, epoch=1064/3001, vae_loss=273.1887]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1065/3000 [00:18<00:33, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.1887, epoch=1064/3001, vae_loss=273.1887]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1065/3000 [00:18<00:33, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.6489, epoch=1065/3001, vae_loss=273.6489]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1066/3000 [00:18<00:33, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.1353, epoch=1066/3001, vae_loss=273.1353]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1067/3000 [00:18<00:33, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.6493, epoch=1067/3001, vae_loss=272.6493]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1068/3000 [00:18<00:33, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.0777, epoch=1068/3001, vae_loss=273.0777]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1069/3000 [00:18<00:33, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=274.0681, epoch=1069/3001, vae_loss=274.0681]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1070/3000 [00:18<00:33, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.8611, epoch=1070/3001, vae_loss=272.8611]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1071/3000 [00:18<00:33, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.8611, epoch=1070/3001, vae_loss=272.8611]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1071/3000 [00:18<00:33, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7907, epoch=1071/3001, vae_loss=272.7907]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1072/3000 [00:18<00:33, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.5246, epoch=1072/3001, vae_loss=272.5246]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1073/3000 [00:18<00:33, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.1910, epoch=1073/3001, vae_loss=273.1910]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1074/3000 [00:18<00:33, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.5395, epoch=1074/3001, vae_loss=273.5395]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1075/3000 [00:18<00:33, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.3670, epoch=1075/3001, vae_loss=272.3670]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1076/3000 [00:18<00:33, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9653, epoch=1076/3001, vae_loss=271.9653]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1077/3000 [00:18<00:33, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9653, epoch=1076/3001, vae_loss=271.9653]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1077/3000 [00:18<00:33, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7295, epoch=1077/3001, vae_loss=272.7295]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1078/3000 [00:18<00:33, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.5768, epoch=1078/3001, vae_loss=272.5768]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1079/3000 [00:18<00:33, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.7018, epoch=1079/3001, vae_loss=271.7018]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1080/3000 [00:18<00:33, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2196, epoch=1080/3001, vae_loss=272.2196]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1081/3000 [00:18<00:33, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.5427, epoch=1081/3001, vae_loss=272.5427]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1082/3000 [00:18<00:33, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2540, epoch=1082/3001, vae_loss=272.2540]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1083/3000 [00:18<00:33, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2540, epoch=1082/3001, vae_loss=272.2540]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1083/3000 [00:18<00:33, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.3378, epoch=1083/3001, vae_loss=272.3378]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1084/3000 [00:18<00:33, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7330, epoch=1084/3001, vae_loss=272.7330]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1085/3000 [00:18<00:33, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2020, epoch=1085/3001, vae_loss=272.2020]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1086/3000 [00:18<00:33, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.0545, epoch=1086/3001, vae_loss=272.0545]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 1087/3000 [00:18<00:33, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7664, epoch=1087/3001, vae_loss=272.7664]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1088/3000 [00:18<00:33, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.1179, epoch=1088/3001, vae_loss=272.1179]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1089/3000 [00:18<00:33, 57.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.1179, epoch=1088/3001, vae_loss=272.1179]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1089/3000 [00:18<00:33, 57.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.3880, epoch=1089/3001, vae_loss=272.3880]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1090/3000 [00:18<00:33, 57.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7413, epoch=1090/3001, vae_loss=272.7413]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1091/3000 [00:18<00:33, 57.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.0862, epoch=1091/3001, vae_loss=272.0862]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1092/3000 [00:18<00:33, 57.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.5773, epoch=1092/3001, vae_loss=272.5773]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1093/3000 [00:18<00:33, 57.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.4996, epoch=1093/3001, vae_loss=272.4996]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1094/3000 [00:18<00:33, 57.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9312, epoch=1094/3001, vae_loss=271.9312]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1095/3000 [00:18<00:33, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9312, epoch=1094/3001, vae_loss=271.9312]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 1095/3000 [00:18<00:33, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.1828, epoch=1095/3001, vae_loss=273.1828]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1096/3000 [00:18<00:33, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.0934, epoch=1096/3001, vae_loss=273.0934]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1097/3000 [00:18<00:33, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.6843, epoch=1097/3001, vae_loss=273.6843]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1098/3000 [00:18<00:33, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.9395, epoch=1098/3001, vae_loss=272.9395]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1099/3000 [00:18<00:33, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.7633, epoch=1099/3001, vae_loss=273.7633]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1100/3000 [00:18<00:33, 56.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7088, epoch=1100/3001, vae_loss=272.7088]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1101/3000 [00:18<00:33, 56.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7088, epoch=1100/3001, vae_loss=272.7088]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1101/3000 [00:18<00:33, 56.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.6927, epoch=1101/3001, vae_loss=272.6927]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1102/3000 [00:18<00:33, 56.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2229, epoch=1102/3001, vae_loss=272.2229]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1103/3000 [00:18<00:33, 56.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.9195, epoch=1103/3001, vae_loss=273.9195]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1104/3000 [00:18<00:33, 56.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9708, epoch=1104/3001, vae_loss=271.9708]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1105/3000 [00:19<00:33, 56.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.7856, epoch=1105/3001, vae_loss=273.7856]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1106/3000 [00:19<00:33, 56.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.5513, epoch=1106/3001, vae_loss=273.5513]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1107/3000 [00:19<00:33, 56.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.5513, epoch=1106/3001, vae_loss=273.5513]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1107/3000 [00:19<00:33, 56.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.7802, epoch=1107/3001, vae_loss=272.7802]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1108/3000 [00:19<00:33, 56.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=273.1463, epoch=1108/3001, vae_loss=273.1463]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1109/3000 [00:19<00:33, 56.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.4658, epoch=1109/3001, vae_loss=271.4658]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1110/3000 [00:19<00:33, 56.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.6573, epoch=1110/3001, vae_loss=272.6573]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1111/3000 [00:19<00:33, 56.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.3163, epoch=1111/3001, vae_loss=272.3163]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1112/3000 [00:19<00:33, 56.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.4877, epoch=1112/3001, vae_loss=272.4877]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1113/3000 [00:19<00:33, 56.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.4877, epoch=1112/3001, vae_loss=272.4877]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1113/3000 [00:19<00:33, 56.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2232, epoch=1113/3001, vae_loss=272.2232]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1114/3000 [00:19<00:33, 56.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.7961, epoch=1114/3001, vae_loss=271.7961]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1115/3000 [00:19<00:33, 56.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2053, epoch=1115/3001, vae_loss=272.2053]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1116/3000 [00:19<00:33, 56.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.5778, epoch=1116/3001, vae_loss=272.5778]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1117/3000 [00:19<00:33, 56.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.4138, epoch=1117/3001, vae_loss=272.4138]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1118/3000 [00:19<00:33, 56.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9442, epoch=1118/3001, vae_loss=271.9442]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1119/3000 [00:19<00:32, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9442, epoch=1118/3001, vae_loss=271.9442]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1119/3000 [00:19<00:32, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.2185, epoch=1119/3001, vae_loss=272.2185]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1120/3000 [00:19<00:32, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.3727, epoch=1120/3001, vae_loss=272.3727]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1121/3000 [00:19<00:32, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.6726, epoch=1121/3001, vae_loss=271.6726]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1122/3000 [00:19<00:32, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.5479, epoch=1122/3001, vae_loss=272.5479]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1123/3000 [00:19<00:32, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.5318, epoch=1123/3001, vae_loss=271.5318]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 1124/3000 [00:19<00:32, 57.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.1124, epoch=1124/3001, vae_loss=272.1124]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1125/3000 [00:19<00:32, 57.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.1124, epoch=1124/3001, vae_loss=272.1124]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1125/3000 [00:19<00:32, 57.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.0608, epoch=1125/3001, vae_loss=272.0608]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1126/3000 [00:19<00:32, 57.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.7908, epoch=1126/3001, vae_loss=271.7908]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1127/3000 [00:19<00:32, 57.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.2250, epoch=1127/3001, vae_loss=271.2250]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1128/3000 [00:19<00:32, 57.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.6072, epoch=1128/3001, vae_loss=271.6072]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1129/3000 [00:19<00:32, 57.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9845, epoch=1129/3001, vae_loss=271.9845]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1130/3000 [00:19<00:32, 57.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9340, epoch=1130/3001, vae_loss=271.9340]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1131/3000 [00:19<00:32, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.9340, epoch=1130/3001, vae_loss=271.9340]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1131/3000 [00:19<00:32, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.7966, epoch=1131/3001, vae_loss=271.7966]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1132/3000 [00:19<00:32, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=272.1036, epoch=1132/3001, vae_loss=272.1036]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1133/3000 [00:19<00:32, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.7285, epoch=1133/3001, vae_loss=271.7285]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1134/3000 [00:19<00:32, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.6785, epoch=1134/3001, vae_loss=270.6785]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1135/3000 [00:19<00:32, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.6316, epoch=1135/3001, vae_loss=271.6316]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1136/3000 [00:19<00:32, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.4750, epoch=1136/3001, vae_loss=270.4750]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1137/3000 [00:19<00:32, 57.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.4750, epoch=1136/3001, vae_loss=270.4750]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1137/3000 [00:19<00:32, 57.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.8303, epoch=1137/3001, vae_loss=271.8303]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1138/3000 [00:19<00:32, 57.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.6141, epoch=1138/3001, vae_loss=271.6141]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1139/3000 [00:19<00:32, 57.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.3641, epoch=1139/3001, vae_loss=271.3641]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1140/3000 [00:19<00:32, 57.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.5009, epoch=1140/3001, vae_loss=271.5009]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1141/3000 [00:19<00:32, 57.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.6219, epoch=1141/3001, vae_loss=270.6219]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1142/3000 [00:19<00:32, 57.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.5725, epoch=1142/3001, vae_loss=271.5725]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1143/3000 [00:19<00:32, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.5725, epoch=1142/3001, vae_loss=271.5725]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1143/3000 [00:19<00:32, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.5963, epoch=1143/3001, vae_loss=270.5963]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1144/3000 [00:19<00:32, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.5451, epoch=1144/3001, vae_loss=271.5451]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1145/3000 [00:19<00:32, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.2961, epoch=1145/3001, vae_loss=271.2961]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1146/3000 [00:19<00:32, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.7310, epoch=1146/3001, vae_loss=270.7310]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1147/3000 [00:19<00:32, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.0436, epoch=1147/3001, vae_loss=271.0436]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1148/3000 [00:19<00:32, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.8174, epoch=1148/3001, vae_loss=270.8174]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1149/3000 [00:19<00:31, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.8174, epoch=1148/3001, vae_loss=270.8174]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1149/3000 [00:19<00:31, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3375, epoch=1149/3001, vae_loss=270.3375]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1150/3000 [00:19<00:31, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.4086, epoch=1150/3001, vae_loss=270.4086]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1151/3000 [00:19<00:31, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.6595, epoch=1151/3001, vae_loss=270.6595]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1152/3000 [00:19<00:31, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.1636, epoch=1152/3001, vae_loss=271.1636]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1153/3000 [00:19<00:31, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.9113, epoch=1153/3001, vae_loss=270.9113]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1154/3000 [00:19<00:31, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.1687, epoch=1154/3001, vae_loss=270.1687]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1155/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.1687, epoch=1154/3001, vae_loss=270.1687]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 1155/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.0908, epoch=1155/3001, vae_loss=271.0908]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1156/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.6224, epoch=1156/3001, vae_loss=270.6224]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1157/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.8846, epoch=1157/3001, vae_loss=270.8846]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1158/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.8364, epoch=1158/3001, vae_loss=270.8364]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1159/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3822, epoch=1159/3001, vae_loss=270.3822]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1160/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.9360, epoch=1160/3001, vae_loss=269.9360]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1161/3000 [00:19<00:31, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3503, epoch=1161/3001, vae_loss=270.3503]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1162/3000 [00:19<00:31, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3503, epoch=1161/3001, vae_loss=270.3503]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 1162/3000 [00:19<00:31, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.5210, epoch=1162/3001, vae_loss=271.5210]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1163/3000 [00:20<00:31, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.7787, epoch=1163/3001, vae_loss=269.7787]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1164/3000 [00:20<00:31, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.8554, epoch=1164/3001, vae_loss=269.8554]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1165/3000 [00:20<00:31, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.4243, epoch=1165/3001, vae_loss=269.4243]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1166/3000 [00:20<00:30, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.0152, epoch=1166/3001, vae_loss=270.0152]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1167/3000 [00:20<00:30, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.1775, epoch=1167/3001, vae_loss=270.1775]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1168/3000 [00:20<00:30, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.1481, epoch=1168/3001, vae_loss=270.1481]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1169/3000 [00:20<00:30, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.1481, epoch=1168/3001, vae_loss=270.1481]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1169/3000 [00:20<00:30, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.1871, epoch=1169/3001, vae_loss=271.1871]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1170/3000 [00:20<00:30, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.5698, epoch=1170/3001, vae_loss=270.5698]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1171/3000 [00:20<00:30, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.0635, epoch=1171/3001, vae_loss=270.0635]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1172/3000 [00:20<00:30, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.4988, epoch=1172/3001, vae_loss=270.4988]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1173/3000 [00:20<00:30, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.2213, epoch=1173/3001, vae_loss=270.2213]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1174/3000 [00:20<00:30, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3130, epoch=1174/3001, vae_loss=270.3130]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1175/3000 [00:20<00:30, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3130, epoch=1174/3001, vae_loss=270.3130]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1175/3000 [00:20<00:30, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.2161, epoch=1175/3001, vae_loss=269.2161]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1176/3000 [00:20<00:30, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3194, epoch=1176/3001, vae_loss=270.3194]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1177/3000 [00:20<00:30, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.4561, epoch=1177/3001, vae_loss=269.4561]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1178/3000 [00:20<00:30, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.5968, epoch=1178/3001, vae_loss=269.5968]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1179/3000 [00:20<00:30, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.5297, epoch=1179/3001, vae_loss=270.5297]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1180/3000 [00:20<00:30, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.2868, epoch=1180/3001, vae_loss=270.2868]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1181/3000 [00:20<00:30, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.2868, epoch=1180/3001, vae_loss=270.2868]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1181/3000 [00:20<00:30, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.7129, epoch=1181/3001, vae_loss=270.7129]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1182/3000 [00:20<00:30, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.3346, epoch=1182/3001, vae_loss=270.3346]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1183/3000 [00:20<00:30, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=271.0037, epoch=1183/3001, vae_loss=271.0037]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 1184/3000 [00:20<00:30, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.5526, epoch=1184/3001, vae_loss=270.5526]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1185/3000 [00:20<00:30, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.8391, epoch=1185/3001, vae_loss=269.8391]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1186/3000 [00:20<00:30, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.9758, epoch=1186/3001, vae_loss=269.9758]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1187/3000 [00:20<00:30, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.9758, epoch=1186/3001, vae_loss=269.9758]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1187/3000 [00:20<00:30, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.8839, epoch=1187/3001, vae_loss=269.8839]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1188/3000 [00:20<00:30, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.9001, epoch=1188/3001, vae_loss=269.9001]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1189/3000 [00:20<00:30, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.1083, epoch=1189/3001, vae_loss=269.1083]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1190/3000 [00:20<00:30, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.1543, epoch=1190/3001, vae_loss=269.1543]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1191/3000 [00:20<00:30, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.4679, epoch=1191/3001, vae_loss=269.4679]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1192/3000 [00:20<00:30, 59.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.5872, epoch=1192/3001, vae_loss=269.5872]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1193/3000 [00:20<00:30, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.5872, epoch=1192/3001, vae_loss=269.5872]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1193/3000 [00:20<00:30, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0389, epoch=1193/3001, vae_loss=269.0389]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1194/3000 [00:20<00:30, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.3760, epoch=1194/3001, vae_loss=269.3760]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1195/3000 [00:20<00:30, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.0728, epoch=1195/3001, vae_loss=270.0728]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1196/3000 [00:20<00:30, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.7492, epoch=1196/3001, vae_loss=269.7492]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1197/3000 [00:20<00:30, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.8851, epoch=1197/3001, vae_loss=268.8851]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1198/3000 [00:20<00:30, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0717, epoch=1198/3001, vae_loss=269.0717]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1199/3000 [00:20<00:31, 57.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0717, epoch=1198/3001, vae_loss=269.0717]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 1199/3000 [00:20<00:31, 57.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=270.4689, epoch=1199/3001, vae_loss=270.4689]
Training: VAE for learning meaningful embeddings:  40%|████      | 1200/3000 [00:20<00:31, 57.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.4177, epoch=1200/3001, vae_loss=269.4177]
Training: VAE for learning meaningful embeddings:  40%|████      | 1201/3000 [00:20<00:31, 57.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.6344, epoch=1201/3001, vae_loss=269.6344]
Training: VAE for learning meaningful embeddings:  40%|████      | 1202/3000 [00:20<00:31, 57.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.2095, epoch=1202/3001, vae_loss=269.2095]
Training: VAE for learning meaningful embeddings:  40%|████      | 1203/3000 [00:20<00:30, 57.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.3056, epoch=1203/3001, vae_loss=269.3056]
Training: VAE for learning meaningful embeddings:  40%|████      | 1204/3000 [00:20<00:30, 57.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.9710, epoch=1204/3001, vae_loss=268.9710]
Training: VAE for learning meaningful embeddings:  40%|████      | 1205/3000 [00:20<00:31, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.9710, epoch=1204/3001, vae_loss=268.9710]
Training: VAE for learning meaningful embeddings:  40%|████      | 1205/3000 [00:20<00:31, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.5791, epoch=1205/3001, vae_loss=268.5791]
Training: VAE for learning meaningful embeddings:  40%|████      | 1206/3000 [00:20<00:31, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0828, epoch=1206/3001, vae_loss=268.0828]
Training: VAE for learning meaningful embeddings:  40%|████      | 1207/3000 [00:20<00:31, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.5903, epoch=1207/3001, vae_loss=269.5903]
Training: VAE for learning meaningful embeddings:  40%|████      | 1208/3000 [00:20<00:31, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.9802, epoch=1208/3001, vae_loss=268.9802]
Training: VAE for learning meaningful embeddings:  40%|████      | 1209/3000 [00:20<00:31, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.1053, epoch=1209/3001, vae_loss=269.1053]
Training: VAE for learning meaningful embeddings:  40%|████      | 1210/3000 [00:20<00:30, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.3818, epoch=1210/3001, vae_loss=268.3818]
Training: VAE for learning meaningful embeddings:  40%|████      | 1211/3000 [00:20<00:31, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.3818, epoch=1210/3001, vae_loss=268.3818]
Training: VAE for learning meaningful embeddings:  40%|████      | 1211/3000 [00:20<00:31, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.8822, epoch=1211/3001, vae_loss=268.8822]
Training: VAE for learning meaningful embeddings:  40%|████      | 1212/3000 [00:20<00:31, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.8794, epoch=1212/3001, vae_loss=268.8794]
Training: VAE for learning meaningful embeddings:  40%|████      | 1213/3000 [00:20<00:30, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0615, epoch=1213/3001, vae_loss=269.0615]
Training: VAE for learning meaningful embeddings:  40%|████      | 1214/3000 [00:20<00:30, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4124, epoch=1214/3001, vae_loss=268.4124]
Training: VAE for learning meaningful embeddings:  40%|████      | 1215/3000 [00:20<00:30, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.1882, epoch=1215/3001, vae_loss=268.1882]
Training: VAE for learning meaningful embeddings:  41%|████      | 1216/3000 [00:20<00:30, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.5862, epoch=1216/3001, vae_loss=268.5862]
Training: VAE for learning meaningful embeddings:  41%|████      | 1217/3000 [00:20<00:30, 57.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.5862, epoch=1216/3001, vae_loss=268.5862]
Training: VAE for learning meaningful embeddings:  41%|████      | 1217/3000 [00:20<00:30, 57.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.3922, epoch=1217/3001, vae_loss=268.3922]
Training: VAE for learning meaningful embeddings:  41%|████      | 1218/3000 [00:20<00:30, 57.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0529, epoch=1218/3001, vae_loss=268.0529]
Training: VAE for learning meaningful embeddings:  41%|████      | 1219/3000 [00:20<00:30, 57.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.9113, epoch=1219/3001, vae_loss=268.9113]
Training: VAE for learning meaningful embeddings:  41%|████      | 1220/3000 [00:20<00:30, 57.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2273, epoch=1220/3001, vae_loss=268.2273]
Training: VAE for learning meaningful embeddings:  41%|████      | 1221/3000 [00:21<00:30, 57.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.6639, epoch=1221/3001, vae_loss=268.6639]
Training: VAE for learning meaningful embeddings:  41%|████      | 1222/3000 [00:21<00:30, 57.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4081, epoch=1222/3001, vae_loss=268.4081]
Training: VAE for learning meaningful embeddings:  41%|████      | 1223/3000 [00:21<00:30, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4081, epoch=1222/3001, vae_loss=268.4081]
Training: VAE for learning meaningful embeddings:  41%|████      | 1223/3000 [00:21<00:30, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.2538, epoch=1223/3001, vae_loss=267.2538]
Training: VAE for learning meaningful embeddings:  41%|████      | 1224/3000 [00:21<00:30, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.3071, epoch=1224/3001, vae_loss=268.3071]
Training: VAE for learning meaningful embeddings:  41%|████      | 1225/3000 [00:21<00:30, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2603, epoch=1225/3001, vae_loss=268.2603]
Training: VAE for learning meaningful embeddings:  41%|████      | 1226/3000 [00:21<00:30, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.3078, epoch=1226/3001, vae_loss=268.3078]
Training: VAE for learning meaningful embeddings:  41%|████      | 1227/3000 [00:21<00:30, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.8809, epoch=1227/3001, vae_loss=267.8809]
Training: VAE for learning meaningful embeddings:  41%|████      | 1228/3000 [00:21<00:30, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4647, epoch=1228/3001, vae_loss=268.4647]
Training: VAE for learning meaningful embeddings:  41%|████      | 1229/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4647, epoch=1228/3001, vae_loss=268.4647]
Training: VAE for learning meaningful embeddings:  41%|████      | 1229/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0709, epoch=1229/3001, vae_loss=269.0709]
Training: VAE for learning meaningful embeddings:  41%|████      | 1230/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4852, epoch=1230/3001, vae_loss=268.4852]
Training: VAE for learning meaningful embeddings:  41%|████      | 1231/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.1888, epoch=1231/3001, vae_loss=269.1888]
Training: VAE for learning meaningful embeddings:  41%|████      | 1232/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2322, epoch=1232/3001, vae_loss=268.2322]
Training: VAE for learning meaningful embeddings:  41%|████      | 1233/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.8474, epoch=1233/3001, vae_loss=268.8474]
Training: VAE for learning meaningful embeddings:  41%|████      | 1234/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.8732, epoch=1234/3001, vae_loss=267.8732]
Training: VAE for learning meaningful embeddings:  41%|████      | 1235/3000 [00:21<00:30, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.7768, epoch=1235/3001, vae_loss=268.7768]
Training: VAE for learning meaningful embeddings:  41%|████      | 1236/3000 [00:21<00:29, 59.12it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.7768, epoch=1235/3001, vae_loss=268.7768]
Training: VAE for learning meaningful embeddings:  41%|████      | 1236/3000 [00:21<00:29, 59.12it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.6826, epoch=1236/3001, vae_loss=268.6826]
Training: VAE for learning meaningful embeddings:  41%|████      | 1237/3000 [00:21<00:29, 59.12it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.6221, epoch=1237/3001, vae_loss=269.6221]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1238/3000 [00:21<00:29, 59.12it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.1695, epoch=1238/3001, vae_loss=268.1695]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1239/3000 [00:21<00:29, 59.12it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.3942, epoch=1239/3001, vae_loss=268.3942]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1240/3000 [00:21<00:29, 59.12it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2201, epoch=1240/3001, vae_loss=268.2201]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1241/3000 [00:21<00:29, 59.12it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0321, epoch=1241/3001, vae_loss=269.0321]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1242/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0321, epoch=1241/3001, vae_loss=269.0321]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1242/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7304, epoch=1242/3001, vae_loss=267.7304]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1243/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.0128, epoch=1243/3001, vae_loss=269.0128]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 1244/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7306, epoch=1244/3001, vae_loss=267.7306]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1245/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.5155, epoch=1245/3001, vae_loss=268.5155]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1246/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4330, epoch=1246/3001, vae_loss=268.4330]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1247/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.8968, epoch=1247/3001, vae_loss=267.8968]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1248/3000 [00:21<00:29, 59.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4108, epoch=1248/3001, vae_loss=268.4108]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1249/3000 [00:21<00:29, 59.70it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4108, epoch=1248/3001, vae_loss=268.4108]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1249/3000 [00:21<00:29, 59.70it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.5882, epoch=1249/3001, vae_loss=268.5882]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1250/3000 [00:21<00:29, 59.70it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5492, epoch=1250/3001, vae_loss=267.5492]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1251/3000 [00:21<00:29, 59.70it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.7548, epoch=1251/3001, vae_loss=268.7548]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1252/3000 [00:21<00:29, 59.70it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9363, epoch=1252/3001, vae_loss=267.9363]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1253/3000 [00:21<00:29, 59.70it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.1137, epoch=1253/3001, vae_loss=269.1137]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1254/3000 [00:21<00:29, 59.70it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9295, epoch=1254/3001, vae_loss=267.9295]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1255/3000 [00:21<00:29, 59.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9295, epoch=1254/3001, vae_loss=267.9295]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1255/3000 [00:21<00:29, 59.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.8321, epoch=1255/3001, vae_loss=268.8321]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1256/3000 [00:21<00:29, 59.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.1153, epoch=1256/3001, vae_loss=268.1153]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1257/3000 [00:21<00:29, 59.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9078, epoch=1257/3001, vae_loss=267.9078]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1258/3000 [00:21<00:29, 59.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.6385, epoch=1258/3001, vae_loss=267.6385]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1259/3000 [00:21<00:29, 59.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5322, epoch=1259/3001, vae_loss=267.5322]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1260/3000 [00:21<00:29, 59.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0547, epoch=1260/3001, vae_loss=268.0547]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1261/3000 [00:21<00:29, 59.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0547, epoch=1260/3001, vae_loss=268.0547]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1261/3000 [00:21<00:29, 59.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2077, epoch=1261/3001, vae_loss=268.2077]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1262/3000 [00:21<00:29, 59.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.4661, epoch=1262/3001, vae_loss=267.4661]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1263/3000 [00:21<00:29, 59.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9467, epoch=1263/3001, vae_loss=267.9467]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1264/3000 [00:21<00:29, 59.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0075, epoch=1264/3001, vae_loss=268.0075]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1265/3000 [00:21<00:29, 59.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9851, epoch=1265/3001, vae_loss=267.9851]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1266/3000 [00:21<00:29, 59.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7000, epoch=1266/3001, vae_loss=267.7000]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1267/3000 [00:21<00:29, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7000, epoch=1266/3001, vae_loss=267.7000]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1267/3000 [00:21<00:29, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.6661, epoch=1267/3001, vae_loss=267.6661]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1268/3000 [00:21<00:29, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9697, epoch=1268/3001, vae_loss=267.9697]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1269/3000 [00:21<00:29, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.8431, epoch=1269/3001, vae_loss=267.8431]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1270/3000 [00:21<00:29, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0037, epoch=1270/3001, vae_loss=268.0037]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1271/3000 [00:21<00:29, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7348, epoch=1271/3001, vae_loss=267.7348]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1272/3000 [00:21<00:29, 59.27it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7855, epoch=1272/3001, vae_loss=267.7855]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1273/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7855, epoch=1272/3001, vae_loss=267.7855]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1273/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.3755, epoch=1273/3001, vae_loss=267.3755]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 1274/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.6400, epoch=1274/3001, vae_loss=268.6400]
Training: VAE for learning meaningful embeddings:  42%|████▎     | 1275/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0949, epoch=1275/3001, vae_loss=268.0949]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1276/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.1237, epoch=1276/3001, vae_loss=268.1237]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1277/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7457, epoch=1277/3001, vae_loss=267.7457]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1278/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7030, epoch=1278/3001, vae_loss=267.7030]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1279/3000 [00:21<00:29, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5671, epoch=1279/3001, vae_loss=267.5671]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1280/3000 [00:21<00:28, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5671, epoch=1279/3001, vae_loss=267.5671]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1280/3000 [00:21<00:28, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.1550, epoch=1280/3001, vae_loss=267.1550]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1281/3000 [00:22<00:28, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.2327, epoch=1281/3001, vae_loss=267.2327]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1282/3000 [00:22<00:28, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.3645, epoch=1282/3001, vae_loss=267.3645]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1283/3000 [00:22<00:28, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.9404, epoch=1283/3001, vae_loss=266.9404]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1284/3000 [00:22<00:28, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.7191, epoch=1284/3001, vae_loss=266.7191]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1285/3000 [00:22<00:28, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.1507, epoch=1285/3001, vae_loss=267.1507]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1286/3000 [00:22<00:28, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.1507, epoch=1285/3001, vae_loss=267.1507]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1286/3000 [00:22<00:28, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.9359, epoch=1286/3001, vae_loss=266.9359]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1287/3000 [00:22<00:28, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5482, epoch=1287/3001, vae_loss=267.5482]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1288/3000 [00:22<00:28, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.6611, epoch=1288/3001, vae_loss=267.6611]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1289/3000 [00:22<00:28, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5855, epoch=1289/3001, vae_loss=267.5855]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1290/3000 [00:22<00:28, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.9238, epoch=1290/3001, vae_loss=267.9238]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1291/3000 [00:22<00:28, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2914, epoch=1291/3001, vae_loss=268.2914]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1292/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2914, epoch=1291/3001, vae_loss=268.2914]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1292/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7271, epoch=1292/3001, vae_loss=267.7271]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1293/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.2639, epoch=1293/3001, vae_loss=268.2639]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1294/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0018, epoch=1294/3001, vae_loss=268.0018]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1295/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.0932, epoch=1295/3001, vae_loss=267.0932]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1296/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.0691, epoch=1296/3001, vae_loss=267.0691]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1297/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6949, epoch=1297/3001, vae_loss=266.6949]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1298/3000 [00:22<00:28, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4537, epoch=1298/3001, vae_loss=266.4537]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1299/3000 [00:22<00:28, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4537, epoch=1298/3001, vae_loss=266.4537]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1299/3000 [00:22<00:28, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4893, epoch=1299/3001, vae_loss=266.4893]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1300/3000 [00:22<00:28, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.8857, epoch=1300/3001, vae_loss=266.8857]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1301/3000 [00:22<00:28, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.1296, epoch=1301/3001, vae_loss=267.1296]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1302/3000 [00:22<00:28, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.0728, epoch=1302/3001, vae_loss=267.0728]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1303/3000 [00:22<00:28, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.7056, epoch=1303/3001, vae_loss=266.7056]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 1304/3000 [00:22<00:28, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.2994, epoch=1304/3001, vae_loss=266.2994]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1305/3000 [00:22<00:28, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.2994, epoch=1304/3001, vae_loss=266.2994]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1305/3000 [00:22<00:28, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.8882, epoch=1305/3001, vae_loss=266.8882]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1306/3000 [00:22<00:28, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.3868, epoch=1306/3001, vae_loss=267.3868]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1307/3000 [00:22<00:28, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.2943, epoch=1307/3001, vae_loss=267.2943]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1308/3000 [00:22<00:28, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.8873, epoch=1308/3001, vae_loss=266.8873]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1309/3000 [00:22<00:28, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6200, epoch=1309/3001, vae_loss=266.6200]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1310/3000 [00:22<00:28, 58.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7198, epoch=1310/3001, vae_loss=267.7198]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1311/3000 [00:22<00:28, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.7198, epoch=1310/3001, vae_loss=267.7198]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1311/3000 [00:22<00:28, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.4426, epoch=1311/3001, vae_loss=267.4426]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 1312/3000 [00:22<00:28, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6473, epoch=1312/3001, vae_loss=266.6473]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1313/3000 [00:22<00:28, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.1238, epoch=1313/3001, vae_loss=267.1238]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1314/3000 [00:22<00:28, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.2496, epoch=1314/3001, vae_loss=267.2496]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1315/3000 [00:22<00:28, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.6965, epoch=1315/3001, vae_loss=267.6965]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1316/3000 [00:22<00:28, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4296, epoch=1316/3001, vae_loss=266.4296]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1317/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4296, epoch=1316/3001, vae_loss=266.4296]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1317/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.9992, epoch=1317/3001, vae_loss=266.9992]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1318/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.1212, epoch=1318/3001, vae_loss=266.1212]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1319/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.1810, epoch=1319/3001, vae_loss=267.1810]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1320/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.5940, epoch=1320/3001, vae_loss=266.5940]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1321/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.4230, epoch=1321/3001, vae_loss=267.4230]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1322/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.5494, epoch=1322/3001, vae_loss=266.5494]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1323/3000 [00:22<00:28, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6207, epoch=1323/3001, vae_loss=266.6207]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1324/3000 [00:22<00:28, 59.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6207, epoch=1323/3001, vae_loss=266.6207]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1324/3000 [00:22<00:28, 59.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6101, epoch=1324/3001, vae_loss=266.6101]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1325/3000 [00:22<00:28, 59.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.8009, epoch=1325/3001, vae_loss=266.8009]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1326/3000 [00:22<00:28, 59.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.9750, epoch=1326/3001, vae_loss=265.9750]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1327/3000 [00:22<00:28, 59.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.3052, epoch=1327/3001, vae_loss=266.3052]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1328/3000 [00:22<00:28, 59.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6074, epoch=1328/3001, vae_loss=266.6074]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1329/3000 [00:22<00:28, 59.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5214, epoch=1329/3001, vae_loss=267.5214]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1330/3000 [00:22<00:28, 58.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.5214, epoch=1329/3001, vae_loss=267.5214]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1330/3000 [00:22<00:28, 58.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.6808, epoch=1330/3001, vae_loss=266.6808]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1331/3000 [00:22<00:28, 58.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.9316, epoch=1331/3001, vae_loss=266.9316]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1332/3000 [00:22<00:28, 58.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.2025, epoch=1332/3001, vae_loss=266.2025]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1333/3000 [00:22<00:28, 58.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.1824, epoch=1333/3001, vae_loss=267.1824]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1334/3000 [00:22<00:28, 58.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.7094, epoch=1334/3001, vae_loss=266.7094]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 1335/3000 [00:22<00:28, 58.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4309, epoch=1335/3001, vae_loss=268.4309]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1336/3000 [00:22<00:28, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.4309, epoch=1335/3001, vae_loss=268.4309]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1336/3000 [00:22<00:28, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.2975, epoch=1336/3001, vae_loss=266.2975]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1337/3000 [00:22<00:28, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=269.8476, epoch=1337/3001, vae_loss=269.8476]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1338/3000 [00:22<00:28, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.3398, epoch=1338/3001, vae_loss=267.3398]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1339/3000 [00:22<00:28, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.0024, epoch=1339/3001, vae_loss=268.0024]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1340/3000 [00:23<00:28, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.0775, epoch=1340/3001, vae_loss=267.0775]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1341/3000 [00:23<00:28, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.4262, epoch=1341/3001, vae_loss=267.4262]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1342/3000 [00:23<00:28, 58.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.4262, epoch=1341/3001, vae_loss=267.4262]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1342/3000 [00:23<00:28, 58.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4037, epoch=1342/3001, vae_loss=266.4037]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1343/3000 [00:23<00:28, 58.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=268.6202, epoch=1343/3001, vae_loss=268.6202]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1344/3000 [00:23<00:28, 58.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.7841, epoch=1344/3001, vae_loss=266.7841]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1345/3000 [00:23<00:28, 58.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.6801, epoch=1345/3001, vae_loss=267.6801]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1346/3000 [00:23<00:28, 58.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.8944, epoch=1346/3001, vae_loss=266.8944]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1347/3000 [00:23<00:28, 58.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.2801, epoch=1347/3001, vae_loss=267.2801]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1348/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.2801, epoch=1347/3001, vae_loss=267.2801]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1348/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.2558, epoch=1348/3001, vae_loss=266.2558]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 1349/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.0224, epoch=1349/3001, vae_loss=267.0224]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1350/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.3428, epoch=1350/3001, vae_loss=266.3428]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1351/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.8296, epoch=1351/3001, vae_loss=265.8296]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1352/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.0858, epoch=1352/3001, vae_loss=266.0858]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1353/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.8889, epoch=1353/3001, vae_loss=265.8889]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1354/3000 [00:23<00:28, 58.32it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4719, epoch=1354/3001, vae_loss=266.4719]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1355/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4719, epoch=1354/3001, vae_loss=266.4719]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1355/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.2944, epoch=1355/3001, vae_loss=265.2944]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1356/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.6306, epoch=1356/3001, vae_loss=265.6306]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1357/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.7001, epoch=1357/3001, vae_loss=265.7001]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1358/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.5002, epoch=1358/3001, vae_loss=266.5002]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1359/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.4690, epoch=1359/3001, vae_loss=265.4690]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1360/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.8752, epoch=1360/3001, vae_loss=265.8752]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1361/3000 [00:23<00:27, 59.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.0840, epoch=1361/3001, vae_loss=266.0840]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1362/3000 [00:23<00:27, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.0840, epoch=1361/3001, vae_loss=266.0840]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1362/3000 [00:23<00:27, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5630, epoch=1362/3001, vae_loss=265.5630]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1363/3000 [00:23<00:27, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.7209, epoch=1363/3001, vae_loss=265.7209]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 1364/3000 [00:23<00:27, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.2544, epoch=1364/3001, vae_loss=266.2544]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1365/3000 [00:23<00:27, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.5338, epoch=1365/3001, vae_loss=266.5338]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1366/3000 [00:23<00:27, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.8343, epoch=1366/3001, vae_loss=265.8343]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1367/3000 [00:23<00:27, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.1262, epoch=1367/3001, vae_loss=266.1262]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1368/3000 [00:23<00:27, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.1262, epoch=1367/3001, vae_loss=266.1262]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1368/3000 [00:23<00:27, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.1202, epoch=1368/3001, vae_loss=266.1202]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1369/3000 [00:23<00:27, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.0652, epoch=1369/3001, vae_loss=266.0652]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1370/3000 [00:23<00:27, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.6446, epoch=1370/3001, vae_loss=265.6446]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1371/3000 [00:23<00:27, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.4684, epoch=1371/3001, vae_loss=266.4684]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1372/3000 [00:23<00:27, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.8301, epoch=1372/3001, vae_loss=265.8301]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1373/3000 [00:23<00:27, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.0241, epoch=1373/3001, vae_loss=267.0241]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1374/3000 [00:23<00:27, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=267.0241, epoch=1373/3001, vae_loss=267.0241]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1374/3000 [00:23<00:27, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.4959, epoch=1374/3001, vae_loss=265.4959]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1375/3000 [00:23<00:27, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.1407, epoch=1375/3001, vae_loss=266.1407]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1376/3000 [00:23<00:27, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5872, epoch=1376/3001, vae_loss=265.5872]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1377/3000 [00:23<00:27, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.8568, epoch=1377/3001, vae_loss=265.8568]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1378/3000 [00:23<00:27, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.9607, epoch=1378/3001, vae_loss=265.9607]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1379/3000 [00:23<00:27, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.0272, epoch=1379/3001, vae_loss=265.0272]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1380/3000 [00:23<00:27, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.0272, epoch=1379/3001, vae_loss=265.0272]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1380/3000 [00:23<00:27, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=266.0494, epoch=1380/3001, vae_loss=266.0494]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1381/3000 [00:23<00:27, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5152, epoch=1381/3001, vae_loss=265.5152]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1382/3000 [00:23<00:27, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.7448, epoch=1382/3001, vae_loss=265.7448]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1383/3000 [00:23<00:27, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.3990, epoch=1383/3001, vae_loss=265.3990]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1384/3000 [00:23<00:27, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.2120, epoch=1384/3001, vae_loss=265.2120]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1385/3000 [00:23<00:27, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.4744, epoch=1385/3001, vae_loss=265.4744]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1386/3000 [00:23<00:27, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.4744, epoch=1385/3001, vae_loss=265.4744]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1386/3000 [00:23<00:27, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.4340, epoch=1386/3001, vae_loss=265.4340]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 1387/3000 [00:23<00:27, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.8694, epoch=1387/3001, vae_loss=264.8694]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1388/3000 [00:23<00:27, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5468, epoch=1388/3001, vae_loss=265.5468]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1389/3000 [00:23<00:27, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5957, epoch=1389/3001, vae_loss=265.5957]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1390/3000 [00:23<00:27, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.3182, epoch=1390/3001, vae_loss=265.3182]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1391/3000 [00:23<00:27, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.7809, epoch=1391/3001, vae_loss=265.7809]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1392/3000 [00:23<00:27, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.7809, epoch=1391/3001, vae_loss=265.7809]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1392/3000 [00:23<00:27, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.1327, epoch=1392/3001, vae_loss=265.1327]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1393/3000 [00:23<00:27, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.3424, epoch=1393/3001, vae_loss=265.3424]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1394/3000 [00:23<00:27, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.0241, epoch=1394/3001, vae_loss=265.0241]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 1395/3000 [00:23<00:27, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5194, epoch=1395/3001, vae_loss=264.5194]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1396/3000 [00:23<00:26, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.1145, epoch=1396/3001, vae_loss=265.1145]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1397/3000 [00:23<00:26, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.2422, epoch=1397/3001, vae_loss=265.2422]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1398/3000 [00:23<00:26, 59.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1093, epoch=1398/3001, vae_loss=264.1093]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1399/3000 [00:23<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1093, epoch=1398/3001, vae_loss=264.1093]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1399/3000 [00:24<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.1351, epoch=1399/3001, vae_loss=265.1351]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1400/3000 [00:24<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6383, epoch=1400/3001, vae_loss=264.6383]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1401/3000 [00:24<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.2004, epoch=1401/3001, vae_loss=265.2004]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1402/3000 [00:24<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7139, epoch=1402/3001, vae_loss=264.7139]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1403/3000 [00:24<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.3090, epoch=1403/3001, vae_loss=265.3090]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1404/3000 [00:24<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.4591, epoch=1404/3001, vae_loss=264.4591]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1405/3000 [00:24<00:26, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7627, epoch=1405/3001, vae_loss=264.7627]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1406/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7627, epoch=1405/3001, vae_loss=264.7627]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1406/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.4571, epoch=1406/3001, vae_loss=264.4571]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1407/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7790, epoch=1407/3001, vae_loss=264.7790]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1408/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.9375, epoch=1408/3001, vae_loss=264.9375]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1409/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7739, epoch=1409/3001, vae_loss=264.7739]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1410/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5633, epoch=1410/3001, vae_loss=264.5633]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1411/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.4277, epoch=1411/3001, vae_loss=265.4277]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1412/3000 [00:24<00:26, 60.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2500, epoch=1412/3001, vae_loss=264.2500]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1413/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2500, epoch=1412/3001, vae_loss=264.2500]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1413/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.9516, epoch=1413/3001, vae_loss=264.9516]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1414/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.7328, epoch=1414/3001, vae_loss=265.7328]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1415/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.8036, epoch=1415/3001, vae_loss=264.8036]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1416/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.2203, epoch=1416/3001, vae_loss=265.2203]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1417/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.0664, epoch=1417/3001, vae_loss=265.0664]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1418/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6317, epoch=1418/3001, vae_loss=264.6317]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1419/3000 [00:24<00:26, 59.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7173, epoch=1419/3001, vae_loss=264.7173]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1420/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7173, epoch=1419/3001, vae_loss=264.7173]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1420/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.9822, epoch=1420/3001, vae_loss=264.9822]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1421/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6638, epoch=1421/3001, vae_loss=264.6638]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1422/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.0248, epoch=1422/3001, vae_loss=265.0248]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1423/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1964, epoch=1423/3001, vae_loss=264.1964]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 1424/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.0825, epoch=1424/3001, vae_loss=265.0825]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1425/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.4887, epoch=1425/3001, vae_loss=264.4887]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1426/3000 [00:24<00:26, 60.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5561, epoch=1426/3001, vae_loss=265.5561]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1427/3000 [00:24<00:27, 58.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5561, epoch=1426/3001, vae_loss=265.5561]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1427/3000 [00:24<00:27, 58.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5695, epoch=1427/3001, vae_loss=264.5695]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1428/3000 [00:24<00:27, 58.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6154, epoch=1428/3001, vae_loss=264.6154]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1429/3000 [00:24<00:27, 58.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1680, epoch=1429/3001, vae_loss=264.1680]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1430/3000 [00:24<00:27, 58.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.9066, epoch=1430/3001, vae_loss=264.9066]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1431/3000 [00:24<00:27, 58.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.9111, epoch=1431/3001, vae_loss=264.9111]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1432/3000 [00:24<00:26, 58.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6571, epoch=1432/3001, vae_loss=264.6571]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1433/3000 [00:24<00:26, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6571, epoch=1432/3001, vae_loss=264.6571]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1433/3000 [00:24<00:26, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5385, epoch=1433/3001, vae_loss=264.5385]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1434/3000 [00:24<00:26, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.4904, epoch=1434/3001, vae_loss=264.4904]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1435/3000 [00:24<00:26, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7768, epoch=1435/3001, vae_loss=264.7768]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1436/3000 [00:24<00:26, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1727, epoch=1436/3001, vae_loss=264.1727]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1437/3000 [00:24<00:26, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.8450, epoch=1437/3001, vae_loss=264.8450]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1438/3000 [00:24<00:26, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5341, epoch=1438/3001, vae_loss=264.5341]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1439/3000 [00:24<00:26, 58.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5341, epoch=1438/3001, vae_loss=264.5341]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1439/3000 [00:24<00:26, 58.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2281, epoch=1439/3001, vae_loss=264.2281]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1440/3000 [00:24<00:26, 58.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6326, epoch=1440/3001, vae_loss=264.6326]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1441/3000 [00:24<00:26, 58.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2223, epoch=1441/3001, vae_loss=264.2223]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1442/3000 [00:24<00:26, 58.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.1926, epoch=1442/3001, vae_loss=265.1926]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1443/3000 [00:24<00:26, 58.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7732, epoch=1443/3001, vae_loss=264.7732]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1444/3000 [00:24<00:26, 58.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.1429, epoch=1444/3001, vae_loss=265.1429]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1445/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.1429, epoch=1444/3001, vae_loss=265.1429]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1445/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7401, epoch=1445/3001, vae_loss=264.7401]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1446/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6071, epoch=1446/3001, vae_loss=264.6071]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1447/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5591, epoch=1447/3001, vae_loss=264.5591]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1448/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.7047, epoch=1448/3001, vae_loss=265.7047]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1449/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1453, epoch=1449/3001, vae_loss=264.1453]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1450/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.9841, epoch=1450/3001, vae_loss=264.9841]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1451/3000 [00:24<00:26, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.9841, epoch=1450/3001, vae_loss=264.9841]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1451/3000 [00:24<00:26, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1694, epoch=1451/3001, vae_loss=264.1694]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1452/3000 [00:24<00:26, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.7215, epoch=1452/3001, vae_loss=264.7215]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1453/3000 [00:24<00:26, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1565, epoch=1453/3001, vae_loss=264.1565]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1454/3000 [00:24<00:26, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.8745, epoch=1454/3001, vae_loss=263.8745]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 1455/3000 [00:24<00:26, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5010, epoch=1455/3001, vae_loss=264.5010]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1456/3000 [00:24<00:26, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5231, epoch=1456/3001, vae_loss=264.5231]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1457/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.5231, epoch=1456/3001, vae_loss=264.5231]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1457/3000 [00:24<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.3697, epoch=1457/3001, vae_loss=264.3697]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1458/3000 [00:25<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6344, epoch=1458/3001, vae_loss=264.6344]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1459/3000 [00:25<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.4370, epoch=1459/3001, vae_loss=264.4370]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1460/3000 [00:25<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2411, epoch=1460/3001, vae_loss=264.2411]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1461/3000 [00:25<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.5720, epoch=1461/3001, vae_loss=265.5720]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 1462/3000 [00:25<00:26, 58.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2577, epoch=1462/3001, vae_loss=264.2577]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1463/3000 [00:25<00:26, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2577, epoch=1462/3001, vae_loss=264.2577]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1463/3000 [00:25<00:26, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6891, epoch=1463/3001, vae_loss=264.6891]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1464/3000 [00:25<00:26, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.4482, epoch=1464/3001, vae_loss=264.4482]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1465/3000 [00:25<00:26, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.8301, epoch=1465/3001, vae_loss=264.8301]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1466/3000 [00:25<00:26, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.8201, epoch=1466/3001, vae_loss=263.8201]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1467/3000 [00:25<00:26, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.3174, epoch=1467/3001, vae_loss=264.3174]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1468/3000 [00:25<00:26, 58.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6021, epoch=1468/3001, vae_loss=264.6021]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1469/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.6021, epoch=1468/3001, vae_loss=264.6021]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1469/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.1277, epoch=1469/3001, vae_loss=264.1277]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1470/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=265.2520, epoch=1470/3001, vae_loss=265.2520]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1471/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5943, epoch=1471/3001, vae_loss=263.5943]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1472/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.3747, epoch=1472/3001, vae_loss=264.3747]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1473/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.7986, epoch=1473/3001, vae_loss=263.7986]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1474/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.0171, epoch=1474/3001, vae_loss=264.0171]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1475/3000 [00:25<00:26, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3339, epoch=1475/3001, vae_loss=263.3339]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1476/3000 [00:25<00:25, 59.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3339, epoch=1475/3001, vae_loss=263.3339]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1476/3000 [00:25<00:25, 59.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3503, epoch=1476/3001, vae_loss=263.3503]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1477/3000 [00:25<00:25, 59.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6569, epoch=1477/3001, vae_loss=263.6569]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1478/3000 [00:25<00:25, 59.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3246, epoch=1478/3001, vae_loss=263.3246]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1479/3000 [00:25<00:25, 59.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4408, epoch=1479/3001, vae_loss=263.4408]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1480/3000 [00:25<00:25, 59.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3813, epoch=1480/3001, vae_loss=263.3813]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1481/3000 [00:25<00:25, 59.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3281, epoch=1481/3001, vae_loss=263.3281]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1482/3000 [00:25<00:25, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3281, epoch=1481/3001, vae_loss=263.3281]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1482/3000 [00:25<00:25, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4171, epoch=1482/3001, vae_loss=263.4171]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1483/3000 [00:25<00:25, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5185, epoch=1483/3001, vae_loss=263.5185]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 1484/3000 [00:25<00:25, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6000, epoch=1484/3001, vae_loss=263.6000]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1485/3000 [00:25<00:25, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6089, epoch=1485/3001, vae_loss=263.6089]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1486/3000 [00:25<00:25, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.2723, epoch=1486/3001, vae_loss=264.2723]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1487/3000 [00:25<00:25, 59.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.8605, epoch=1487/3001, vae_loss=263.8605]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1488/3000 [00:25<00:25, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.8605, epoch=1487/3001, vae_loss=263.8605]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1488/3000 [00:25<00:25, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1911, epoch=1488/3001, vae_loss=263.1911]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1489/3000 [00:25<00:25, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6825, epoch=1489/3001, vae_loss=263.6825]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1490/3000 [00:25<00:25, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.7336, epoch=1490/3001, vae_loss=263.7336]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1491/3000 [00:25<00:25, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=264.3863, epoch=1491/3001, vae_loss=264.3863]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1492/3000 [00:25<00:25, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6991, epoch=1492/3001, vae_loss=263.6991]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1493/3000 [00:25<00:25, 59.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5984, epoch=1493/3001, vae_loss=263.5984]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1494/3000 [00:25<00:25, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5984, epoch=1493/3001, vae_loss=263.5984]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1494/3000 [00:25<00:25, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5579, epoch=1494/3001, vae_loss=263.5579]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1495/3000 [00:25<00:25, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2646, epoch=1495/3001, vae_loss=263.2646]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1496/3000 [00:25<00:25, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1479, epoch=1496/3001, vae_loss=263.1479]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1497/3000 [00:25<00:25, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4960, epoch=1497/3001, vae_loss=263.4960]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1498/3000 [00:25<00:25, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.9465, epoch=1498/3001, vae_loss=263.9465]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 1499/3000 [00:25<00:25, 59.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2868, epoch=1499/3001, vae_loss=263.2868]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1500/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2868, epoch=1499/3001, vae_loss=263.2868]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1500/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3442, epoch=1500/3001, vae_loss=263.3442]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1501/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2709, epoch=1501/3001, vae_loss=263.2709]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1502/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6758, epoch=1502/3001, vae_loss=263.6758]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1503/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3958, epoch=1503/3001, vae_loss=263.3958]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1504/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2802, epoch=1504/3001, vae_loss=263.2802]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1505/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.8748, epoch=1505/3001, vae_loss=263.8748]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1506/3000 [00:25<00:25, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2671, epoch=1506/3001, vae_loss=263.2671]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1507/3000 [00:25<00:25, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2671, epoch=1506/3001, vae_loss=263.2671]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1507/3000 [00:25<00:25, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6514, epoch=1507/3001, vae_loss=263.6514]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1508/3000 [00:25<00:25, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0689, epoch=1508/3001, vae_loss=263.0689]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1509/3000 [00:25<00:24, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.7810, epoch=1509/3001, vae_loss=263.7810]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1510/3000 [00:25<00:24, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1805, epoch=1510/3001, vae_loss=263.1805]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1511/3000 [00:25<00:24, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5198, epoch=1511/3001, vae_loss=263.5198]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1512/3000 [00:25<00:24, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9117, epoch=1512/3001, vae_loss=262.9117]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1513/3000 [00:25<00:24, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0558, epoch=1513/3001, vae_loss=263.0558]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1514/3000 [00:25<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0558, epoch=1513/3001, vae_loss=263.0558]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1514/3000 [00:25<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3628, epoch=1514/3001, vae_loss=263.3628]
Training: VAE for learning meaningful embeddings:  50%|█████     | 1515/3000 [00:25<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6069, epoch=1515/3001, vae_loss=263.6069]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1516/3000 [00:25<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.7520, epoch=1516/3001, vae_loss=263.7520]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1517/3000 [00:25<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5270, epoch=1517/3001, vae_loss=262.5270]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1518/3000 [00:26<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3705, epoch=1518/3001, vae_loss=263.3705]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1519/3000 [00:26<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2285, epoch=1519/3001, vae_loss=263.2285]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1520/3000 [00:26<00:24, 59.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3103, epoch=1520/3001, vae_loss=263.3103]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1521/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3103, epoch=1520/3001, vae_loss=263.3103]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1521/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4788, epoch=1521/3001, vae_loss=263.4788]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1522/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0893, epoch=1522/3001, vae_loss=263.0893]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1523/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5356, epoch=1523/3001, vae_loss=263.5356]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1524/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4444, epoch=1524/3001, vae_loss=263.4444]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1525/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0487, epoch=1525/3001, vae_loss=263.0487]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1526/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1415, epoch=1526/3001, vae_loss=263.1415]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1527/3000 [00:26<00:24, 60.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0532, epoch=1527/3001, vae_loss=263.0532]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1528/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0532, epoch=1527/3001, vae_loss=263.0532]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1528/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0621, epoch=1528/3001, vae_loss=263.0621]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1529/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2553, epoch=1529/3001, vae_loss=263.2553]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1530/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.7820, epoch=1530/3001, vae_loss=262.7820]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1531/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1202, epoch=1531/3001, vae_loss=263.1202]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1532/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4307, epoch=1532/3001, vae_loss=262.4307]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1533/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5684, epoch=1533/3001, vae_loss=262.5684]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1534/3000 [00:26<00:24, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1351, epoch=1534/3001, vae_loss=263.1351]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1535/3000 [00:26<00:24, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1351, epoch=1534/3001, vae_loss=263.1351]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1535/3000 [00:26<00:24, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9381, epoch=1535/3001, vae_loss=262.9381]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1536/3000 [00:26<00:24, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5893, epoch=1536/3001, vae_loss=263.5893]
Training: VAE for learning meaningful embeddings:  51%|█████     | 1537/3000 [00:26<00:24, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3904, epoch=1537/3001, vae_loss=262.3904]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1538/3000 [00:26<00:24, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3146, epoch=1538/3001, vae_loss=263.3146]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1539/3000 [00:26<00:24, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5972, epoch=1539/3001, vae_loss=263.5972]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1540/3000 [00:26<00:24, 59.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6946, epoch=1540/3001, vae_loss=262.6946]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1541/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6946, epoch=1540/3001, vae_loss=262.6946]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1541/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9770, epoch=1541/3001, vae_loss=262.9770]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1542/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9624, epoch=1542/3001, vae_loss=262.9624]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1543/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9684, epoch=1543/3001, vae_loss=262.9684]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 1544/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.7282, epoch=1544/3001, vae_loss=262.7282]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1545/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1002, epoch=1545/3001, vae_loss=263.1002]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1546/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.7983, epoch=1546/3001, vae_loss=262.7983]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1547/3000 [00:26<00:24, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9486, epoch=1547/3001, vae_loss=262.9486]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1548/3000 [00:26<00:24, 59.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9486, epoch=1547/3001, vae_loss=262.9486]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1548/3000 [00:26<00:24, 59.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9935, epoch=1548/3001, vae_loss=262.9935]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1549/3000 [00:26<00:24, 59.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6930, epoch=1549/3001, vae_loss=262.6930]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1550/3000 [00:26<00:24, 59.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1756, epoch=1550/3001, vae_loss=263.1756]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1551/3000 [00:26<00:24, 59.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.1466, epoch=1551/3001, vae_loss=262.1466]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1552/3000 [00:26<00:24, 59.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.2914, epoch=1552/3001, vae_loss=262.2914]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1553/3000 [00:26<00:24, 59.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6549, epoch=1553/3001, vae_loss=262.6549]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1554/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6549, epoch=1553/3001, vae_loss=262.6549]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1554/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5335, epoch=1554/3001, vae_loss=262.5335]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1555/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0012, epoch=1555/3001, vae_loss=263.0012]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1556/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.2016, epoch=1556/3001, vae_loss=262.2016]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1557/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0581, epoch=1557/3001, vae_loss=263.0581]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1558/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6443, epoch=1558/3001, vae_loss=262.6443]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1559/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9011, epoch=1559/3001, vae_loss=262.9011]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1560/3000 [00:26<00:24, 59.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8122, epoch=1560/3001, vae_loss=262.8122]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1561/3000 [00:26<00:24, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8122, epoch=1560/3001, vae_loss=262.8122]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1561/3000 [00:26<00:24, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1068, epoch=1561/3001, vae_loss=263.1068]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1562/3000 [00:26<00:24, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3976, epoch=1562/3001, vae_loss=262.3976]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1563/3000 [00:26<00:24, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5023, epoch=1563/3001, vae_loss=263.5023]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1564/3000 [00:26<00:24, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2777, epoch=1564/3001, vae_loss=263.2777]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1565/3000 [00:26<00:24, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5465, epoch=1565/3001, vae_loss=262.5465]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1566/3000 [00:26<00:24, 59.55it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4332, epoch=1566/3001, vae_loss=263.4332]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1567/3000 [00:26<00:24, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4332, epoch=1566/3001, vae_loss=263.4332]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1567/3000 [00:26<00:24, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1166, epoch=1567/3001, vae_loss=263.1166]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1568/3000 [00:26<00:24, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2216, epoch=1568/3001, vae_loss=263.2216]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1569/3000 [00:26<00:24, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.7972, epoch=1569/3001, vae_loss=262.7972]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1570/3000 [00:26<00:24, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3517, epoch=1570/3001, vae_loss=262.3517]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1571/3000 [00:26<00:24, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4790, epoch=1571/3001, vae_loss=262.4790]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1572/3000 [00:26<00:24, 59.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3128, epoch=1572/3001, vae_loss=262.3128]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1573/3000 [00:26<00:24, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3128, epoch=1572/3001, vae_loss=262.3128]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1573/3000 [00:26<00:24, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.7845, epoch=1573/3001, vae_loss=262.7845]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 1574/3000 [00:26<00:24, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5289, epoch=1574/3001, vae_loss=262.5289]
Training: VAE for learning meaningful embeddings:  52%|█████▎    | 1575/3000 [00:26<00:24, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5396, epoch=1575/3001, vae_loss=262.5396]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1576/3000 [00:26<00:24, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6523, epoch=1576/3001, vae_loss=262.6523]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1577/3000 [00:27<00:24, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3214, epoch=1577/3001, vae_loss=262.3214]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1578/3000 [00:27<00:24, 59.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5702, epoch=1578/3001, vae_loss=262.5702]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1579/3000 [00:27<00:23, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5702, epoch=1578/3001, vae_loss=262.5702]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1579/3000 [00:27<00:23, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0731, epoch=1579/3001, vae_loss=262.0731]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1580/3000 [00:27<00:23, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3949, epoch=1580/3001, vae_loss=262.3949]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1581/3000 [00:27<00:23, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3924, epoch=1581/3001, vae_loss=262.3924]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1582/3000 [00:27<00:23, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1682, epoch=1582/3001, vae_loss=263.1682]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1583/3000 [00:27<00:23, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9863, epoch=1583/3001, vae_loss=262.9863]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1584/3000 [00:27<00:23, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9229, epoch=1584/3001, vae_loss=262.9229]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1585/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9229, epoch=1584/3001, vae_loss=262.9229]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1585/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.9973, epoch=1585/3001, vae_loss=262.9973]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1586/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3309, epoch=1586/3001, vae_loss=262.3309]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1587/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8102, epoch=1587/3001, vae_loss=262.8102]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1588/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4276, epoch=1588/3001, vae_loss=262.4276]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1589/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4956, epoch=1589/3001, vae_loss=262.4956]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1590/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8205, epoch=1590/3001, vae_loss=262.8205]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1591/3000 [00:27<00:24, 58.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5436, epoch=1591/3001, vae_loss=262.5436]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1592/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.5436, epoch=1591/3001, vae_loss=262.5436]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1592/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0733, epoch=1592/3001, vae_loss=263.0733]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1593/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.7639, epoch=1593/3001, vae_loss=262.7639]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1594/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.0000, epoch=1594/3001, vae_loss=263.0000]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1595/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.1371, epoch=1595/3001, vae_loss=262.1371]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1596/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8033, epoch=1596/3001, vae_loss=262.8033]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1597/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0268, epoch=1597/3001, vae_loss=262.0268]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1598/3000 [00:27<00:23, 59.19it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6219, epoch=1598/3001, vae_loss=263.6219]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1599/3000 [00:27<00:23, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6219, epoch=1598/3001, vae_loss=263.6219]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1599/3000 [00:27<00:23, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7075, epoch=1599/3001, vae_loss=261.7075]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1600/3000 [00:27<00:23, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8510, epoch=1600/3001, vae_loss=262.8510]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1601/3000 [00:27<00:23, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.1339, epoch=1601/3001, vae_loss=262.1339]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1602/3000 [00:27<00:23, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.1651, epoch=1602/3001, vae_loss=263.1651]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1603/3000 [00:27<00:23, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8666, epoch=1603/3001, vae_loss=262.8666]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 1604/3000 [00:27<00:23, 59.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4629, epoch=1604/3001, vae_loss=262.4629]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1605/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4629, epoch=1604/3001, vae_loss=262.4629]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1605/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.6838, epoch=1605/3001, vae_loss=263.6838]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1606/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8814, epoch=1606/3001, vae_loss=261.8814]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1607/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.4597, epoch=1607/3001, vae_loss=263.4597]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1608/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3340, epoch=1608/3001, vae_loss=262.3340]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1609/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.7590, epoch=1609/3001, vae_loss=263.7590]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1610/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4543, epoch=1610/3001, vae_loss=262.4543]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1611/3000 [00:27<00:23, 59.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5818, epoch=1611/3001, vae_loss=263.5818]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1612/3000 [00:27<00:23, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.5818, epoch=1611/3001, vae_loss=263.5818]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 1612/3000 [00:27<00:23, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.1814, epoch=1612/3001, vae_loss=262.1814]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1613/3000 [00:27<00:23, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.8396, epoch=1613/3001, vae_loss=262.8396]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1614/3000 [00:27<00:23, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.6202, epoch=1614/3001, vae_loss=262.6202]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1615/3000 [00:27<00:23, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.2411, epoch=1615/3001, vae_loss=263.2411]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1616/3000 [00:27<00:23, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.7821, epoch=1616/3001, vae_loss=262.7821]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1617/3000 [00:27<00:22, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.2811, epoch=1617/3001, vae_loss=262.2811]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1618/3000 [00:27<00:22, 60.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.2770, epoch=1618/3001, vae_loss=262.2770]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1619/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.2770, epoch=1618/3001, vae_loss=262.2770]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1619/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=263.3602, epoch=1619/3001, vae_loss=263.3602]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1620/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.2919, epoch=1620/3001, vae_loss=262.2919]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1621/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.9686, epoch=1621/3001, vae_loss=261.9686]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1622/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6027, epoch=1622/3001, vae_loss=261.6027]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1623/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.9427, epoch=1623/3001, vae_loss=261.9427]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1624/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6437, epoch=1624/3001, vae_loss=261.6437]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1625/3000 [00:27<00:22, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4698, epoch=1625/3001, vae_loss=262.4698]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1626/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4698, epoch=1625/3001, vae_loss=262.4698]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1626/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7070, epoch=1626/3001, vae_loss=261.7070]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1627/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8413, epoch=1627/3001, vae_loss=261.8413]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1628/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5638, epoch=1628/3001, vae_loss=261.5638]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1629/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0274, epoch=1629/3001, vae_loss=262.0274]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1630/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4156, epoch=1630/3001, vae_loss=261.4156]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1631/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4959, epoch=1631/3001, vae_loss=261.4959]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1632/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6455, epoch=1632/3001, vae_loss=261.6455]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1633/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6455, epoch=1632/3001, vae_loss=261.6455]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1633/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8425, epoch=1633/3001, vae_loss=261.8425]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 1634/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6819, epoch=1634/3001, vae_loss=261.6819]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1635/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5762, epoch=1635/3001, vae_loss=261.5762]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1636/3000 [00:27<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0847, epoch=1636/3001, vae_loss=262.0847]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1637/3000 [00:28<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8300, epoch=1637/3001, vae_loss=261.8300]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1638/3000 [00:28<00:22, 59.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4391, epoch=1638/3001, vae_loss=262.4391]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1639/3000 [00:28<00:22, 59.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.4391, epoch=1638/3001, vae_loss=262.4391]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1639/3000 [00:28<00:22, 59.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8640, epoch=1639/3001, vae_loss=261.8640]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1640/3000 [00:28<00:22, 59.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7564, epoch=1640/3001, vae_loss=261.7564]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1641/3000 [00:28<00:22, 59.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.3293, epoch=1641/3001, vae_loss=262.3293]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1642/3000 [00:28<00:22, 59.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1953, epoch=1642/3001, vae_loss=261.1953]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1643/3000 [00:28<00:22, 59.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8375, epoch=1643/3001, vae_loss=261.8375]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1644/3000 [00:28<00:22, 59.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5119, epoch=1644/3001, vae_loss=261.5119]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1645/3000 [00:28<00:22, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5119, epoch=1644/3001, vae_loss=261.5119]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1645/3000 [00:28<00:22, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0357, epoch=1645/3001, vae_loss=262.0357]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1646/3000 [00:28<00:22, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1769, epoch=1646/3001, vae_loss=261.1769]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1647/3000 [00:28<00:22, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0642, epoch=1647/3001, vae_loss=262.0642]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1648/3000 [00:28<00:22, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4690, epoch=1648/3001, vae_loss=261.4690]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 1649/3000 [00:28<00:22, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4509, epoch=1649/3001, vae_loss=261.4509]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1650/3000 [00:28<00:22, 59.80it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0602, epoch=1650/3001, vae_loss=262.0602]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1651/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0602, epoch=1650/3001, vae_loss=262.0602]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1651/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6003, epoch=1651/3001, vae_loss=261.6003]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1652/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.9127, epoch=1652/3001, vae_loss=261.9127]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1653/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4742, epoch=1653/3001, vae_loss=261.4742]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1654/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5585, epoch=1654/3001, vae_loss=261.5585]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1655/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8827, epoch=1655/3001, vae_loss=261.8827]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1656/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6321, epoch=1656/3001, vae_loss=261.6321]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1657/3000 [00:28<00:22, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7705, epoch=1657/3001, vae_loss=261.7705]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1658/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7705, epoch=1657/3001, vae_loss=261.7705]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1658/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.3050, epoch=1658/3001, vae_loss=261.3050]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1659/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5952, epoch=1659/3001, vae_loss=261.5952]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1660/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4911, epoch=1660/3001, vae_loss=261.4911]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1661/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9468, epoch=1661/3001, vae_loss=260.9468]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1662/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.3827, epoch=1662/3001, vae_loss=261.3827]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1663/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7801, epoch=1663/3001, vae_loss=261.7801]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 1664/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0450, epoch=1664/3001, vae_loss=261.0450]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1665/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0450, epoch=1664/3001, vae_loss=261.0450]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1665/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8577, epoch=1665/3001, vae_loss=260.8577]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1666/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5276, epoch=1666/3001, vae_loss=261.5276]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1667/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1274, epoch=1667/3001, vae_loss=261.1274]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1668/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5189, epoch=1668/3001, vae_loss=260.5189]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1669/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7542, epoch=1669/3001, vae_loss=261.7542]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1670/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0836, epoch=1670/3001, vae_loss=261.0836]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1671/3000 [00:28<00:22, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7323, epoch=1671/3001, vae_loss=261.7323]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1672/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.7323, epoch=1671/3001, vae_loss=261.7323]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1672/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0552, epoch=1672/3001, vae_loss=261.0552]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1673/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4622, epoch=1673/3001, vae_loss=261.4622]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1674/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1735, epoch=1674/3001, vae_loss=261.1735]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1675/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0255, epoch=1675/3001, vae_loss=261.0255]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1676/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.5554, epoch=1676/3001, vae_loss=261.5554]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1677/3000 [00:28<00:22, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0627, epoch=1677/3001, vae_loss=262.0627]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1678/3000 [00:28<00:22, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=262.0627, epoch=1677/3001, vae_loss=262.0627]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1678/3000 [00:28<00:22, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0474, epoch=1678/3001, vae_loss=261.0474]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1679/3000 [00:28<00:22, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.8698, epoch=1679/3001, vae_loss=261.8698]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1680/3000 [00:28<00:22, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0173, epoch=1680/3001, vae_loss=261.0173]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1681/3000 [00:28<00:22, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1190, epoch=1681/3001, vae_loss=261.1190]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1682/3000 [00:28<00:22, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0027, epoch=1682/3001, vae_loss=261.0027]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1683/3000 [00:28<00:22, 59.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6479, epoch=1683/3001, vae_loss=261.6479]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1684/3000 [00:28<00:22, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.6479, epoch=1683/3001, vae_loss=261.6479]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1684/3000 [00:28<00:22, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9090, epoch=1684/3001, vae_loss=260.9090]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1685/3000 [00:28<00:22, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9074, epoch=1685/3001, vae_loss=260.9074]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1686/3000 [00:28<00:22, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.4437, epoch=1686/3001, vae_loss=261.4437]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 1687/3000 [00:28<00:22, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.3174, epoch=1687/3001, vae_loss=261.3174]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1688/3000 [00:28<00:22, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9479, epoch=1688/3001, vae_loss=260.9479]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1689/3000 [00:28<00:22, 59.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1420, epoch=1689/3001, vae_loss=261.1420]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1690/3000 [00:28<00:22, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1420, epoch=1689/3001, vae_loss=261.1420]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1690/3000 [00:28<00:22, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8203, epoch=1690/3001, vae_loss=260.8203]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1691/3000 [00:28<00:22, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9739, epoch=1691/3001, vae_loss=260.9739]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1692/3000 [00:28<00:22, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8013, epoch=1692/3001, vae_loss=260.8013]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1693/3000 [00:28<00:22, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6769, epoch=1693/3001, vae_loss=260.6769]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1694/3000 [00:28<00:22, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3929, epoch=1694/3001, vae_loss=260.3929]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 1695/3000 [00:28<00:22, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.2106, epoch=1695/3001, vae_loss=261.2106]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1696/3000 [00:28<00:22, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.2106, epoch=1695/3001, vae_loss=261.2106]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1696/3000 [00:29<00:22, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6683, epoch=1696/3001, vae_loss=260.6683]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1697/3000 [00:29<00:22, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9897, epoch=1697/3001, vae_loss=260.9897]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1698/3000 [00:29<00:22, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4402, epoch=1698/3001, vae_loss=260.4402]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1699/3000 [00:29<00:22, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0331, epoch=1699/3001, vae_loss=261.0331]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1700/3000 [00:29<00:22, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1736, epoch=1700/3001, vae_loss=260.1736]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1701/3000 [00:29<00:22, 58.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.2772, epoch=1701/3001, vae_loss=261.2772]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1702/3000 [00:29<00:22, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.2772, epoch=1701/3001, vae_loss=261.2772]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1702/3000 [00:29<00:22, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8595, epoch=1702/3001, vae_loss=260.8595]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1703/3000 [00:29<00:22, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8556, epoch=1703/3001, vae_loss=260.8556]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1704/3000 [00:29<00:22, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.7455, epoch=1704/3001, vae_loss=260.7455]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1705/3000 [00:29<00:22, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.7866, epoch=1705/3001, vae_loss=260.7866]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1706/3000 [00:29<00:22, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5161, epoch=1706/3001, vae_loss=260.5161]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1707/3000 [00:29<00:22, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1747, epoch=1707/3001, vae_loss=260.1747]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1708/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1747, epoch=1707/3001, vae_loss=260.1747]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1708/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1382, epoch=1708/3001, vae_loss=261.1382]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1709/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5343, epoch=1709/3001, vae_loss=260.5343]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1710/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5467, epoch=1710/3001, vae_loss=260.5467]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1711/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5329, epoch=1711/3001, vae_loss=260.5329]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1712/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7538, epoch=1712/3001, vae_loss=259.7538]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1713/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1888, epoch=1713/3001, vae_loss=260.1888]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1714/3000 [00:29<00:22, 58.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2945, epoch=1714/3001, vae_loss=260.2945]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1715/3000 [00:29<00:21, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2945, epoch=1714/3001, vae_loss=260.2945]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1715/3000 [00:29<00:21, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9228, epoch=1715/3001, vae_loss=260.9228]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1716/3000 [00:29<00:21, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9261, epoch=1716/3001, vae_loss=260.9261]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1717/3000 [00:29<00:21, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4040, epoch=1717/3001, vae_loss=260.4040]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1718/3000 [00:29<00:21, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4661, epoch=1718/3001, vae_loss=260.4661]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1719/3000 [00:29<00:21, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.2641, epoch=1719/3001, vae_loss=261.2641]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1720/3000 [00:29<00:21, 58.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8079, epoch=1720/3001, vae_loss=260.8079]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1721/3000 [00:29<00:21, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8079, epoch=1720/3001, vae_loss=260.8079]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1721/3000 [00:29<00:21, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.7663, epoch=1721/3001, vae_loss=260.7663]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1722/3000 [00:29<00:21, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0619, epoch=1722/3001, vae_loss=261.0619]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1723/3000 [00:29<00:21, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6161, epoch=1723/3001, vae_loss=260.6161]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 1724/3000 [00:29<00:21, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8053, epoch=1724/3001, vae_loss=260.8053]
Training: VAE for learning meaningful embeddings:  57%|█████▊    | 1725/3000 [00:29<00:21, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4322, epoch=1725/3001, vae_loss=260.4322]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1726/3000 [00:29<00:21, 59.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6817, epoch=1726/3001, vae_loss=260.6817]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1727/3000 [00:29<00:21, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6817, epoch=1726/3001, vae_loss=260.6817]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1727/3000 [00:29<00:21, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5179, epoch=1727/3001, vae_loss=260.5179]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1728/3000 [00:29<00:21, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4802, epoch=1728/3001, vae_loss=260.4802]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1729/3000 [00:29<00:21, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9202, epoch=1729/3001, vae_loss=260.9202]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1730/3000 [00:29<00:21, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4436, epoch=1730/3001, vae_loss=260.4436]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1731/3000 [00:29<00:21, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.7981, epoch=1731/3001, vae_loss=260.7981]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1732/3000 [00:29<00:21, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5216, epoch=1732/3001, vae_loss=260.5216]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1733/3000 [00:29<00:21, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5216, epoch=1732/3001, vae_loss=260.5216]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1733/3000 [00:29<00:21, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2374, epoch=1733/3001, vae_loss=260.2374]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1734/3000 [00:29<00:21, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1965, epoch=1734/3001, vae_loss=260.1965]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1735/3000 [00:29<00:21, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4722, epoch=1735/3001, vae_loss=260.4722]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1736/3000 [00:29<00:21, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2073, epoch=1736/3001, vae_loss=260.2073]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1737/3000 [00:29<00:21, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3409, epoch=1737/3001, vae_loss=260.3409]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1738/3000 [00:29<00:21, 57.96it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1945, epoch=1738/3001, vae_loss=260.1945]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1739/3000 [00:29<00:21, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1945, epoch=1738/3001, vae_loss=260.1945]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1739/3000 [00:29<00:21, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9003, epoch=1739/3001, vae_loss=259.9003]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1740/3000 [00:29<00:21, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8927, epoch=1740/3001, vae_loss=260.8927]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1741/3000 [00:29<00:21, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9662, epoch=1741/3001, vae_loss=260.9662]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1742/3000 [00:29<00:21, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4392, epoch=1742/3001, vae_loss=260.4392]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1743/3000 [00:29<00:21, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1311, epoch=1743/3001, vae_loss=260.1311]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1744/3000 [00:29<00:21, 58.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1646, epoch=1744/3001, vae_loss=260.1646]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1745/3000 [00:29<00:21, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1646, epoch=1744/3001, vae_loss=260.1646]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1745/3000 [00:29<00:21, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1817, epoch=1745/3001, vae_loss=260.1817]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1746/3000 [00:29<00:21, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4471, epoch=1746/3001, vae_loss=260.4471]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1747/3000 [00:29<00:21, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1814, epoch=1747/3001, vae_loss=260.1814]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1748/3000 [00:29<00:21, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1298, epoch=1748/3001, vae_loss=260.1298]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1749/3000 [00:29<00:21, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0023, epoch=1749/3001, vae_loss=260.0023]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1750/3000 [00:29<00:21, 58.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0282, epoch=1750/3001, vae_loss=261.0282]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1751/3000 [00:29<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.0282, epoch=1750/3001, vae_loss=261.0282]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1751/3000 [00:29<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8659, epoch=1751/3001, vae_loss=259.8659]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1752/3000 [00:29<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0404, epoch=1752/3001, vae_loss=260.0404]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1753/3000 [00:29<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7474, epoch=1753/3001, vae_loss=259.7474]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1754/3000 [00:30<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2903, epoch=1754/3001, vae_loss=260.2903]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 1755/3000 [00:30<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5347, epoch=1755/3001, vae_loss=260.5347]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1756/3000 [00:30<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9117, epoch=1756/3001, vae_loss=259.9117]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1757/3000 [00:30<00:21, 58.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8336, epoch=1757/3001, vae_loss=260.8336]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1758/3000 [00:30<00:20, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8336, epoch=1757/3001, vae_loss=260.8336]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1758/3000 [00:30<00:20, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3771, epoch=1758/3001, vae_loss=260.3771]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1759/3000 [00:30<00:20, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2822, epoch=1759/3001, vae_loss=260.2822]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1760/3000 [00:30<00:20, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0845, epoch=1760/3001, vae_loss=260.0845]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1761/3000 [00:30<00:20, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6409, epoch=1761/3001, vae_loss=260.6409]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 1762/3000 [00:30<00:20, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1222, epoch=1762/3001, vae_loss=260.1222]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1763/3000 [00:30<00:20, 59.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1912, epoch=1763/3001, vae_loss=260.1912]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1764/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1912, epoch=1763/3001, vae_loss=260.1912]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1764/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5013, epoch=1764/3001, vae_loss=260.5013]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1765/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5551, epoch=1765/3001, vae_loss=259.5551]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1766/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9414, epoch=1766/3001, vae_loss=259.9414]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1767/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7065, epoch=1767/3001, vae_loss=259.7065]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1768/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8786, epoch=1768/3001, vae_loss=259.8786]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1769/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6141, epoch=1769/3001, vae_loss=259.6141]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1770/3000 [00:30<00:20, 59.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8546, epoch=1770/3001, vae_loss=259.8546]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1771/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8546, epoch=1770/3001, vae_loss=259.8546]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1771/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9993, epoch=1771/3001, vae_loss=259.9993]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1772/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8142, epoch=1772/3001, vae_loss=259.8142]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1773/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9277, epoch=1773/3001, vae_loss=259.9277]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1774/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9593, epoch=1774/3001, vae_loss=259.9593]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1775/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6929, epoch=1775/3001, vae_loss=259.6929]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1776/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3004, epoch=1776/3001, vae_loss=260.3004]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1777/3000 [00:30<00:20, 59.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8088, epoch=1777/3001, vae_loss=259.8088]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1778/3000 [00:30<00:20, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8088, epoch=1777/3001, vae_loss=259.8088]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1778/3000 [00:30<00:20, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3893, epoch=1778/3001, vae_loss=260.3893]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1779/3000 [00:30<00:20, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0451, epoch=1779/3001, vae_loss=260.0451]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1780/3000 [00:30<00:20, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7926, epoch=1780/3001, vae_loss=259.7926]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1781/3000 [00:30<00:20, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9353, epoch=1781/3001, vae_loss=260.9353]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1782/3000 [00:30<00:20, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6885, epoch=1782/3001, vae_loss=259.6885]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1783/3000 [00:30<00:20, 60.01it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6353, epoch=1783/3001, vae_loss=260.6353]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1784/3000 [00:30<00:20, 60.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6353, epoch=1783/3001, vae_loss=260.6353]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 1784/3000 [00:30<00:20, 60.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6474, epoch=1784/3001, vae_loss=260.6474]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1785/3000 [00:30<00:20, 60.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4076, epoch=1785/3001, vae_loss=260.4076]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1786/3000 [00:30<00:20, 60.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0128, epoch=1786/3001, vae_loss=260.0128]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1787/3000 [00:30<00:20, 60.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5414, epoch=1787/3001, vae_loss=260.5414]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1788/3000 [00:30<00:20, 60.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0749, epoch=1788/3001, vae_loss=260.0749]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1789/3000 [00:30<00:20, 60.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0830, epoch=1789/3001, vae_loss=260.0830]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1790/3000 [00:30<00:20, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0830, epoch=1789/3001, vae_loss=260.0830]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1790/3000 [00:30<00:20, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0279, epoch=1790/3001, vae_loss=260.0279]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1791/3000 [00:30<00:20, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6970, epoch=1791/3001, vae_loss=260.6970]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1792/3000 [00:30<00:20, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9888, epoch=1792/3001, vae_loss=259.9888]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1793/3000 [00:30<00:20, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3409, epoch=1793/3001, vae_loss=260.3409]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1794/3000 [00:30<00:20, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0159, epoch=1794/3001, vae_loss=260.0159]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1795/3000 [00:30<00:20, 59.66it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3253, epoch=1795/3001, vae_loss=260.3253]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1796/3000 [00:30<00:20, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3253, epoch=1795/3001, vae_loss=260.3253]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1796/3000 [00:30<00:20, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6744, epoch=1796/3001, vae_loss=260.6744]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1797/3000 [00:30<00:20, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7258, epoch=1797/3001, vae_loss=259.7258]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1798/3000 [00:30<00:20, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.9753, epoch=1798/3001, vae_loss=260.9753]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 1799/3000 [00:30<00:20, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4588, epoch=1799/3001, vae_loss=260.4588]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1800/3000 [00:30<00:20, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.5579, epoch=1800/3001, vae_loss=260.5579]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1801/3000 [00:30<00:20, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8742, epoch=1801/3001, vae_loss=260.8742]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1802/3000 [00:30<00:20, 58.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8742, epoch=1801/3001, vae_loss=260.8742]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1802/3000 [00:30<00:20, 58.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0827, epoch=1802/3001, vae_loss=260.0827]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1803/3000 [00:30<00:20, 58.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4914, epoch=1803/3001, vae_loss=260.4914]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1804/3000 [00:30<00:20, 58.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4045, epoch=1804/3001, vae_loss=260.4045]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1805/3000 [00:30<00:20, 58.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9848, epoch=1805/3001, vae_loss=259.9848]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1806/3000 [00:30<00:20, 58.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0750, epoch=1806/3001, vae_loss=260.0750]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1807/3000 [00:30<00:20, 58.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9471, epoch=1807/3001, vae_loss=259.9471]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1808/3000 [00:30<00:20, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9471, epoch=1807/3001, vae_loss=259.9471]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1808/3000 [00:30<00:20, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3017, epoch=1808/3001, vae_loss=260.3017]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1809/3000 [00:30<00:20, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4332, epoch=1809/3001, vae_loss=259.4332]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1810/3000 [00:30<00:20, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=261.1935, epoch=1810/3001, vae_loss=261.1935]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1811/3000 [00:30<00:20, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.7439, epoch=1811/3001, vae_loss=260.7439]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1812/3000 [00:30<00:20, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0430, epoch=1812/3001, vae_loss=260.0430]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1813/3000 [00:30<00:20, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6125, epoch=1813/3001, vae_loss=260.6125]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1814/3000 [00:30<00:20, 58.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6125, epoch=1813/3001, vae_loss=260.6125]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1814/3000 [00:31<00:20, 58.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4702, epoch=1814/3001, vae_loss=259.4702]
Training: VAE for learning meaningful embeddings:  60%|██████    | 1815/3000 [00:31<00:20, 58.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8975, epoch=1815/3001, vae_loss=260.8975]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1816/3000 [00:31<00:20, 58.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5963, epoch=1816/3001, vae_loss=259.5963]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1817/3000 [00:31<00:20, 58.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.6597, epoch=1817/3001, vae_loss=260.6597]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1818/3000 [00:31<00:20, 58.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7686, epoch=1818/3001, vae_loss=259.7686]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1819/3000 [00:31<00:20, 58.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8279, epoch=1819/3001, vae_loss=260.8279]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1820/3000 [00:31<00:20, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.8279, epoch=1819/3001, vae_loss=260.8279]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1820/3000 [00:31<00:20, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5170, epoch=1820/3001, vae_loss=259.5170]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1821/3000 [00:31<00:20, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4727, epoch=1821/3001, vae_loss=259.4727]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1822/3000 [00:31<00:20, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8539, epoch=1822/3001, vae_loss=259.8539]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1823/3000 [00:31<00:20, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1460, epoch=1823/3001, vae_loss=260.1460]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1824/3000 [00:31<00:20, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2350, epoch=1824/3001, vae_loss=260.2350]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1825/3000 [00:31<00:20, 58.51it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0646, epoch=1825/3001, vae_loss=260.0646]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1826/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0646, epoch=1825/3001, vae_loss=260.0646]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1826/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6717, epoch=1826/3001, vae_loss=259.6717]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1827/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2511, epoch=1827/3001, vae_loss=260.2511]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1828/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4474, epoch=1828/3001, vae_loss=259.4474]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1829/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1577, epoch=1829/3001, vae_loss=260.1577]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1830/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5842, epoch=1830/3001, vae_loss=259.5842]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1831/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4632, epoch=1831/3001, vae_loss=259.4632]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1832/3000 [00:31<00:19, 58.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2742, epoch=1832/3001, vae_loss=260.2742]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1833/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.2742, epoch=1832/3001, vae_loss=260.2742]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1833/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7551, epoch=1833/3001, vae_loss=259.7551]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1834/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7702, epoch=1834/3001, vae_loss=259.7702]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1835/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7380, epoch=1835/3001, vae_loss=259.7380]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1836/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5989, epoch=1836/3001, vae_loss=259.5989]
Training: VAE for learning meaningful embeddings:  61%|██████    | 1837/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7754, epoch=1837/3001, vae_loss=259.7754]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1838/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5555, epoch=1838/3001, vae_loss=259.5555]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1839/3000 [00:31<00:19, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4205, epoch=1839/3001, vae_loss=260.4205]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1840/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.4205, epoch=1839/3001, vae_loss=260.4205]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1840/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5109, epoch=1840/3001, vae_loss=259.5109]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1841/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7676, epoch=1841/3001, vae_loss=259.7676]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1842/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9093, epoch=1842/3001, vae_loss=258.9093]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1843/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9428, epoch=1843/3001, vae_loss=259.9428]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 1844/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4059, epoch=1844/3001, vae_loss=259.4059]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1845/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8298, epoch=1845/3001, vae_loss=259.8298]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1846/3000 [00:31<00:19, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6297, epoch=1846/3001, vae_loss=259.6297]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1847/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6297, epoch=1846/3001, vae_loss=259.6297]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1847/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1126, epoch=1847/3001, vae_loss=260.1126]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1848/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.3921, epoch=1848/3001, vae_loss=260.3921]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1849/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0538, epoch=1849/3001, vae_loss=260.0538]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1850/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0123, epoch=1850/3001, vae_loss=260.0123]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1851/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8092, epoch=1851/3001, vae_loss=259.8092]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1852/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8440, epoch=1852/3001, vae_loss=259.8440]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1853/3000 [00:31<00:19, 60.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9621, epoch=1853/3001, vae_loss=259.9621]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1854/3000 [00:31<00:19, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.9621, epoch=1853/3001, vae_loss=259.9621]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1854/3000 [00:31<00:19, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6768, epoch=1854/3001, vae_loss=259.6768]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1855/3000 [00:31<00:19, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4781, epoch=1855/3001, vae_loss=259.4781]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1856/3000 [00:31<00:19, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8108, epoch=1856/3001, vae_loss=259.8108]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1857/3000 [00:31<00:19, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0765, epoch=1857/3001, vae_loss=259.0765]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1858/3000 [00:31<00:19, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0600, epoch=1858/3001, vae_loss=260.0600]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1859/3000 [00:31<00:18, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1561, epoch=1859/3001, vae_loss=259.1561]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1860/3000 [00:31<00:18, 60.06it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.3500, epoch=1860/3001, vae_loss=259.3500]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1861/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.3500, epoch=1860/3001, vae_loss=259.3500]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1861/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7243, epoch=1861/3001, vae_loss=258.7243]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1862/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7364, epoch=1862/3001, vae_loss=259.7364]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1863/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.3827, epoch=1863/3001, vae_loss=259.3827]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1864/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4618, epoch=1864/3001, vae_loss=259.4618]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1865/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5413, epoch=1865/3001, vae_loss=259.5413]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1866/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9866, epoch=1866/3001, vae_loss=258.9866]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1867/3000 [00:31<00:18, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0559, epoch=1867/3001, vae_loss=260.0559]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1868/3000 [00:31<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.0559, epoch=1867/3001, vae_loss=260.0559]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1868/3000 [00:31<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4702, epoch=1868/3001, vae_loss=259.4702]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1869/3000 [00:31<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=260.1855, epoch=1869/3001, vae_loss=260.1855]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1870/3000 [00:31<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7000, epoch=1870/3001, vae_loss=259.7000]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1871/3000 [00:31<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4557, epoch=1871/3001, vae_loss=259.4557]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1872/3000 [00:31<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.5235, epoch=1872/3001, vae_loss=259.5235]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1873/3000 [00:31<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4242, epoch=1873/3001, vae_loss=259.4242]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 1874/3000 [00:32<00:18, 60.42it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1645, epoch=1874/3001, vae_loss=259.1645]
Training: VAE for learning meaningful embeddings:  62%|██████▎   | 1875/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1645, epoch=1874/3001, vae_loss=259.1645]
Training: VAE for learning meaningful embeddings:  62%|██████▎   | 1875/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0745, epoch=1875/3001, vae_loss=259.0745]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1876/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5330, epoch=1876/3001, vae_loss=258.5330]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1877/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0942, epoch=1877/3001, vae_loss=259.0942]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1878/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0685, epoch=1878/3001, vae_loss=259.0685]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1879/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8911, epoch=1879/3001, vae_loss=258.8911]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1880/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7980, epoch=1880/3001, vae_loss=258.7980]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1881/3000 [00:32<00:18, 60.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6799, epoch=1881/3001, vae_loss=258.6799]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1882/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6799, epoch=1881/3001, vae_loss=258.6799]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1882/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5764, epoch=1882/3001, vae_loss=258.5764]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1883/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5300, epoch=1883/3001, vae_loss=258.5300]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1884/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3508, epoch=1884/3001, vae_loss=258.3508]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1885/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7640, epoch=1885/3001, vae_loss=258.7640]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1886/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6951, epoch=1886/3001, vae_loss=258.6951]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1887/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2250, epoch=1887/3001, vae_loss=259.2250]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1888/3000 [00:32<00:18, 60.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8300, epoch=1888/3001, vae_loss=258.8300]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1889/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8300, epoch=1888/3001, vae_loss=258.8300]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1889/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9922, epoch=1889/3001, vae_loss=258.9922]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1890/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7069, epoch=1890/3001, vae_loss=258.7069]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1891/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1247, epoch=1891/3001, vae_loss=259.1247]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1892/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5907, epoch=1892/3001, vae_loss=258.5907]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1893/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9418, epoch=1893/3001, vae_loss=258.9418]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1894/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9488, epoch=1894/3001, vae_loss=258.9488]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1895/3000 [00:32<00:18, 60.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8078, epoch=1895/3001, vae_loss=258.8078]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1896/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8078, epoch=1895/3001, vae_loss=258.8078]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1896/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7819, epoch=1896/3001, vae_loss=258.7819]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1897/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5794, epoch=1897/3001, vae_loss=258.5794]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1898/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8293, epoch=1898/3001, vae_loss=258.8293]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1899/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7237, epoch=1899/3001, vae_loss=258.7237]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1900/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2524, epoch=1900/3001, vae_loss=259.2524]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1901/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7747, epoch=1901/3001, vae_loss=258.7747]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1902/3000 [00:32<00:18, 59.76it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0819, epoch=1902/3001, vae_loss=259.0819]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1903/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0819, epoch=1902/3001, vae_loss=259.0819]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1903/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1904, epoch=1903/3001, vae_loss=259.1904]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 1904/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2281, epoch=1904/3001, vae_loss=258.2281]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1905/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8307, epoch=1905/3001, vae_loss=258.8307]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1906/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6652, epoch=1906/3001, vae_loss=258.6652]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1907/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3138, epoch=1907/3001, vae_loss=258.3138]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1908/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.8540, epoch=1908/3001, vae_loss=259.8540]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1909/3000 [00:32<00:18, 60.13it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8560, epoch=1909/3001, vae_loss=258.8560]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1910/3000 [00:32<00:18, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8560, epoch=1909/3001, vae_loss=258.8560]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1910/3000 [00:32<00:18, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7419, epoch=1910/3001, vae_loss=258.7419]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1911/3000 [00:32<00:18, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6732, epoch=1911/3001, vae_loss=258.6732]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 1912/3000 [00:32<00:18, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.7687, epoch=1912/3001, vae_loss=259.7687]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1913/3000 [00:32<00:18, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9141, epoch=1913/3001, vae_loss=258.9141]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1914/3000 [00:32<00:18, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2645, epoch=1914/3001, vae_loss=259.2645]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1915/3000 [00:32<00:18, 58.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9085, epoch=1915/3001, vae_loss=258.9085]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1916/3000 [00:32<00:18, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9085, epoch=1915/3001, vae_loss=258.9085]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1916/3000 [00:32<00:18, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4188, epoch=1916/3001, vae_loss=259.4188]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1917/3000 [00:32<00:18, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1705, epoch=1917/3001, vae_loss=259.1705]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1918/3000 [00:32<00:18, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4164, epoch=1918/3001, vae_loss=259.4164]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1919/3000 [00:32<00:18, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8727, epoch=1919/3001, vae_loss=258.8727]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1920/3000 [00:32<00:18, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0287, epoch=1920/3001, vae_loss=259.0287]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1921/3000 [00:32<00:18, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0728, epoch=1921/3001, vae_loss=259.0728]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1922/3000 [00:32<00:18, 58.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0728, epoch=1921/3001, vae_loss=259.0728]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1922/3000 [00:32<00:18, 58.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.3476, epoch=1922/3001, vae_loss=259.3476]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1923/3000 [00:32<00:18, 58.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8868, epoch=1923/3001, vae_loss=258.8868]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1924/3000 [00:32<00:18, 58.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1621, epoch=1924/3001, vae_loss=259.1621]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1925/3000 [00:32<00:18, 58.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6206, epoch=1925/3001, vae_loss=259.6206]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1926/3000 [00:32<00:18, 58.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0158, epoch=1926/3001, vae_loss=259.0158]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1927/3000 [00:32<00:18, 58.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6814, epoch=1927/3001, vae_loss=259.6814]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1928/3000 [00:32<00:18, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6814, epoch=1927/3001, vae_loss=259.6814]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1928/3000 [00:32<00:18, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9429, epoch=1928/3001, vae_loss=258.9429]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1929/3000 [00:32<00:18, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2784, epoch=1929/3001, vae_loss=259.2784]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1930/3000 [00:32<00:18, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6606, epoch=1930/3001, vae_loss=258.6606]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1931/3000 [00:32<00:18, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1909, epoch=1931/3001, vae_loss=259.1909]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1932/3000 [00:32<00:18, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1546, epoch=1932/3001, vae_loss=258.1546]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1933/3000 [00:33<00:18, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6994, epoch=1933/3001, vae_loss=259.6994]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1934/3000 [00:33<00:18, 58.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6994, epoch=1933/3001, vae_loss=259.6994]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1934/3000 [00:33<00:18, 58.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6938, epoch=1934/3001, vae_loss=259.6938]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 1935/3000 [00:33<00:18, 58.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8505, epoch=1935/3001, vae_loss=258.8505]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1936/3000 [00:33<00:18, 58.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2556, epoch=1936/3001, vae_loss=259.2556]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1937/3000 [00:33<00:18, 58.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3774, epoch=1937/3001, vae_loss=258.3774]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1938/3000 [00:33<00:18, 58.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0129, epoch=1938/3001, vae_loss=259.0129]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1939/3000 [00:33<00:18, 58.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7674, epoch=1939/3001, vae_loss=258.7674]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1940/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7674, epoch=1939/3001, vae_loss=258.7674]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1940/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5927, epoch=1940/3001, vae_loss=258.5927]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1941/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8009, epoch=1941/3001, vae_loss=258.8009]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1942/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8294, epoch=1942/3001, vae_loss=258.8294]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1943/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5136, epoch=1943/3001, vae_loss=258.5136]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1944/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7718, epoch=1944/3001, vae_loss=258.7718]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1945/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6089, epoch=1945/3001, vae_loss=258.6089]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1946/3000 [00:33<00:18, 57.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2583, epoch=1946/3001, vae_loss=259.2583]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1947/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2583, epoch=1946/3001, vae_loss=259.2583]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1947/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0061, epoch=1947/3001, vae_loss=258.0061]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1948/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6346, epoch=1948/3001, vae_loss=258.6346]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 1949/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4175, epoch=1949/3001, vae_loss=259.4175]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1950/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.6961, epoch=1950/3001, vae_loss=259.6961]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1951/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7644, epoch=1951/3001, vae_loss=258.7644]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1952/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5703, epoch=1952/3001, vae_loss=258.5703]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1953/3000 [00:33<00:17, 58.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8963, epoch=1953/3001, vae_loss=258.8963]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1954/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8963, epoch=1953/3001, vae_loss=258.8963]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1954/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6545, epoch=1954/3001, vae_loss=258.6545]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1955/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8600, epoch=1955/3001, vae_loss=258.8600]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1956/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8873, epoch=1956/3001, vae_loss=258.8873]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1957/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3351, epoch=1957/3001, vae_loss=258.3351]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1958/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6835, epoch=1958/3001, vae_loss=258.6835]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1959/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6776, epoch=1959/3001, vae_loss=258.6776]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1960/3000 [00:33<00:17, 59.16it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5822, epoch=1960/3001, vae_loss=258.5822]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1961/3000 [00:33<00:17, 59.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5822, epoch=1960/3001, vae_loss=258.5822]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1961/3000 [00:33<00:17, 59.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.4535, epoch=1961/3001, vae_loss=258.4535]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1962/3000 [00:33<00:17, 59.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8495, epoch=1962/3001, vae_loss=258.8495]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1963/3000 [00:33<00:17, 59.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9486, epoch=1963/3001, vae_loss=258.9486]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 1964/3000 [00:33<00:17, 59.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.4045, epoch=1964/3001, vae_loss=259.4045]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1965/3000 [00:33<00:17, 59.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5311, epoch=1965/3001, vae_loss=258.5311]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1966/3000 [00:33<00:17, 59.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5052, epoch=1966/3001, vae_loss=258.5052]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1967/3000 [00:33<00:17, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5052, epoch=1966/3001, vae_loss=258.5052]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1967/3000 [00:33<00:17, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9001, epoch=1967/3001, vae_loss=258.9001]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1968/3000 [00:33<00:17, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9329, epoch=1968/3001, vae_loss=258.9329]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1969/3000 [00:33<00:17, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.6289, epoch=1969/3001, vae_loss=258.6289]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1970/3000 [00:33<00:17, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8306, epoch=1970/3001, vae_loss=258.8306]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1971/3000 [00:33<00:17, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.2258, epoch=1971/3001, vae_loss=259.2258]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1972/3000 [00:33<00:17, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1770, epoch=1972/3001, vae_loss=259.1770]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1973/3000 [00:33<00:17, 59.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1770, epoch=1972/3001, vae_loss=259.1770]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1973/3000 [00:33<00:17, 59.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7934, epoch=1973/3001, vae_loss=258.7934]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1974/3000 [00:33<00:17, 59.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.1363, epoch=1974/3001, vae_loss=259.1363]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1975/3000 [00:33<00:17, 59.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7431, epoch=1975/3001, vae_loss=258.7431]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1976/3000 [00:33<00:17, 59.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7802, epoch=1976/3001, vae_loss=258.7802]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1977/3000 [00:33<00:17, 59.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8375, epoch=1977/3001, vae_loss=258.8375]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1978/3000 [00:33<00:17, 59.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3009, epoch=1978/3001, vae_loss=258.3009]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1979/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3009, epoch=1978/3001, vae_loss=258.3009]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1979/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3934, epoch=1979/3001, vae_loss=258.3934]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1980/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8002, epoch=1980/3001, vae_loss=258.8002]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1981/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9323, epoch=1981/3001, vae_loss=258.9323]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1982/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7280, epoch=1982/3001, vae_loss=258.7280]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1983/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9263, epoch=1983/3001, vae_loss=258.9263]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1984/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.4875, epoch=1984/3001, vae_loss=258.4875]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1985/3000 [00:33<00:17, 59.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0847, epoch=1985/3001, vae_loss=258.0847]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1986/3000 [00:33<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0847, epoch=1985/3001, vae_loss=258.0847]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1986/3000 [00:33<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2808, epoch=1986/3001, vae_loss=258.2808]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 1987/3000 [00:33<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3147, epoch=1987/3001, vae_loss=258.3147]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1988/3000 [00:33<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3983, epoch=1988/3001, vae_loss=258.3983]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1989/3000 [00:33<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5889, epoch=1989/3001, vae_loss=258.5889]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1990/3000 [00:33<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7586, epoch=1990/3001, vae_loss=258.7586]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1991/3000 [00:33<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9214, epoch=1991/3001, vae_loss=257.9214]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1992/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3124, epoch=1992/3001, vae_loss=258.3124]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1993/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3124, epoch=1992/3001, vae_loss=258.3124]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1993/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1902, epoch=1993/3001, vae_loss=258.1902]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1994/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2903, epoch=1994/3001, vae_loss=258.2903]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 1995/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.7851, epoch=1995/3001, vae_loss=258.7851]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 1996/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0300, epoch=1996/3001, vae_loss=258.0300]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 1997/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3208, epoch=1997/3001, vae_loss=258.3208]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 1998/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8372, epoch=1998/3001, vae_loss=257.8372]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 1999/3000 [00:34<00:16, 59.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3876, epoch=1999/3001, vae_loss=258.3876]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2000/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3876, epoch=1999/3001, vae_loss=258.3876]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2000/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9949, epoch=2000/3001, vae_loss=257.9949]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2001/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1306, epoch=2001/3001, vae_loss=258.1306]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2002/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0146, epoch=2002/3001, vae_loss=258.0146]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2003/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7833, epoch=2003/3001, vae_loss=257.7833]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2004/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.4698, epoch=2004/3001, vae_loss=258.4698]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2005/3000 [00:34<00:16, 59.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9444, epoch=2005/3001, vae_loss=257.9444]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2006/3000 [00:34<00:16, 59.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9444, epoch=2005/3001, vae_loss=257.9444]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2006/3000 [00:34<00:16, 59.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5017, epoch=2006/3001, vae_loss=258.5017]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2007/3000 [00:34<00:16, 59.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8948, epoch=2007/3001, vae_loss=257.8948]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2008/3000 [00:34<00:16, 59.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2947, epoch=2008/3001, vae_loss=258.2947]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2009/3000 [00:34<00:16, 59.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5420, epoch=2009/3001, vae_loss=257.5420]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2010/3000 [00:34<00:16, 59.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=259.0198, epoch=2010/3001, vae_loss=259.0198]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2011/3000 [00:34<00:16, 59.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2722, epoch=2011/3001, vae_loss=258.2722]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2012/3000 [00:34<00:16, 59.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2722, epoch=2011/3001, vae_loss=258.2722]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2012/3000 [00:34<00:16, 59.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5772, epoch=2012/3001, vae_loss=258.5772]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2013/3000 [00:34<00:16, 59.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3028, epoch=2013/3001, vae_loss=258.3028]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2014/3000 [00:34<00:16, 59.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2740, epoch=2014/3001, vae_loss=258.2740]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2015/3000 [00:34<00:16, 59.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0976, epoch=2015/3001, vae_loss=258.0976]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2016/3000 [00:34<00:16, 59.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5959, epoch=2016/3001, vae_loss=258.5959]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2017/3000 [00:34<00:16, 59.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5793, epoch=2017/3001, vae_loss=258.5793]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2018/3000 [00:34<00:16, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5793, epoch=2017/3001, vae_loss=258.5793]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2018/3000 [00:34<00:16, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7613, epoch=2018/3001, vae_loss=257.7613]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2019/3000 [00:34<00:16, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.8254, epoch=2019/3001, vae_loss=258.8254]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2020/3000 [00:34<00:16, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6732, epoch=2020/3001, vae_loss=257.6732]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2021/3000 [00:34<00:16, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2800, epoch=2021/3001, vae_loss=258.2800]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2022/3000 [00:34<00:16, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1549, epoch=2022/3001, vae_loss=258.1549]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2023/3000 [00:34<00:16, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1393, epoch=2023/3001, vae_loss=258.1393]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2024/3000 [00:34<00:16, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1393, epoch=2023/3001, vae_loss=258.1393]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 2024/3000 [00:34<00:16, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1681, epoch=2024/3001, vae_loss=258.1681]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2025/3000 [00:34<00:16, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9813, epoch=2025/3001, vae_loss=257.9813]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2026/3000 [00:34<00:16, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2308, epoch=2026/3001, vae_loss=258.2308]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2027/3000 [00:34<00:16, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8889, epoch=2027/3001, vae_loss=257.8889]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2028/3000 [00:34<00:16, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8577, epoch=2028/3001, vae_loss=257.8577]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2029/3000 [00:34<00:16, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8680, epoch=2029/3001, vae_loss=257.8680]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2030/3000 [00:34<00:16, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8680, epoch=2029/3001, vae_loss=257.8680]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2030/3000 [00:34<00:16, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8914, epoch=2030/3001, vae_loss=257.8914]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2031/3000 [00:34<00:16, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0543, epoch=2031/3001, vae_loss=258.0543]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2032/3000 [00:34<00:16, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0373, epoch=2032/3001, vae_loss=258.0373]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2033/3000 [00:34<00:16, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3268, epoch=2033/3001, vae_loss=258.3268]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2034/3000 [00:34<00:16, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0115, epoch=2034/3001, vae_loss=258.0115]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2035/3000 [00:34<00:16, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5978, epoch=2035/3001, vae_loss=258.5978]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2036/3000 [00:34<00:16, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.5978, epoch=2035/3001, vae_loss=258.5978]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2036/3000 [00:34<00:16, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3997, epoch=2036/3001, vae_loss=257.3997]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2037/3000 [00:34<00:16, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.9856, epoch=2037/3001, vae_loss=258.9856]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2038/3000 [00:34<00:16, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5626, epoch=2038/3001, vae_loss=257.5626]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2039/3000 [00:34<00:16, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0300, epoch=2039/3001, vae_loss=258.0300]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2040/3000 [00:34<00:16, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9328, epoch=2040/3001, vae_loss=257.9328]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2041/3000 [00:34<00:16, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6699, epoch=2041/3001, vae_loss=257.6699]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2042/3000 [00:34<00:16, 57.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6699, epoch=2041/3001, vae_loss=257.6699]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2042/3000 [00:34<00:16, 57.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2097, epoch=2042/3001, vae_loss=258.2097]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2043/3000 [00:34<00:16, 57.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7431, epoch=2043/3001, vae_loss=257.7431]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2044/3000 [00:34<00:16, 57.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0524, epoch=2044/3001, vae_loss=258.0524]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2045/3000 [00:34<00:16, 57.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1551, epoch=2045/3001, vae_loss=258.1551]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2046/3000 [00:34<00:16, 57.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8006, epoch=2046/3001, vae_loss=257.8006]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2047/3000 [00:34<00:16, 57.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6229, epoch=2047/3001, vae_loss=257.6229]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2048/3000 [00:34<00:16, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6229, epoch=2047/3001, vae_loss=257.6229]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2048/3000 [00:34<00:16, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1844, epoch=2048/3001, vae_loss=257.1844]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2049/3000 [00:34<00:16, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3130, epoch=2049/3001, vae_loss=258.3130]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2050/3000 [00:35<00:16, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8817, epoch=2050/3001, vae_loss=257.8817]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2051/3000 [00:35<00:16, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.3067, epoch=2051/3001, vae_loss=258.3067]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2052/3000 [00:35<00:16, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6474, epoch=2052/3001, vae_loss=257.6474]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2053/3000 [00:35<00:16, 57.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0257, epoch=2053/3001, vae_loss=258.0257]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2054/3000 [00:35<00:16, 56.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0257, epoch=2053/3001, vae_loss=258.0257]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2054/3000 [00:35<00:16, 56.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2764, epoch=2054/3001, vae_loss=258.2764]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 2055/3000 [00:35<00:16, 56.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7359, epoch=2055/3001, vae_loss=257.7359]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2056/3000 [00:35<00:16, 56.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8787, epoch=2056/3001, vae_loss=257.8787]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2057/3000 [00:35<00:16, 56.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7789, epoch=2057/3001, vae_loss=257.7789]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2058/3000 [00:35<00:16, 56.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8852, epoch=2058/3001, vae_loss=257.8852]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2059/3000 [00:35<00:16, 56.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5171, epoch=2059/3001, vae_loss=257.5171]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2060/3000 [00:35<00:16, 56.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5171, epoch=2059/3001, vae_loss=257.5171]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2060/3000 [00:35<00:16, 56.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9781, epoch=2060/3001, vae_loss=257.9781]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2061/3000 [00:35<00:16, 56.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7982, epoch=2061/3001, vae_loss=257.7982]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 2062/3000 [00:35<00:16, 56.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1274, epoch=2062/3001, vae_loss=258.1274]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2063/3000 [00:35<00:16, 56.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5840, epoch=2063/3001, vae_loss=257.5840]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2064/3000 [00:35<00:16, 56.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1978, epoch=2064/3001, vae_loss=258.1978]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2065/3000 [00:35<00:16, 56.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7080, epoch=2065/3001, vae_loss=257.7080]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2066/3000 [00:35<00:16, 56.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7080, epoch=2065/3001, vae_loss=257.7080]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2066/3000 [00:35<00:16, 56.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.4764, epoch=2066/3001, vae_loss=258.4764]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2067/3000 [00:35<00:16, 56.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9768, epoch=2067/3001, vae_loss=257.9768]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2068/3000 [00:35<00:16, 56.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8842, epoch=2068/3001, vae_loss=257.8842]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2069/3000 [00:35<00:16, 56.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7031, epoch=2069/3001, vae_loss=257.7031]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2070/3000 [00:35<00:16, 56.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8977, epoch=2070/3001, vae_loss=257.8977]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2071/3000 [00:35<00:16, 56.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1885, epoch=2071/3001, vae_loss=258.1885]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2072/3000 [00:35<00:16, 57.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1885, epoch=2071/3001, vae_loss=258.1885]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2072/3000 [00:35<00:16, 57.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7798, epoch=2072/3001, vae_loss=257.7798]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2073/3000 [00:35<00:16, 57.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6039, epoch=2073/3001, vae_loss=257.6039]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2074/3000 [00:35<00:16, 57.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1732, epoch=2074/3001, vae_loss=258.1732]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2075/3000 [00:35<00:16, 57.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7117, epoch=2075/3001, vae_loss=257.7117]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2076/3000 [00:35<00:16, 57.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4590, epoch=2076/3001, vae_loss=257.4590]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2077/3000 [00:35<00:16, 57.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4903, epoch=2077/3001, vae_loss=257.4903]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2078/3000 [00:35<00:16, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4903, epoch=2077/3001, vae_loss=257.4903]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2078/3000 [00:35<00:16, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1401, epoch=2078/3001, vae_loss=258.1401]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2079/3000 [00:35<00:16, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5255, epoch=2079/3001, vae_loss=257.5255]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2080/3000 [00:35<00:16, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7186, epoch=2080/3001, vae_loss=257.7186]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2081/3000 [00:35<00:15, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1630, epoch=2081/3001, vae_loss=258.1630]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2082/3000 [00:35<00:15, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6862, epoch=2082/3001, vae_loss=257.6862]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2083/3000 [00:35<00:15, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0306, epoch=2083/3001, vae_loss=258.0306]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2084/3000 [00:35<00:15, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.0306, epoch=2083/3001, vae_loss=258.0306]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 2084/3000 [00:35<00:15, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8619, epoch=2084/3001, vae_loss=257.8619]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2085/3000 [00:35<00:15, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1150, epoch=2085/3001, vae_loss=258.1150]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2086/3000 [00:35<00:15, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3352, epoch=2086/3001, vae_loss=257.3352]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2087/3000 [00:35<00:15, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7595, epoch=2087/3001, vae_loss=257.7595]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2088/3000 [00:35<00:15, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6318, epoch=2088/3001, vae_loss=257.6318]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2089/3000 [00:35<00:15, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4900, epoch=2089/3001, vae_loss=257.4900]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2090/3000 [00:35<00:15, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4900, epoch=2089/3001, vae_loss=257.4900]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2090/3000 [00:35<00:15, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7516, epoch=2090/3001, vae_loss=257.7516]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2091/3000 [00:35<00:15, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4559, epoch=2091/3001, vae_loss=257.4559]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2092/3000 [00:35<00:15, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7902, epoch=2092/3001, vae_loss=257.7902]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2093/3000 [00:35<00:15, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7615, epoch=2093/3001, vae_loss=257.7615]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2094/3000 [00:35<00:15, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3883, epoch=2094/3001, vae_loss=257.3883]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2095/3000 [00:35<00:15, 57.83it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6984, epoch=2095/3001, vae_loss=257.6984]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2096/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6984, epoch=2095/3001, vae_loss=257.6984]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2096/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6153, epoch=2096/3001, vae_loss=257.6153]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2097/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9853, epoch=2097/3001, vae_loss=257.9853]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2098/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2392, epoch=2098/3001, vae_loss=257.2392]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 2099/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4929, epoch=2099/3001, vae_loss=257.4929]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2100/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5031, epoch=2100/3001, vae_loss=257.5031]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2101/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3693, epoch=2101/3001, vae_loss=257.3693]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2102/3000 [00:35<00:15, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8642, epoch=2102/3001, vae_loss=257.8642]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2103/3000 [00:35<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8642, epoch=2102/3001, vae_loss=257.8642]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2103/3000 [00:35<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5478, epoch=2103/3001, vae_loss=257.5478]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2104/3000 [00:35<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6308, epoch=2104/3001, vae_loss=257.6308]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2105/3000 [00:35<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6717, epoch=2105/3001, vae_loss=257.6717]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2106/3000 [00:35<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5620, epoch=2106/3001, vae_loss=257.5620]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2107/3000 [00:35<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1850, epoch=2107/3001, vae_loss=257.1850]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2108/3000 [00:36<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2140, epoch=2108/3001, vae_loss=257.2140]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2109/3000 [00:36<00:15, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9038, epoch=2109/3001, vae_loss=256.9038]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2110/3000 [00:36<00:14, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9038, epoch=2109/3001, vae_loss=256.9038]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2110/3000 [00:36<00:14, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1032, epoch=2110/3001, vae_loss=257.1032]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2111/3000 [00:36<00:14, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9985, epoch=2111/3001, vae_loss=256.9985]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2112/3000 [00:36<00:14, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4401, epoch=2112/3001, vae_loss=257.4401]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2113/3000 [00:36<00:14, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7916, epoch=2113/3001, vae_loss=256.7916]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2114/3000 [00:36<00:14, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7121, epoch=2114/3001, vae_loss=257.7121]
Training: VAE for learning meaningful embeddings:  70%|███████   | 2115/3000 [00:36<00:14, 59.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8967, epoch=2115/3001, vae_loss=256.8967]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2116/3000 [00:36<00:15, 58.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8967, epoch=2115/3001, vae_loss=256.8967]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2116/3000 [00:36<00:15, 58.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6073, epoch=2116/3001, vae_loss=257.6073]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2117/3000 [00:36<00:15, 58.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6826, epoch=2117/3001, vae_loss=257.6826]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2118/3000 [00:36<00:15, 58.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7548, epoch=2118/3001, vae_loss=257.7548]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2119/3000 [00:36<00:14, 58.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1640, epoch=2119/3001, vae_loss=257.1640]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2120/3000 [00:36<00:14, 58.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0101, epoch=2120/3001, vae_loss=257.0101]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2121/3000 [00:36<00:14, 58.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6204, epoch=2121/3001, vae_loss=257.6204]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2122/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6204, epoch=2121/3001, vae_loss=257.6204]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2122/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9352, epoch=2122/3001, vae_loss=256.9352]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2123/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3180, epoch=2123/3001, vae_loss=257.3180]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2124/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0074, epoch=2124/3001, vae_loss=257.0074]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2125/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1495, epoch=2125/3001, vae_loss=257.1495]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2126/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0320, epoch=2126/3001, vae_loss=257.0320]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2127/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8662, epoch=2127/3001, vae_loss=256.8662]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2128/3000 [00:36<00:14, 58.78it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9816, epoch=2128/3001, vae_loss=256.9816]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2129/3000 [00:36<00:14, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9816, epoch=2128/3001, vae_loss=256.9816]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2129/3000 [00:36<00:14, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4698, epoch=2129/3001, vae_loss=256.4698]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2130/3000 [00:36<00:14, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6632, epoch=2130/3001, vae_loss=257.6632]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2131/3000 [00:36<00:14, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1887, epoch=2131/3001, vae_loss=257.1887]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2132/3000 [00:36<00:14, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2659, epoch=2132/3001, vae_loss=257.2659]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2133/3000 [00:36<00:14, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6583, epoch=2133/3001, vae_loss=257.6583]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2134/3000 [00:36<00:14, 59.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6353, epoch=2134/3001, vae_loss=257.6353]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2135/3000 [00:36<00:14, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6353, epoch=2134/3001, vae_loss=257.6353]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2135/3000 [00:36<00:14, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6472, epoch=2135/3001, vae_loss=257.6472]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2136/3000 [00:36<00:14, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2061, epoch=2136/3001, vae_loss=257.2061]
Training: VAE for learning meaningful embeddings:  71%|███████   | 2137/3000 [00:36<00:14, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6606, epoch=2137/3001, vae_loss=257.6606]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2138/3000 [00:36<00:14, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3331, epoch=2138/3001, vae_loss=257.3331]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2139/3000 [00:36<00:14, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6801, epoch=2139/3001, vae_loss=257.6801]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2140/3000 [00:36<00:14, 59.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9276, epoch=2140/3001, vae_loss=257.9276]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2141/3000 [00:36<00:14, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9276, epoch=2140/3001, vae_loss=257.9276]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2141/3000 [00:36<00:14, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6757, epoch=2141/3001, vae_loss=257.6757]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2142/3000 [00:36<00:14, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5518, epoch=2142/3001, vae_loss=257.5518]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2143/3000 [00:36<00:14, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.4539, epoch=2143/3001, vae_loss=257.4539]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 2144/3000 [00:36<00:14, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9252, epoch=2144/3001, vae_loss=257.9252]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2145/3000 [00:36<00:14, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6754, epoch=2145/3001, vae_loss=257.6754]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2146/3000 [00:36<00:14, 58.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8641, epoch=2146/3001, vae_loss=257.8641]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2147/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.8641, epoch=2146/3001, vae_loss=257.8641]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2147/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.6527, epoch=2147/3001, vae_loss=257.6527]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2148/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0349, epoch=2148/3001, vae_loss=257.0349]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2149/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5380, epoch=2149/3001, vae_loss=257.5380]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2150/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.9001, epoch=2150/3001, vae_loss=257.9001]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2151/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7354, epoch=2151/3001, vae_loss=257.7354]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2152/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1347, epoch=2152/3001, vae_loss=257.1347]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2153/3000 [00:36<00:14, 58.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2475, epoch=2153/3001, vae_loss=258.2475]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2154/3000 [00:36<00:14, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.2475, epoch=2153/3001, vae_loss=258.2475]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2154/3000 [00:36<00:14, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2792, epoch=2154/3001, vae_loss=257.2792]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2155/3000 [00:36<00:14, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=258.1925, epoch=2155/3001, vae_loss=258.1925]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2156/3000 [00:36<00:14, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6562, epoch=2156/3001, vae_loss=256.6562]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2157/3000 [00:36<00:14, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1300, epoch=2157/3001, vae_loss=257.1300]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2158/3000 [00:36<00:14, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0033, epoch=2158/3001, vae_loss=257.0033]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2159/3000 [00:36<00:14, 59.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2606, epoch=2159/3001, vae_loss=257.2606]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2160/3000 [00:36<00:14, 58.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2606, epoch=2159/3001, vae_loss=257.2606]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2160/3000 [00:36<00:14, 58.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0731, epoch=2160/3001, vae_loss=257.0731]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2161/3000 [00:36<00:14, 58.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2571, epoch=2161/3001, vae_loss=257.2571]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2162/3000 [00:36<00:14, 58.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8705, epoch=2162/3001, vae_loss=256.8705]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2163/3000 [00:36<00:14, 58.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0361, epoch=2163/3001, vae_loss=257.0361]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2164/3000 [00:36<00:14, 58.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1718, epoch=2164/3001, vae_loss=257.1718]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2165/3000 [00:36<00:14, 58.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0183, epoch=2165/3001, vae_loss=257.0183]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2166/3000 [00:36<00:14, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0183, epoch=2165/3001, vae_loss=257.0183]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2166/3000 [00:36<00:14, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0930, epoch=2166/3001, vae_loss=257.0930]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2167/3000 [00:37<00:14, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9769, epoch=2167/3001, vae_loss=256.9769]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2168/3000 [00:37<00:14, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9105, epoch=2168/3001, vae_loss=256.9105]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2169/3000 [00:37<00:14, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2721, epoch=2169/3001, vae_loss=257.2721]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2170/3000 [00:37<00:14, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2916, epoch=2170/3001, vae_loss=257.2916]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2171/3000 [00:37<00:14, 58.91it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9783, epoch=2171/3001, vae_loss=256.9783]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2172/3000 [00:37<00:14, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9783, epoch=2171/3001, vae_loss=256.9783]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2172/3000 [00:37<00:14, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.5909, epoch=2172/3001, vae_loss=257.5909]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2173/3000 [00:37<00:14, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9806, epoch=2173/3001, vae_loss=256.9806]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 2174/3000 [00:37<00:14, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0533, epoch=2174/3001, vae_loss=257.0533]
Training: VAE for learning meaningful embeddings:  72%|███████▎  | 2175/3000 [00:37<00:13, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1704, epoch=2175/3001, vae_loss=257.1704]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2176/3000 [00:37<00:13, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2495, epoch=2176/3001, vae_loss=257.2495]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2177/3000 [00:37<00:13, 59.00it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6562, epoch=2177/3001, vae_loss=256.6562]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2178/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6562, epoch=2177/3001, vae_loss=256.6562]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2178/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5048, epoch=2178/3001, vae_loss=256.5048]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2179/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0767, epoch=2179/3001, vae_loss=257.0767]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2180/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5826, epoch=2180/3001, vae_loss=256.5826]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2181/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8300, epoch=2181/3001, vae_loss=256.8300]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2182/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6778, epoch=2182/3001, vae_loss=256.6778]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2183/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5223, epoch=2183/3001, vae_loss=256.5223]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2184/3000 [00:37<00:14, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6127, epoch=2184/3001, vae_loss=256.6127]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2185/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6127, epoch=2184/3001, vae_loss=256.6127]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2185/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9724, epoch=2185/3001, vae_loss=256.9724]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2186/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9738, epoch=2186/3001, vae_loss=256.9738]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2187/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7083, epoch=2187/3001, vae_loss=256.7083]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2188/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8680, epoch=2188/3001, vae_loss=256.8680]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2189/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8735, epoch=2189/3001, vae_loss=256.8735]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2190/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8629, epoch=2190/3001, vae_loss=256.8629]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2191/3000 [00:37<00:13, 59.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3353, epoch=2191/3001, vae_loss=257.3353]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2192/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3353, epoch=2191/3001, vae_loss=257.3353]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2192/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8121, epoch=2192/3001, vae_loss=256.8121]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2193/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9332, epoch=2193/3001, vae_loss=256.9332]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2194/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3541, epoch=2194/3001, vae_loss=257.3541]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2195/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8350, epoch=2195/3001, vae_loss=256.8350]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2196/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9354, epoch=2196/3001, vae_loss=256.9354]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2197/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5425, epoch=2197/3001, vae_loss=256.5425]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2198/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6352, epoch=2198/3001, vae_loss=256.6352]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2199/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6352, epoch=2198/3001, vae_loss=256.6352]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2199/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4495, epoch=2199/3001, vae_loss=256.4495]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2200/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5195, epoch=2200/3001, vae_loss=256.5195]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2201/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6871, epoch=2201/3001, vae_loss=256.6871]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2202/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6068, epoch=2202/3001, vae_loss=256.6068]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2203/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8808, epoch=2203/3001, vae_loss=256.8808]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 2204/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5452, epoch=2204/3001, vae_loss=256.5452]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2205/3000 [00:37<00:13, 60.26it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9124, epoch=2205/3001, vae_loss=256.9124]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2206/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9124, epoch=2205/3001, vae_loss=256.9124]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2206/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9456, epoch=2206/3001, vae_loss=256.9456]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2207/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0259, epoch=2207/3001, vae_loss=257.0259]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2208/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5788, epoch=2208/3001, vae_loss=256.5788]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2209/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6233, epoch=2209/3001, vae_loss=256.6233]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2210/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7793, epoch=2210/3001, vae_loss=256.7793]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2211/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3324, epoch=2211/3001, vae_loss=256.3324]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 2212/3000 [00:37<00:13, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8372, epoch=2212/3001, vae_loss=256.8372]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2213/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8372, epoch=2212/3001, vae_loss=256.8372]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2213/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0055, epoch=2213/3001, vae_loss=257.0055]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2214/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4432, epoch=2214/3001, vae_loss=256.4432]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2215/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1300, epoch=2215/3001, vae_loss=257.1300]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2216/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5512, epoch=2216/3001, vae_loss=256.5512]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2217/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2823, epoch=2217/3001, vae_loss=256.2823]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2218/3000 [00:37<00:13, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5108, epoch=2218/3001, vae_loss=256.5108]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2219/3000 [00:37<00:12, 60.09it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3112, epoch=2219/3001, vae_loss=256.3112]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2220/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3112, epoch=2219/3001, vae_loss=256.3112]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2220/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1792, epoch=2220/3001, vae_loss=256.1792]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2221/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8010, epoch=2221/3001, vae_loss=256.8010]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2222/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2277, epoch=2222/3001, vae_loss=256.2277]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2223/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0006, epoch=2223/3001, vae_loss=257.0006]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2224/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1603, epoch=2224/3001, vae_loss=257.1603]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2225/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5858, epoch=2225/3001, vae_loss=256.5858]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2226/3000 [00:37<00:12, 60.35it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4009, epoch=2226/3001, vae_loss=256.4009]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2227/3000 [00:37<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4009, epoch=2226/3001, vae_loss=256.4009]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2227/3000 [00:37<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3778, epoch=2227/3001, vae_loss=256.3778]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2228/3000 [00:38<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6667, epoch=2228/3001, vae_loss=256.6667]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2229/3000 [00:38<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4345, epoch=2229/3001, vae_loss=256.4345]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2230/3000 [00:38<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8919, epoch=2230/3001, vae_loss=256.8919]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2231/3000 [00:38<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9300, epoch=2231/3001, vae_loss=256.9300]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2232/3000 [00:38<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4849, epoch=2232/3001, vae_loss=256.4849]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2233/3000 [00:38<00:12, 60.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3775, epoch=2233/3001, vae_loss=256.3775]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2234/3000 [00:38<00:12, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3775, epoch=2233/3001, vae_loss=256.3775]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2234/3000 [00:38<00:12, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9673, epoch=2234/3001, vae_loss=256.9673]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 2235/3000 [00:38<00:12, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7004, epoch=2235/3001, vae_loss=256.7004]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2236/3000 [00:38<00:12, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3806, epoch=2236/3001, vae_loss=256.3806]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2237/3000 [00:38<00:12, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8084, epoch=2237/3001, vae_loss=256.8084]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2238/3000 [00:38<00:12, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3297, epoch=2238/3001, vae_loss=256.3297]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2239/3000 [00:38<00:12, 59.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3863, epoch=2239/3001, vae_loss=256.3863]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2240/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3863, epoch=2239/3001, vae_loss=256.3863]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2240/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7489, epoch=2240/3001, vae_loss=256.7489]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2241/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4340, epoch=2241/3001, vae_loss=256.4340]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2242/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3279, epoch=2242/3001, vae_loss=256.3279]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2243/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4476, epoch=2243/3001, vae_loss=256.4476]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2244/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3115, epoch=2244/3001, vae_loss=256.3115]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2245/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5819, epoch=2245/3001, vae_loss=256.5819]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2246/3000 [00:38<00:12, 59.22it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3947, epoch=2246/3001, vae_loss=256.3947]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2247/3000 [00:38<00:12, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3947, epoch=2246/3001, vae_loss=256.3947]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2247/3000 [00:38<00:12, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5388, epoch=2247/3001, vae_loss=256.5388]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2248/3000 [00:38<00:12, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2691, epoch=2248/3001, vae_loss=256.2691]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 2249/3000 [00:38<00:12, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0628, epoch=2249/3001, vae_loss=257.0628]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2250/3000 [00:38<00:12, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1759, epoch=2250/3001, vae_loss=256.1759]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2251/3000 [00:38<00:12, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.7816, epoch=2251/3001, vae_loss=257.7816]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2252/3000 [00:38<00:12, 59.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4626, epoch=2252/3001, vae_loss=256.4626]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2253/3000 [00:38<00:12, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4626, epoch=2252/3001, vae_loss=256.4626]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2253/3000 [00:38<00:12, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5734, epoch=2253/3001, vae_loss=256.5734]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2254/3000 [00:38<00:12, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4684, epoch=2254/3001, vae_loss=256.4684]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2255/3000 [00:38<00:12, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2081, epoch=2255/3001, vae_loss=257.2081]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2256/3000 [00:38<00:12, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4398, epoch=2256/3001, vae_loss=256.4398]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2257/3000 [00:38<00:12, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5645, epoch=2257/3001, vae_loss=256.5645]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2258/3000 [00:38<00:12, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5161, epoch=2258/3001, vae_loss=256.5161]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2259/3000 [00:38<00:12, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5161, epoch=2258/3001, vae_loss=256.5161]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2259/3000 [00:38<00:12, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5103, epoch=2259/3001, vae_loss=256.5103]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2260/3000 [00:38<00:12, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4961, epoch=2260/3001, vae_loss=256.4961]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2261/3000 [00:38<00:12, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9203, epoch=2261/3001, vae_loss=256.9203]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2262/3000 [00:38<00:12, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3328, epoch=2262/3001, vae_loss=256.3328]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2263/3000 [00:38<00:12, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2632, epoch=2263/3001, vae_loss=256.2632]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 2264/3000 [00:38<00:12, 59.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2659, epoch=2264/3001, vae_loss=256.2659]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2265/3000 [00:38<00:12, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2659, epoch=2264/3001, vae_loss=256.2659]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2265/3000 [00:38<00:12, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5719, epoch=2265/3001, vae_loss=256.5719]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2266/3000 [00:38<00:12, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4166, epoch=2266/3001, vae_loss=256.4166]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2267/3000 [00:38<00:12, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3478, epoch=2267/3001, vae_loss=256.3478]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2268/3000 [00:38<00:12, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4301, epoch=2268/3001, vae_loss=256.4301]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2269/3000 [00:38<00:12, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1833, epoch=2269/3001, vae_loss=256.1833]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2270/3000 [00:38<00:12, 58.97it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8466, epoch=2270/3001, vae_loss=255.8466]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2271/3000 [00:38<00:12, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8466, epoch=2270/3001, vae_loss=255.8466]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2271/3000 [00:38<00:12, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8571, epoch=2271/3001, vae_loss=256.8571]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2272/3000 [00:38<00:12, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2465, epoch=2272/3001, vae_loss=256.2465]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2273/3000 [00:38<00:12, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2805, epoch=2273/3001, vae_loss=256.2805]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2274/3000 [00:38<00:12, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7625, epoch=2274/3001, vae_loss=255.7625]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2275/3000 [00:38<00:12, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2513, epoch=2275/3001, vae_loss=256.2513]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2276/3000 [00:38<00:12, 59.23it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2585, epoch=2276/3001, vae_loss=256.2585]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2277/3000 [00:38<00:12, 58.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2585, epoch=2276/3001, vae_loss=256.2585]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2277/3000 [00:38<00:12, 58.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4283, epoch=2277/3001, vae_loss=256.4283]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2278/3000 [00:38<00:12, 58.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2308, epoch=2278/3001, vae_loss=256.2308]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2279/3000 [00:38<00:12, 58.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2246, epoch=2279/3001, vae_loss=256.2246]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2280/3000 [00:38<00:12, 58.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2133, epoch=2280/3001, vae_loss=256.2133]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2281/3000 [00:38<00:12, 58.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4168, epoch=2281/3001, vae_loss=256.4168]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2282/3000 [00:38<00:12, 58.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2005, epoch=2282/3001, vae_loss=256.2005]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2283/3000 [00:38<00:12, 58.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2005, epoch=2282/3001, vae_loss=256.2005]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2283/3000 [00:38<00:12, 58.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0320, epoch=2283/3001, vae_loss=257.0320]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2284/3000 [00:38<00:12, 58.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2422, epoch=2284/3001, vae_loss=256.2422]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2285/3000 [00:38<00:12, 58.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1814, epoch=2285/3001, vae_loss=256.1814]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2286/3000 [00:39<00:12, 58.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3364, epoch=2286/3001, vae_loss=256.3364]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 2287/3000 [00:39<00:12, 58.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2960, epoch=2287/3001, vae_loss=256.2960]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2288/3000 [00:39<00:12, 58.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3595, epoch=2288/3001, vae_loss=256.3595]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2289/3000 [00:39<00:12, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3595, epoch=2288/3001, vae_loss=256.3595]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2289/3000 [00:39<00:12, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8427, epoch=2289/3001, vae_loss=256.8427]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2290/3000 [00:39<00:12, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7439, epoch=2290/3001, vae_loss=256.7439]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2291/3000 [00:39<00:12, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0053, epoch=2291/3001, vae_loss=256.0053]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2292/3000 [00:39<00:12, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1989, epoch=2292/3001, vae_loss=256.1989]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2293/3000 [00:39<00:12, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2642, epoch=2293/3001, vae_loss=256.2642]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2294/3000 [00:39<00:12, 58.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3844, epoch=2294/3001, vae_loss=256.3844]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2295/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3844, epoch=2294/3001, vae_loss=256.3844]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 2295/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1140, epoch=2295/3001, vae_loss=256.1140]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2296/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7290, epoch=2296/3001, vae_loss=256.7290]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2297/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3379, epoch=2297/3001, vae_loss=256.3379]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2298/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1679, epoch=2298/3001, vae_loss=256.1679]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2299/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0652, epoch=2299/3001, vae_loss=257.0652]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2300/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2933, epoch=2300/3001, vae_loss=256.2933]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2301/3000 [00:39<00:12, 58.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1233, epoch=2301/3001, vae_loss=257.1233]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2302/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1233, epoch=2301/3001, vae_loss=257.1233]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2302/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0820, epoch=2302/3001, vae_loss=256.0820]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2303/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8523, epoch=2303/3001, vae_loss=256.8523]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2304/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5511, epoch=2304/3001, vae_loss=256.5511]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2305/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8892, epoch=2305/3001, vae_loss=256.8892]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2306/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9023, epoch=2306/3001, vae_loss=256.9023]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2307/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4757, epoch=2307/3001, vae_loss=256.4757]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2308/3000 [00:39<00:11, 58.99it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9272, epoch=2308/3001, vae_loss=256.9272]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2309/3000 [00:39<00:11, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9272, epoch=2308/3001, vae_loss=256.9272]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2309/3000 [00:39<00:11, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5235, epoch=2309/3001, vae_loss=256.5235]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2310/3000 [00:39<00:11, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8340, epoch=2310/3001, vae_loss=256.8340]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2311/3000 [00:39<00:11, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.0920, epoch=2311/3001, vae_loss=257.0920]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2312/3000 [00:39<00:11, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3340, epoch=2312/3001, vae_loss=256.3340]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2313/3000 [00:39<00:11, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5521, epoch=2313/3001, vae_loss=256.5521]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2314/3000 [00:39<00:11, 59.62it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3264, epoch=2314/3001, vae_loss=256.3264]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2315/3000 [00:39<00:11, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3264, epoch=2314/3001, vae_loss=256.3264]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2315/3000 [00:39<00:11, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3055, epoch=2315/3001, vae_loss=256.3055]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2316/3000 [00:39<00:11, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9235, epoch=2316/3001, vae_loss=255.9235]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2317/3000 [00:39<00:11, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6473, epoch=2317/3001, vae_loss=256.6473]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2318/3000 [00:39<00:11, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4263, epoch=2318/3001, vae_loss=256.4263]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2319/3000 [00:39<00:11, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6675, epoch=2319/3001, vae_loss=256.6675]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2320/3000 [00:39<00:11, 58.33it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8655, epoch=2320/3001, vae_loss=256.8655]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2321/3000 [00:39<00:11, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8655, epoch=2320/3001, vae_loss=256.8655]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2321/3000 [00:39<00:11, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4358, epoch=2321/3001, vae_loss=256.4358]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2322/3000 [00:39<00:11, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1356, epoch=2322/3001, vae_loss=256.1356]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2323/3000 [00:39<00:11, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5640, epoch=2323/3001, vae_loss=256.5640]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 2324/3000 [00:39<00:11, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2747, epoch=2324/3001, vae_loss=256.2747]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2325/3000 [00:39<00:11, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9074, epoch=2325/3001, vae_loss=255.9074]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2326/3000 [00:39<00:11, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4511, epoch=2326/3001, vae_loss=256.4511]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2327/3000 [00:39<00:11, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4511, epoch=2326/3001, vae_loss=256.4511]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2327/3000 [00:39<00:11, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2649, epoch=2327/3001, vae_loss=256.2649]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2328/3000 [00:39<00:11, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6019, epoch=2328/3001, vae_loss=256.6019]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2329/3000 [00:39<00:11, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9594, epoch=2329/3001, vae_loss=255.9594]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2330/3000 [00:39<00:11, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1713, epoch=2330/3001, vae_loss=256.1713]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2331/3000 [00:39<00:11, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6777, epoch=2331/3001, vae_loss=256.6777]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2332/3000 [00:39<00:11, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0574, epoch=2332/3001, vae_loss=256.0574]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2333/3000 [00:39<00:11, 58.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0574, epoch=2332/3001, vae_loss=256.0574]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2333/3000 [00:39<00:11, 58.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9244, epoch=2333/3001, vae_loss=255.9244]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2334/3000 [00:39<00:11, 58.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7757, epoch=2334/3001, vae_loss=256.7757]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2335/3000 [00:39<00:11, 58.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7317, epoch=2335/3001, vae_loss=256.7317]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2336/3000 [00:39<00:11, 58.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9908, epoch=2336/3001, vae_loss=255.9908]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2337/3000 [00:39<00:11, 58.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1151, epoch=2337/3001, vae_loss=256.1151]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2338/3000 [00:39<00:11, 58.15it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0827, epoch=2338/3001, vae_loss=256.0827]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2339/3000 [00:39<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0827, epoch=2338/3001, vae_loss=256.0827]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2339/3000 [00:39<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2514, epoch=2339/3001, vae_loss=256.2514]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2340/3000 [00:39<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2164, epoch=2340/3001, vae_loss=256.2164]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2341/3000 [00:39<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9201, epoch=2341/3001, vae_loss=255.9201]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2342/3000 [00:39<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0441, epoch=2342/3001, vae_loss=256.0441]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2343/3000 [00:39<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9859, epoch=2343/3001, vae_loss=255.9859]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2344/3000 [00:39<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4857, epoch=2344/3001, vae_loss=256.4857]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2345/3000 [00:40<00:11, 58.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5299, epoch=2345/3001, vae_loss=255.5299]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2346/3000 [00:40<00:11, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5299, epoch=2345/3001, vae_loss=255.5299]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2346/3000 [00:40<00:11, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3117, epoch=2346/3001, vae_loss=256.3117]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2347/3000 [00:40<00:11, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7326, epoch=2347/3001, vae_loss=255.7326]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2348/3000 [00:40<00:11, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7491, epoch=2348/3001, vae_loss=255.7491]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2349/3000 [00:40<00:10, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4861, epoch=2349/3001, vae_loss=256.4861]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2350/3000 [00:40<00:10, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9299, epoch=2350/3001, vae_loss=255.9299]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2351/3000 [00:40<00:10, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3565, epoch=2351/3001, vae_loss=256.3565]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2352/3000 [00:40<00:10, 59.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4284, epoch=2352/3001, vae_loss=256.4284]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2353/3000 [00:40<00:10, 59.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4284, epoch=2352/3001, vae_loss=256.4284]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2353/3000 [00:40<00:10, 59.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7584, epoch=2353/3001, vae_loss=256.7584]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2354/3000 [00:40<00:10, 59.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7964, epoch=2354/3001, vae_loss=256.7964]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 2355/3000 [00:40<00:10, 59.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0862, epoch=2355/3001, vae_loss=256.0862]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2356/3000 [00:40<00:10, 59.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1158, epoch=2356/3001, vae_loss=256.1158]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2357/3000 [00:40<00:10, 59.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1762, epoch=2357/3001, vae_loss=256.1762]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2358/3000 [00:40<00:10, 59.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2852, epoch=2358/3001, vae_loss=256.2852]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2359/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2852, epoch=2358/3001, vae_loss=256.2852]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2359/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1748, epoch=2359/3001, vae_loss=256.1748]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2360/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2655, epoch=2360/3001, vae_loss=256.2655]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2361/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7483, epoch=2361/3001, vae_loss=256.7483]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 2362/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1831, epoch=2362/3001, vae_loss=256.1831]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2363/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1986, epoch=2363/3001, vae_loss=256.1986]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2364/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1027, epoch=2364/3001, vae_loss=256.1027]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2365/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1099, epoch=2365/3001, vae_loss=256.1099]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2366/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1099, epoch=2365/3001, vae_loss=256.1099]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2366/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8555, epoch=2366/3001, vae_loss=255.8555]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2367/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3940, epoch=2367/3001, vae_loss=256.3940]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2368/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0253, epoch=2368/3001, vae_loss=256.0253]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2369/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1666, epoch=2369/3001, vae_loss=256.1666]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2370/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7215, epoch=2370/3001, vae_loss=255.7215]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2371/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5033, epoch=2371/3001, vae_loss=256.5033]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2372/3000 [00:40<00:10, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8318, epoch=2372/3001, vae_loss=256.8318]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2373/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8318, epoch=2372/3001, vae_loss=256.8318]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2373/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4336, epoch=2373/3001, vae_loss=256.4336]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2374/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6683, epoch=2374/3001, vae_loss=256.6683]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2375/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1647, epoch=2375/3001, vae_loss=257.1647]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2376/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.1397, epoch=2376/3001, vae_loss=257.1397]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2377/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6114, epoch=2377/3001, vae_loss=256.6114]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2378/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8378, epoch=2378/3001, vae_loss=256.8378]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2379/3000 [00:40<00:10, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8809, epoch=2379/3001, vae_loss=256.8809]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2380/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.8809, epoch=2379/3001, vae_loss=256.8809]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2380/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9697, epoch=2380/3001, vae_loss=255.9697]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2381/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3636, epoch=2381/3001, vae_loss=256.3636]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2382/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0795, epoch=2382/3001, vae_loss=256.0795]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2383/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1476, epoch=2383/3001, vae_loss=256.1476]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 2384/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1934, epoch=2384/3001, vae_loss=256.1934]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2385/3000 [00:40<00:10, 59.30it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7161, epoch=2385/3001, vae_loss=255.7161]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2386/3000 [00:40<00:10, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7161, epoch=2385/3001, vae_loss=255.7161]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2386/3000 [00:40<00:10, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0443, epoch=2386/3001, vae_loss=256.0443]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2387/3000 [00:40<00:10, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1469, epoch=2387/3001, vae_loss=256.1469]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2388/3000 [00:40<00:10, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7593, epoch=2388/3001, vae_loss=255.7593]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2389/3000 [00:40<00:10, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8815, epoch=2389/3001, vae_loss=255.8815]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2390/3000 [00:40<00:10, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2341, epoch=2390/3001, vae_loss=256.2341]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2391/3000 [00:40<00:10, 58.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1897, epoch=2391/3001, vae_loss=256.1897]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2392/3000 [00:40<00:10, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1897, epoch=2391/3001, vae_loss=256.1897]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2392/3000 [00:40<00:10, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2509, epoch=2392/3001, vae_loss=256.2509]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2393/3000 [00:40<00:10, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7232, epoch=2393/3001, vae_loss=255.7232]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2394/3000 [00:40<00:10, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3164, epoch=2394/3001, vae_loss=256.3164]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2395/3000 [00:40<00:10, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.4769, epoch=2395/3001, vae_loss=256.4769]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2396/3000 [00:40<00:10, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3975, epoch=2396/3001, vae_loss=256.3975]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2397/3000 [00:40<00:10, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8425, epoch=2397/3001, vae_loss=255.8425]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2398/3000 [00:40<00:10, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8425, epoch=2397/3001, vae_loss=255.8425]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2398/3000 [00:40<00:10, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0365, epoch=2398/3001, vae_loss=256.0365]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 2399/3000 [00:40<00:10, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7206, epoch=2399/3001, vae_loss=255.7206]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2400/3000 [00:40<00:10, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7126, epoch=2400/3001, vae_loss=255.7126]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2401/3000 [00:40<00:10, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4864, epoch=2401/3001, vae_loss=255.4864]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2402/3000 [00:40<00:10, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8354, epoch=2402/3001, vae_loss=255.8354]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2403/3000 [00:40<00:10, 57.94it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5645, epoch=2403/3001, vae_loss=255.5645]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2404/3000 [00:40<00:10, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5645, epoch=2403/3001, vae_loss=255.5645]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2404/3000 [00:41<00:10, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0924, epoch=2404/3001, vae_loss=256.0924]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2405/3000 [00:41<00:10, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9628, epoch=2405/3001, vae_loss=255.9628]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2406/3000 [00:41<00:10, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6568, epoch=2406/3001, vae_loss=255.6568]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2407/3000 [00:41<00:10, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7179, epoch=2407/3001, vae_loss=255.7179]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2408/3000 [00:41<00:10, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2744, epoch=2408/3001, vae_loss=255.2744]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2409/3000 [00:41<00:10, 58.21it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2539, epoch=2409/3001, vae_loss=256.2539]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2410/3000 [00:41<00:10, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2539, epoch=2409/3001, vae_loss=256.2539]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2410/3000 [00:41<00:10, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5804, epoch=2410/3001, vae_loss=255.5804]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2411/3000 [00:41<00:10, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9957, epoch=2411/3001, vae_loss=255.9957]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2412/3000 [00:41<00:10, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5324, epoch=2412/3001, vae_loss=255.5324]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2413/3000 [00:41<00:10, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8654, epoch=2413/3001, vae_loss=255.8654]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2414/3000 [00:41<00:10, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3865, epoch=2414/3001, vae_loss=255.3865]
Training: VAE for learning meaningful embeddings:  80%|████████  | 2415/3000 [00:41<00:10, 58.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5465, epoch=2415/3001, vae_loss=255.5465]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2416/3000 [00:41<00:10, 58.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5465, epoch=2415/3001, vae_loss=255.5465]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2416/3000 [00:41<00:10, 58.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3283, epoch=2416/3001, vae_loss=255.3283]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2417/3000 [00:41<00:10, 58.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6970, epoch=2417/3001, vae_loss=255.6970]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2418/3000 [00:41<00:10, 58.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5427, epoch=2418/3001, vae_loss=255.5427]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2419/3000 [00:41<00:09, 58.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0433, epoch=2419/3001, vae_loss=256.0433]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2420/3000 [00:41<00:09, 58.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1917, epoch=2420/3001, vae_loss=255.1917]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2421/3000 [00:41<00:09, 58.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2612, epoch=2421/3001, vae_loss=256.2612]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2422/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2612, epoch=2421/3001, vae_loss=256.2612]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2422/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2696, epoch=2422/3001, vae_loss=256.2696]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2423/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9533, epoch=2423/3001, vae_loss=255.9533]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2424/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7136, epoch=2424/3001, vae_loss=255.7136]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2425/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9508, epoch=2425/3001, vae_loss=255.9508]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2426/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1010, epoch=2426/3001, vae_loss=256.1010]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2427/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8112, epoch=2427/3001, vae_loss=255.8112]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2428/3000 [00:41<00:09, 58.36it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9442, epoch=2428/3001, vae_loss=255.9442]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2429/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9442, epoch=2428/3001, vae_loss=255.9442]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2429/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7933, epoch=2429/3001, vae_loss=255.7933]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2430/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9161, epoch=2430/3001, vae_loss=255.9161]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2431/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0553, epoch=2431/3001, vae_loss=256.0553]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2432/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6395, epoch=2432/3001, vae_loss=255.6395]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2433/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3140, epoch=2433/3001, vae_loss=256.3140]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2434/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8475, epoch=2434/3001, vae_loss=255.8475]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2435/3000 [00:41<00:09, 59.38it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7091, epoch=2435/3001, vae_loss=255.7091]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2436/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7091, epoch=2435/3001, vae_loss=255.7091]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2436/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7581, epoch=2436/3001, vae_loss=255.7581]
Training: VAE for learning meaningful embeddings:  81%|████████  | 2437/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1341, epoch=2437/3001, vae_loss=256.1341]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2438/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0433, epoch=2438/3001, vae_loss=256.0433]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2439/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9643, epoch=2439/3001, vae_loss=255.9643]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2440/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5187, epoch=2440/3001, vae_loss=255.5187]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2441/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4677, epoch=2441/3001, vae_loss=255.4677]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2442/3000 [00:41<00:09, 59.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7128, epoch=2442/3001, vae_loss=255.7128]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2443/3000 [00:41<00:09, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7128, epoch=2442/3001, vae_loss=255.7128]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2443/3000 [00:41<00:09, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4586, epoch=2443/3001, vae_loss=255.4586]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 2444/3000 [00:41<00:09, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0737, epoch=2444/3001, vae_loss=256.0737]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2445/3000 [00:41<00:09, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1882, epoch=2445/3001, vae_loss=256.1882]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2446/3000 [00:41<00:09, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7067, epoch=2446/3001, vae_loss=256.7067]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2447/3000 [00:41<00:09, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.2881, epoch=2447/3001, vae_loss=257.2881]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2448/3000 [00:41<00:09, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3983, epoch=2448/3001, vae_loss=256.3983]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2449/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3983, epoch=2448/3001, vae_loss=256.3983]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2449/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1014, epoch=2449/3001, vae_loss=256.1014]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2450/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3669, epoch=2450/3001, vae_loss=256.3669]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2451/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5463, epoch=2451/3001, vae_loss=256.5463]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2452/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2848, epoch=2452/3001, vae_loss=256.2848]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2453/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2699, epoch=2453/3001, vae_loss=256.2699]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2454/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2923, epoch=2454/3001, vae_loss=256.2923]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2455/3000 [00:41<00:09, 59.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6014, epoch=2455/3001, vae_loss=256.6014]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2456/3000 [00:41<00:09, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6014, epoch=2455/3001, vae_loss=256.6014]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2456/3000 [00:41<00:09, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3047, epoch=2456/3001, vae_loss=256.3047]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2457/3000 [00:41<00:09, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6580, epoch=2457/3001, vae_loss=256.6580]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2458/3000 [00:41<00:09, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=257.3171, epoch=2458/3001, vae_loss=257.3171]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2459/3000 [00:41<00:09, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9850, epoch=2459/3001, vae_loss=256.9850]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2460/3000 [00:41<00:08, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0168, epoch=2460/3001, vae_loss=256.0168]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2461/3000 [00:41<00:08, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9091, epoch=2461/3001, vae_loss=255.9091]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2462/3000 [00:41<00:08, 60.10it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8142, epoch=2462/3001, vae_loss=255.8142]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2463/3000 [00:41<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8142, epoch=2462/3001, vae_loss=255.8142]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2463/3000 [00:41<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1712, epoch=2463/3001, vae_loss=256.1712]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2464/3000 [00:42<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9949, epoch=2464/3001, vae_loss=255.9949]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2465/3000 [00:42<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9371, epoch=2465/3001, vae_loss=255.9371]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2466/3000 [00:42<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6559, epoch=2466/3001, vae_loss=256.6559]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2467/3000 [00:42<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3428, epoch=2467/3001, vae_loss=255.3428]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2468/3000 [00:42<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3825, epoch=2468/3001, vae_loss=255.3825]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2469/3000 [00:42<00:08, 60.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1227, epoch=2469/3001, vae_loss=256.1227]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2470/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1227, epoch=2469/3001, vae_loss=256.1227]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2470/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4580, epoch=2470/3001, vae_loss=255.4580]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2471/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5880, epoch=2471/3001, vae_loss=256.5880]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2472/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6860, epoch=2472/3001, vae_loss=255.6860]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2473/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2778, epoch=2473/3001, vae_loss=256.2778]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 2474/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4268, epoch=2474/3001, vae_loss=255.4268]
Training: VAE for learning meaningful embeddings:  82%|████████▎ | 2475/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.5568, epoch=2475/3001, vae_loss=256.5568]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2476/3000 [00:42<00:08, 60.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5172, epoch=2476/3001, vae_loss=255.5172]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2477/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5172, epoch=2476/3001, vae_loss=255.5172]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2477/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5585, epoch=2477/3001, vae_loss=255.5585]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2478/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9058, epoch=2478/3001, vae_loss=255.9058]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2479/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1828, epoch=2479/3001, vae_loss=256.1828]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2480/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7175, epoch=2480/3001, vae_loss=255.7175]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2481/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.6013, epoch=2481/3001, vae_loss=256.6013]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2482/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9506, epoch=2482/3001, vae_loss=255.9506]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2483/3000 [00:42<00:08, 60.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2027, epoch=2483/3001, vae_loss=256.2027]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2484/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2027, epoch=2483/3001, vae_loss=256.2027]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2484/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9164, epoch=2484/3001, vae_loss=255.9164]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2485/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9498, epoch=2485/3001, vae_loss=255.9498]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2486/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7432, epoch=2486/3001, vae_loss=255.7432]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2487/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.9110, epoch=2487/3001, vae_loss=256.9110]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2488/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1306, epoch=2488/3001, vae_loss=256.1306]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2489/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7075, epoch=2489/3001, vae_loss=256.7075]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2490/3000 [00:42<00:08, 59.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4096, epoch=2490/3001, vae_loss=255.4096]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2491/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4096, epoch=2490/3001, vae_loss=255.4096]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2491/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2176, epoch=2491/3001, vae_loss=256.2176]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2492/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7595, epoch=2492/3001, vae_loss=255.7595]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2493/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.3351, epoch=2493/3001, vae_loss=256.3351]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2494/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8080, epoch=2494/3001, vae_loss=255.8080]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2495/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8421, epoch=2495/3001, vae_loss=255.8421]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2496/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8943, epoch=2496/3001, vae_loss=255.8943]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2497/3000 [00:42<00:08, 60.17it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1312, epoch=2497/3001, vae_loss=256.1312]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2498/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1312, epoch=2497/3001, vae_loss=256.1312]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2498/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6122, epoch=2498/3001, vae_loss=255.6122]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2499/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5420, epoch=2499/3001, vae_loss=255.5420]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2500/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7428, epoch=2500/3001, vae_loss=255.7428]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2501/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6254, epoch=2501/3001, vae_loss=255.6254]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2502/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4188, epoch=2502/3001, vae_loss=255.4188]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2503/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0984, epoch=2503/3001, vae_loss=255.0984]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 2504/3000 [00:42<00:08, 60.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5729, epoch=2504/3001, vae_loss=255.5729]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2505/3000 [00:42<00:08, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5729, epoch=2504/3001, vae_loss=255.5729]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2505/3000 [00:42<00:08, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5893, epoch=2505/3001, vae_loss=255.5893]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2506/3000 [00:42<00:08, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4058, epoch=2506/3001, vae_loss=255.4058]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2507/3000 [00:42<00:08, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4114, epoch=2507/3001, vae_loss=255.4114]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2508/3000 [00:42<00:08, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3922, epoch=2508/3001, vae_loss=255.3922]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2509/3000 [00:42<00:08, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3607, epoch=2509/3001, vae_loss=255.3607]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2510/3000 [00:42<00:08, 59.86it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6473, epoch=2510/3001, vae_loss=255.6473]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2511/3000 [00:42<00:08, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6473, epoch=2510/3001, vae_loss=255.6473]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2511/3000 [00:42<00:08, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7821, epoch=2511/3001, vae_loss=255.7821]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 2512/3000 [00:42<00:08, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9704, epoch=2512/3001, vae_loss=255.9704]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2513/3000 [00:42<00:08, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7123, epoch=2513/3001, vae_loss=255.7123]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2514/3000 [00:42<00:08, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0107, epoch=2514/3001, vae_loss=256.0107]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2515/3000 [00:43<00:08, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1403, epoch=2515/3001, vae_loss=256.1403]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2516/3000 [00:43<00:08, 59.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9220, epoch=2516/3001, vae_loss=255.9220]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2517/3000 [00:43<00:12, 38.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9220, epoch=2516/3001, vae_loss=255.9220]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2517/3000 [00:43<00:12, 38.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0614, epoch=2517/3001, vae_loss=256.0614]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2518/3000 [00:43<00:12, 38.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.7816, epoch=2518/3001, vae_loss=256.7816]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2519/3000 [00:43<00:12, 38.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3381, epoch=2519/3001, vae_loss=255.3381]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2520/3000 [00:43<00:12, 38.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.2454, epoch=2520/3001, vae_loss=256.2454]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2521/3000 [00:43<00:12, 38.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1252, epoch=2521/3001, vae_loss=256.1252]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2522/3000 [00:43<00:12, 38.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5761, epoch=2522/3001, vae_loss=255.5761]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2523/3000 [00:43<00:11, 42.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5761, epoch=2522/3001, vae_loss=255.5761]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2523/3000 [00:43<00:11, 42.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1612, epoch=2523/3001, vae_loss=256.1612]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2524/3000 [00:43<00:11, 42.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8434, epoch=2524/3001, vae_loss=255.8434]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2525/3000 [00:43<00:11, 42.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.0064, epoch=2525/3001, vae_loss=256.0064]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2526/3000 [00:43<00:11, 42.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5385, epoch=2526/3001, vae_loss=255.5385]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2527/3000 [00:43<00:11, 42.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6779, epoch=2527/3001, vae_loss=255.6779]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2528/3000 [00:43<00:11, 42.40it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8163, epoch=2528/3001, vae_loss=255.8163]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2529/3000 [00:43<00:10, 45.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8163, epoch=2528/3001, vae_loss=255.8163]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2529/3000 [00:43<00:10, 45.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6515, epoch=2529/3001, vae_loss=255.6515]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2530/3000 [00:43<00:10, 45.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.8064, epoch=2530/3001, vae_loss=255.8064]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2531/3000 [00:43<00:10, 45.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0619, epoch=2531/3001, vae_loss=255.0619]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2532/3000 [00:43<00:10, 45.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8640, epoch=2532/3001, vae_loss=254.8640]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2533/3000 [00:43<00:10, 45.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9996, epoch=2533/3001, vae_loss=255.9996]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2534/3000 [00:43<00:10, 45.82it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4608, epoch=2534/3001, vae_loss=255.4608]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2535/3000 [00:43<00:09, 49.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4608, epoch=2534/3001, vae_loss=255.4608]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 2535/3000 [00:43<00:09, 49.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9793, epoch=2535/3001, vae_loss=255.9793]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2536/3000 [00:43<00:09, 49.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0679, epoch=2536/3001, vae_loss=255.0679]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2537/3000 [00:43<00:09, 49.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1254, epoch=2537/3001, vae_loss=255.1254]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2538/3000 [00:43<00:09, 49.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5400, epoch=2538/3001, vae_loss=255.5400]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2539/3000 [00:43<00:09, 49.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1203, epoch=2539/3001, vae_loss=256.1203]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2540/3000 [00:43<00:09, 49.14it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2283, epoch=2540/3001, vae_loss=255.2283]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2541/3000 [00:43<00:08, 51.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2283, epoch=2540/3001, vae_loss=255.2283]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2541/3000 [00:43<00:08, 51.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1595, epoch=2541/3001, vae_loss=255.1595]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2542/3000 [00:43<00:08, 51.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5513, epoch=2542/3001, vae_loss=255.5513]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2543/3000 [00:43<00:08, 51.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3714, epoch=2543/3001, vae_loss=255.3714]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2544/3000 [00:43<00:08, 51.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7604, epoch=2544/3001, vae_loss=255.7604]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2545/3000 [00:43<00:08, 51.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7582, epoch=2545/3001, vae_loss=254.7582]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2546/3000 [00:43<00:08, 51.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1096, epoch=2546/3001, vae_loss=256.1096]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2547/3000 [00:43<00:08, 53.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=256.1096, epoch=2546/3001, vae_loss=256.1096]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2547/3000 [00:43<00:08, 53.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.9018, epoch=2547/3001, vae_loss=255.9018]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2548/3000 [00:43<00:08, 53.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4029, epoch=2548/3001, vae_loss=255.4029]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 2549/3000 [00:43<00:08, 53.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5077, epoch=2549/3001, vae_loss=255.5077]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2550/3000 [00:43<00:08, 53.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4566, epoch=2550/3001, vae_loss=255.4566]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2551/3000 [00:43<00:08, 53.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0832, epoch=2551/3001, vae_loss=255.0832]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2552/3000 [00:43<00:08, 53.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2192, epoch=2552/3001, vae_loss=255.2192]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2553/3000 [00:43<00:08, 54.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2192, epoch=2552/3001, vae_loss=255.2192]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2553/3000 [00:43<00:08, 54.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0363, epoch=2553/3001, vae_loss=255.0363]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2554/3000 [00:43<00:08, 54.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4608, epoch=2554/3001, vae_loss=255.4608]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2555/3000 [00:43<00:08, 54.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0129, epoch=2555/3001, vae_loss=255.0129]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2556/3000 [00:43<00:08, 54.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4801, epoch=2556/3001, vae_loss=255.4801]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2557/3000 [00:43<00:08, 54.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7613, epoch=2557/3001, vae_loss=254.7613]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2558/3000 [00:43<00:08, 54.44it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6216, epoch=2558/3001, vae_loss=255.6216]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2559/3000 [00:43<00:07, 55.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6216, epoch=2558/3001, vae_loss=255.6216]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2559/3000 [00:43<00:07, 55.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2720, epoch=2559/3001, vae_loss=255.2720]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2560/3000 [00:43<00:07, 55.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6240, epoch=2560/3001, vae_loss=255.6240]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2561/3000 [00:43<00:07, 55.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2331, epoch=2561/3001, vae_loss=255.2331]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2562/3000 [00:43<00:07, 55.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9957, epoch=2562/3001, vae_loss=254.9957]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2563/3000 [00:43<00:07, 55.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4101, epoch=2563/3001, vae_loss=255.4101]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 2564/3000 [00:43<00:07, 55.28it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4616, epoch=2564/3001, vae_loss=254.4616]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2565/3000 [00:43<00:07, 56.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4616, epoch=2564/3001, vae_loss=254.4616]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2565/3000 [00:43<00:07, 56.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5885, epoch=2565/3001, vae_loss=254.5885]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2566/3000 [00:43<00:07, 56.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8023, epoch=2566/3001, vae_loss=254.8023]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2567/3000 [00:43<00:07, 56.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0842, epoch=2567/3001, vae_loss=255.0842]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2568/3000 [00:43<00:07, 56.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1107, epoch=2568/3001, vae_loss=255.1107]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2569/3000 [00:44<00:07, 56.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8868, epoch=2569/3001, vae_loss=254.8868]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2570/3000 [00:44<00:07, 56.11it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4278, epoch=2570/3001, vae_loss=255.4278]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2571/3000 [00:44<00:07, 56.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4278, epoch=2570/3001, vae_loss=255.4278]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2571/3000 [00:44<00:07, 56.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0273, epoch=2571/3001, vae_loss=255.0273]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2572/3000 [00:44<00:07, 56.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9660, epoch=2572/3001, vae_loss=254.9660]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2573/3000 [00:44<00:07, 56.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2216, epoch=2573/3001, vae_loss=255.2216]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2574/3000 [00:44<00:07, 56.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9146, epoch=2574/3001, vae_loss=254.9146]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2575/3000 [00:44<00:07, 56.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2904, epoch=2575/3001, vae_loss=255.2904]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2576/3000 [00:44<00:07, 56.60it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6869, epoch=2576/3001, vae_loss=254.6869]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2577/3000 [00:44<00:07, 57.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6869, epoch=2576/3001, vae_loss=254.6869]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2577/3000 [00:44<00:07, 57.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1068, epoch=2577/3001, vae_loss=255.1068]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2578/3000 [00:44<00:07, 57.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7313, epoch=2578/3001, vae_loss=254.7313]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2579/3000 [00:44<00:07, 57.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1762, epoch=2579/3001, vae_loss=255.1762]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2580/3000 [00:44<00:07, 57.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3179, epoch=2580/3001, vae_loss=255.3179]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2581/3000 [00:44<00:07, 57.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5127, epoch=2581/3001, vae_loss=254.5127]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2582/3000 [00:44<00:07, 57.18it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8988, epoch=2582/3001, vae_loss=254.8988]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2583/3000 [00:44<00:07, 57.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8988, epoch=2582/3001, vae_loss=254.8988]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2583/3000 [00:44<00:07, 57.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9360, epoch=2583/3001, vae_loss=254.9360]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2584/3000 [00:44<00:07, 57.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1503, epoch=2584/3001, vae_loss=255.1503]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2585/3000 [00:44<00:07, 57.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0443, epoch=2585/3001, vae_loss=255.0443]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2586/3000 [00:44<00:07, 57.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9608, epoch=2586/3001, vae_loss=254.9608]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 2587/3000 [00:44<00:07, 57.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8299, epoch=2587/3001, vae_loss=254.8299]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2588/3000 [00:44<00:07, 57.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2646, epoch=2588/3001, vae_loss=255.2646]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2589/3000 [00:44<00:07, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2646, epoch=2588/3001, vae_loss=255.2646]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2589/3000 [00:44<00:07, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9473, epoch=2589/3001, vae_loss=254.9473]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2590/3000 [00:44<00:07, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2170, epoch=2590/3001, vae_loss=255.2170]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2591/3000 [00:44<00:07, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8074, epoch=2591/3001, vae_loss=254.8074]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2592/3000 [00:44<00:07, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1974, epoch=2592/3001, vae_loss=255.1974]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2593/3000 [00:44<00:07, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6339, epoch=2593/3001, vae_loss=254.6339]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2594/3000 [00:44<00:07, 57.48it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8321, epoch=2594/3001, vae_loss=254.8321]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2595/3000 [00:44<00:07, 57.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8321, epoch=2594/3001, vae_loss=254.8321]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 2595/3000 [00:44<00:07, 57.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8327, epoch=2595/3001, vae_loss=254.8327]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2596/3000 [00:44<00:07, 57.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9485, epoch=2596/3001, vae_loss=254.9485]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2597/3000 [00:44<00:06, 57.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8530, epoch=2597/3001, vae_loss=254.8530]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2598/3000 [00:44<00:06, 57.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5862, epoch=2598/3001, vae_loss=254.5862]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2599/3000 [00:44<00:06, 57.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4992, epoch=2599/3001, vae_loss=254.4992]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2600/3000 [00:44<00:06, 57.71it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8715, epoch=2600/3001, vae_loss=254.8715]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2601/3000 [00:44<00:06, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8715, epoch=2600/3001, vae_loss=254.8715]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2601/3000 [00:44<00:06, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7320, epoch=2601/3001, vae_loss=254.7320]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2602/3000 [00:44<00:06, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8480, epoch=2602/3001, vae_loss=254.8480]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2603/3000 [00:44<00:06, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5909, epoch=2603/3001, vae_loss=254.5909]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2604/3000 [00:44<00:06, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7881, epoch=2604/3001, vae_loss=254.7881]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2605/3000 [00:44<00:06, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8955, epoch=2605/3001, vae_loss=254.8955]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2606/3000 [00:44<00:06, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5215, epoch=2606/3001, vae_loss=254.5215]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2607/3000 [00:44<00:06, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5215, epoch=2606/3001, vae_loss=254.5215]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2607/3000 [00:44<00:06, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0445, epoch=2607/3001, vae_loss=255.0445]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2608/3000 [00:44<00:06, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8730, epoch=2608/3001, vae_loss=254.8730]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2609/3000 [00:44<00:06, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0867, epoch=2609/3001, vae_loss=255.0867]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2610/3000 [00:44<00:06, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0671, epoch=2610/3001, vae_loss=255.0671]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2611/3000 [00:44<00:06, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2867, epoch=2611/3001, vae_loss=255.2867]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2612/3000 [00:44<00:06, 57.68it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7486, epoch=2612/3001, vae_loss=254.7486]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2613/3000 [00:44<00:06, 57.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7486, epoch=2612/3001, vae_loss=254.7486]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2613/3000 [00:44<00:06, 57.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8884, epoch=2613/3001, vae_loss=254.8884]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2614/3000 [00:44<00:06, 57.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7026, epoch=2614/3001, vae_loss=254.7026]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2615/3000 [00:44<00:06, 57.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0266, epoch=2615/3001, vae_loss=255.0266]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2616/3000 [00:44<00:06, 57.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2672, epoch=2616/3001, vae_loss=255.2672]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2617/3000 [00:44<00:06, 57.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0546, epoch=2617/3001, vae_loss=255.0546]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2618/3000 [00:44<00:06, 57.69it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7386, epoch=2618/3001, vae_loss=254.7386]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2619/3000 [00:44<00:06, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7386, epoch=2618/3001, vae_loss=254.7386]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2619/3000 [00:44<00:06, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4409, epoch=2619/3001, vae_loss=255.4409]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2620/3000 [00:44<00:06, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1609, epoch=2620/3001, vae_loss=255.1609]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2621/3000 [00:44<00:06, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6874, epoch=2621/3001, vae_loss=254.6874]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2622/3000 [00:44<00:06, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.7984, epoch=2622/3001, vae_loss=255.7984]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2623/3000 [00:44<00:06, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7607, epoch=2623/3001, vae_loss=254.7607]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 2624/3000 [00:44<00:06, 57.45it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5082, epoch=2624/3001, vae_loss=255.5082]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2625/3000 [00:44<00:06, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5082, epoch=2624/3001, vae_loss=255.5082]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2625/3000 [00:44<00:06, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3213, epoch=2625/3001, vae_loss=255.3213]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2626/3000 [00:44<00:06, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9644, epoch=2626/3001, vae_loss=254.9644]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2627/3000 [00:45<00:06, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.6210, epoch=2627/3001, vae_loss=255.6210]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2628/3000 [00:45<00:06, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3966, epoch=2628/3001, vae_loss=255.3966]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2629/3000 [00:45<00:06, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5527, epoch=2629/3001, vae_loss=255.5527]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2630/3000 [00:45<00:06, 57.49it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8833, epoch=2630/3001, vae_loss=254.8833]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2631/3000 [00:45<00:06, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8833, epoch=2630/3001, vae_loss=254.8833]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2631/3000 [00:45<00:06, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7133, epoch=2631/3001, vae_loss=254.7133]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2632/3000 [00:45<00:06, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8605, epoch=2632/3001, vae_loss=254.8605]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2633/3000 [00:45<00:06, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0632, epoch=2633/3001, vae_loss=255.0632]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2634/3000 [00:45<00:06, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8782, epoch=2634/3001, vae_loss=254.8782]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2635/3000 [00:45<00:06, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7538, epoch=2635/3001, vae_loss=254.7538]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2636/3000 [00:45<00:06, 57.59it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3491, epoch=2636/3001, vae_loss=255.3491]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2637/3000 [00:45<00:06, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3491, epoch=2636/3001, vae_loss=255.3491]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2637/3000 [00:45<00:06, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6298, epoch=2637/3001, vae_loss=254.6298]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2638/3000 [00:45<00:06, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9595, epoch=2638/3001, vae_loss=254.9595]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2639/3000 [00:45<00:06, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4209, epoch=2639/3001, vae_loss=254.4209]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2640/3000 [00:45<00:06, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5748, epoch=2640/3001, vae_loss=254.5748]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2641/3000 [00:45<00:06, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6996, epoch=2641/3001, vae_loss=254.6996]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2642/3000 [00:45<00:06, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8589, epoch=2642/3001, vae_loss=254.8589]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2643/3000 [00:45<00:06, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8589, epoch=2642/3001, vae_loss=254.8589]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2643/3000 [00:45<00:06, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1207, epoch=2643/3001, vae_loss=255.1207]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2644/3000 [00:45<00:06, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8300, epoch=2644/3001, vae_loss=254.8300]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2645/3000 [00:45<00:06, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4661, epoch=2645/3001, vae_loss=254.4661]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2646/3000 [00:45<00:06, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6231, epoch=2646/3001, vae_loss=254.6231]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2647/3000 [00:45<00:06, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6246, epoch=2647/3001, vae_loss=254.6246]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2648/3000 [00:45<00:06, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8590, epoch=2648/3001, vae_loss=254.8590]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2649/3000 [00:45<00:06, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8590, epoch=2648/3001, vae_loss=254.8590]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2649/3000 [00:45<00:06, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1333, epoch=2649/3001, vae_loss=255.1333]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2650/3000 [00:45<00:06, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6144, epoch=2650/3001, vae_loss=254.6144]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2651/3000 [00:45<00:06, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1141, epoch=2651/3001, vae_loss=255.1141]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2652/3000 [00:45<00:06, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5784, epoch=2652/3001, vae_loss=254.5784]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2653/3000 [00:45<00:06, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4729, epoch=2653/3001, vae_loss=255.4729]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2654/3000 [00:45<00:05, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8014, epoch=2654/3001, vae_loss=254.8014]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2655/3000 [00:45<00:05, 58.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8014, epoch=2654/3001, vae_loss=254.8014]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 2655/3000 [00:45<00:05, 58.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3403, epoch=2655/3001, vae_loss=255.3403]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2656/3000 [00:45<00:05, 58.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8483, epoch=2656/3001, vae_loss=254.8483]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2657/3000 [00:45<00:05, 58.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1492, epoch=2657/3001, vae_loss=255.1492]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2658/3000 [00:45<00:05, 58.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.4267, epoch=2658/3001, vae_loss=255.4267]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2659/3000 [00:45<00:05, 58.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8511, epoch=2659/3001, vae_loss=254.8511]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2660/3000 [00:45<00:05, 58.08it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0595, epoch=2660/3001, vae_loss=255.0595]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2661/3000 [00:45<00:05, 58.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0595, epoch=2660/3001, vae_loss=255.0595]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2661/3000 [00:45<00:05, 58.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1195, epoch=2661/3001, vae_loss=255.1195]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 2662/3000 [00:45<00:05, 58.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1739, epoch=2662/3001, vae_loss=255.1739]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2663/3000 [00:45<00:05, 58.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1857, epoch=2663/3001, vae_loss=255.1857]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2664/3000 [00:45<00:05, 58.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9832, epoch=2664/3001, vae_loss=254.9832]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2665/3000 [00:45<00:05, 58.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2330, epoch=2665/3001, vae_loss=255.2330]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2666/3000 [00:45<00:05, 58.07it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7843, epoch=2666/3001, vae_loss=254.7843]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2667/3000 [00:45<00:05, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7843, epoch=2666/3001, vae_loss=254.7843]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2667/3000 [00:45<00:05, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9518, epoch=2667/3001, vae_loss=254.9518]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2668/3000 [00:45<00:05, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7890, epoch=2668/3001, vae_loss=254.7890]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2669/3000 [00:45<00:05, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7185, epoch=2669/3001, vae_loss=254.7185]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2670/3000 [00:45<00:05, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9993, epoch=2670/3001, vae_loss=254.9993]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2671/3000 [00:45<00:05, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7636, epoch=2671/3001, vae_loss=254.7636]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2672/3000 [00:45<00:05, 58.25it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7912, epoch=2672/3001, vae_loss=254.7912]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2673/3000 [00:45<00:05, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7912, epoch=2672/3001, vae_loss=254.7912]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2673/3000 [00:45<00:05, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0002, epoch=2673/3001, vae_loss=255.0002]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2674/3000 [00:45<00:05, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5419, epoch=2674/3001, vae_loss=254.5419]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2675/3000 [00:45<00:05, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9049, epoch=2675/3001, vae_loss=254.9049]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2676/3000 [00:45<00:05, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9162, epoch=2676/3001, vae_loss=254.9162]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2677/3000 [00:45<00:05, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.2283, epoch=2677/3001, vae_loss=255.2283]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2678/3000 [00:45<00:05, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5764, epoch=2678/3001, vae_loss=254.5764]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2679/3000 [00:45<00:05, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5764, epoch=2678/3001, vae_loss=254.5764]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2679/3000 [00:45<00:05, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1022, epoch=2679/3001, vae_loss=255.1022]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2680/3000 [00:45<00:05, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3924, epoch=2680/3001, vae_loss=254.3924]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2681/3000 [00:45<00:05, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7269, epoch=2681/3001, vae_loss=254.7269]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2682/3000 [00:45<00:05, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3045, epoch=2682/3001, vae_loss=254.3045]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2683/3000 [00:45<00:05, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6883, epoch=2683/3001, vae_loss=254.6883]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 2684/3000 [00:45<00:05, 58.29it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4478, epoch=2684/3001, vae_loss=254.4478]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2685/3000 [00:45<00:05, 58.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4478, epoch=2684/3001, vae_loss=254.4478]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2685/3000 [00:46<00:05, 58.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1217, epoch=2685/3001, vae_loss=255.1217]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2686/3000 [00:46<00:05, 58.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8192, epoch=2686/3001, vae_loss=254.8192]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2687/3000 [00:46<00:05, 58.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0664, epoch=2687/3001, vae_loss=255.0664]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2688/3000 [00:46<00:05, 58.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8000, epoch=2688/3001, vae_loss=254.8000]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2689/3000 [00:46<00:05, 58.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7056, epoch=2689/3001, vae_loss=254.7056]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2690/3000 [00:46<00:05, 58.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6286, epoch=2690/3001, vae_loss=254.6286]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2691/3000 [00:46<00:05, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6286, epoch=2690/3001, vae_loss=254.6286]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2691/3000 [00:46<00:05, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8021, epoch=2691/3001, vae_loss=254.8021]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2692/3000 [00:46<00:05, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0874, epoch=2692/3001, vae_loss=255.0874]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2693/3000 [00:46<00:05, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3625, epoch=2693/3001, vae_loss=254.3625]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2694/3000 [00:46<00:05, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8568, epoch=2694/3001, vae_loss=254.8568]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2695/3000 [00:46<00:05, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3458, epoch=2695/3001, vae_loss=254.3458]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2696/3000 [00:46<00:05, 58.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6764, epoch=2696/3001, vae_loss=254.6764]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2697/3000 [00:46<00:05, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6764, epoch=2696/3001, vae_loss=254.6764]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2697/3000 [00:46<00:05, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8743, epoch=2697/3001, vae_loss=254.8743]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2698/3000 [00:46<00:05, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6378, epoch=2698/3001, vae_loss=254.6378]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 2699/3000 [00:46<00:05, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1538, epoch=2699/3001, vae_loss=255.1538]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2700/3000 [00:46<00:05, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9259, epoch=2700/3001, vae_loss=254.9259]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2701/3000 [00:46<00:05, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3829, epoch=2701/3001, vae_loss=254.3829]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2702/3000 [00:46<00:05, 57.81it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9467, epoch=2702/3001, vae_loss=254.9467]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2703/3000 [00:46<00:05, 57.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9467, epoch=2702/3001, vae_loss=254.9467]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2703/3000 [00:46<00:05, 57.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4230, epoch=2703/3001, vae_loss=254.4230]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2704/3000 [00:46<00:05, 57.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9244, epoch=2704/3001, vae_loss=254.9244]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2705/3000 [00:46<00:05, 57.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6560, epoch=2705/3001, vae_loss=254.6560]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2706/3000 [00:46<00:05, 57.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7182, epoch=2706/3001, vae_loss=254.7182]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2707/3000 [00:46<00:05, 57.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0926, epoch=2707/3001, vae_loss=255.0926]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2708/3000 [00:46<00:05, 57.64it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0094, epoch=2708/3001, vae_loss=255.0094]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2709/3000 [00:46<00:05, 57.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0094, epoch=2708/3001, vae_loss=255.0094]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2709/3000 [00:46<00:05, 57.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3458, epoch=2709/3001, vae_loss=255.3458]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2710/3000 [00:46<00:05, 57.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8923, epoch=2710/3001, vae_loss=254.8923]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2711/3000 [00:46<00:05, 57.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6824, epoch=2711/3001, vae_loss=254.6824]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2712/3000 [00:46<00:04, 57.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0502, epoch=2712/3001, vae_loss=255.0502]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2713/3000 [00:46<00:04, 57.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9325, epoch=2713/3001, vae_loss=254.9325]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2714/3000 [00:46<00:04, 57.79it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8852, epoch=2714/3001, vae_loss=254.8852]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2715/3000 [00:46<00:04, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8852, epoch=2714/3001, vae_loss=254.8852]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 2715/3000 [00:46<00:04, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0644, epoch=2715/3001, vae_loss=255.0644]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2716/3000 [00:46<00:04, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8451, epoch=2716/3001, vae_loss=254.8451]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2717/3000 [00:46<00:04, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1582, epoch=2717/3001, vae_loss=255.1582]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2718/3000 [00:46<00:04, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7903, epoch=2718/3001, vae_loss=254.7903]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2719/3000 [00:46<00:04, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.5634, epoch=2719/3001, vae_loss=255.5634]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2720/3000 [00:46<00:04, 58.24it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9554, epoch=2720/3001, vae_loss=254.9554]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2721/3000 [00:46<00:04, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9554, epoch=2720/3001, vae_loss=254.9554]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2721/3000 [00:46<00:04, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.3939, epoch=2721/3001, vae_loss=255.3939]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2722/3000 [00:46<00:04, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4861, epoch=2722/3001, vae_loss=254.4861]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2723/3000 [00:46<00:04, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6806, epoch=2723/3001, vae_loss=254.6806]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2724/3000 [00:46<00:04, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3039, epoch=2724/3001, vae_loss=254.3039]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2725/3000 [00:46<00:04, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6913, epoch=2725/3001, vae_loss=254.6913]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2726/3000 [00:46<00:04, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1118, epoch=2726/3001, vae_loss=254.1118]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2727/3000 [00:46<00:04, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1118, epoch=2726/3001, vae_loss=254.1118]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2727/3000 [00:46<00:04, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5047, epoch=2727/3001, vae_loss=254.5047]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2728/3000 [00:46<00:04, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1652, epoch=2728/3001, vae_loss=254.1652]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2729/3000 [00:46<00:04, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2573, epoch=2729/3001, vae_loss=254.2573]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2730/3000 [00:46<00:04, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4141, epoch=2730/3001, vae_loss=254.4141]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2731/3000 [00:46<00:04, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3473, epoch=2731/3001, vae_loss=254.3473]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2732/3000 [00:46<00:04, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3086, epoch=2732/3001, vae_loss=254.3086]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2733/3000 [00:46<00:04, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3086, epoch=2732/3001, vae_loss=254.3086]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2733/3000 [00:46<00:04, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1016, epoch=2733/3001, vae_loss=254.1016]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2734/3000 [00:46<00:04, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6327, epoch=2734/3001, vae_loss=254.6327]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2735/3000 [00:46<00:04, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4088, epoch=2735/3001, vae_loss=254.4088]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2736/3000 [00:46<00:04, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4040, epoch=2736/3001, vae_loss=254.4040]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 2737/3000 [00:46<00:04, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5215, epoch=2737/3001, vae_loss=254.5215]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2738/3000 [00:46<00:04, 57.37it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2168, epoch=2738/3001, vae_loss=254.2168]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2739/3000 [00:46<00:04, 57.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2168, epoch=2738/3001, vae_loss=254.2168]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2739/3000 [00:46<00:04, 57.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3937, epoch=2739/3001, vae_loss=254.3937]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2740/3000 [00:46<00:04, 57.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0982, epoch=2740/3001, vae_loss=254.0982]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2741/3000 [00:46<00:04, 57.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5185, epoch=2741/3001, vae_loss=254.5185]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2742/3000 [00:46<00:04, 57.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3218, epoch=2742/3001, vae_loss=254.3218]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2743/3000 [00:47<00:04, 57.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7905, epoch=2743/3001, vae_loss=254.7905]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 2744/3000 [00:47<00:04, 57.43it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3927, epoch=2744/3001, vae_loss=254.3927]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2745/3000 [00:47<00:04, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3927, epoch=2744/3001, vae_loss=254.3927]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2745/3000 [00:47<00:04, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2399, epoch=2745/3001, vae_loss=254.2399]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2746/3000 [00:47<00:04, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7401, epoch=2746/3001, vae_loss=254.7401]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2747/3000 [00:47<00:04, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1271, epoch=2747/3001, vae_loss=255.1271]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2748/3000 [00:47<00:04, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1329, epoch=2748/3001, vae_loss=255.1329]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2749/3000 [00:47<00:04, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5022, epoch=2749/3001, vae_loss=254.5022]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2750/3000 [00:47<00:04, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9594, epoch=2750/3001, vae_loss=254.9594]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2751/3000 [00:47<00:04, 57.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9594, epoch=2750/3001, vae_loss=254.9594]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2751/3000 [00:47<00:04, 57.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5706, epoch=2751/3001, vae_loss=254.5706]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2752/3000 [00:47<00:04, 57.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6261, epoch=2752/3001, vae_loss=254.6261]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2753/3000 [00:47<00:04, 57.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8877, epoch=2753/3001, vae_loss=254.8877]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2754/3000 [00:47<00:04, 57.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0864, epoch=2754/3001, vae_loss=254.0864]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2755/3000 [00:47<00:04, 57.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3478, epoch=2755/3001, vae_loss=254.3478]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2756/3000 [00:47<00:04, 57.04it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3756, epoch=2756/3001, vae_loss=254.3756]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2757/3000 [00:47<00:04, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3756, epoch=2756/3001, vae_loss=254.3756]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2757/3000 [00:47<00:04, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5991, epoch=2757/3001, vae_loss=254.5991]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2758/3000 [00:47<00:04, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4273, epoch=2758/3001, vae_loss=254.4273]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2759/3000 [00:47<00:04, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8858, epoch=2759/3001, vae_loss=254.8858]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2760/3000 [00:47<00:04, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3799, epoch=2760/3001, vae_loss=254.3799]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2761/3000 [00:47<00:04, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5638, epoch=2761/3001, vae_loss=254.5638]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2762/3000 [00:47<00:04, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2496, epoch=2762/3001, vae_loss=254.2496]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2763/3000 [00:47<00:04, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2496, epoch=2762/3001, vae_loss=254.2496]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2763/3000 [00:47<00:04, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6123, epoch=2763/3001, vae_loss=254.6123]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2764/3000 [00:47<00:04, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4037, epoch=2764/3001, vae_loss=254.4037]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2765/3000 [00:47<00:04, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4078, epoch=2765/3001, vae_loss=254.4078]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2766/3000 [00:47<00:04, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0613, epoch=2766/3001, vae_loss=254.0613]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2767/3000 [00:47<00:04, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7604, epoch=2767/3001, vae_loss=254.7604]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2768/3000 [00:47<00:04, 57.39it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7218, epoch=2768/3001, vae_loss=253.7218]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2769/3000 [00:47<00:03, 57.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7218, epoch=2768/3001, vae_loss=253.7218]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2769/3000 [00:47<00:03, 57.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4792, epoch=2769/3001, vae_loss=254.4792]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2770/3000 [00:47<00:03, 57.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0133, epoch=2770/3001, vae_loss=254.0133]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2771/3000 [00:47<00:03, 57.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0411, epoch=2771/3001, vae_loss=254.0411]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2772/3000 [00:47<00:03, 57.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5713, epoch=2772/3001, vae_loss=254.5713]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2773/3000 [00:47<00:03, 57.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3032, epoch=2773/3001, vae_loss=254.3032]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 2774/3000 [00:47<00:03, 57.90it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2661, epoch=2774/3001, vae_loss=254.2661]
Training: VAE for learning meaningful embeddings:  92%|█████████▎| 2775/3000 [00:47<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2661, epoch=2774/3001, vae_loss=254.2661]
Training: VAE for learning meaningful embeddings:  92%|█████████▎| 2775/3000 [00:47<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7860, epoch=2775/3001, vae_loss=254.7860]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2776/3000 [00:47<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4099, epoch=2776/3001, vae_loss=254.4099]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2777/3000 [00:47<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5784, epoch=2777/3001, vae_loss=254.5784]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2778/3000 [00:47<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9460, epoch=2778/3001, vae_loss=254.9460]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2779/3000 [00:47<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8371, epoch=2779/3001, vae_loss=254.8371]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2780/3000 [00:47<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5438, epoch=2780/3001, vae_loss=254.5438]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2781/3000 [00:47<00:03, 57.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5438, epoch=2780/3001, vae_loss=254.5438]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2781/3000 [00:47<00:03, 57.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5511, epoch=2781/3001, vae_loss=254.5511]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2782/3000 [00:47<00:03, 57.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4928, epoch=2782/3001, vae_loss=254.4928]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2783/3000 [00:47<00:03, 57.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7323, epoch=2783/3001, vae_loss=254.7323]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2784/3000 [00:47<00:03, 57.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4461, epoch=2784/3001, vae_loss=254.4461]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2785/3000 [00:47<00:03, 57.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6761, epoch=2785/3001, vae_loss=254.6761]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2786/3000 [00:47<00:03, 57.34it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5642, epoch=2786/3001, vae_loss=254.5642]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2787/3000 [00:47<00:03, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5642, epoch=2786/3001, vae_loss=254.5642]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2787/3000 [00:47<00:03, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4769, epoch=2787/3001, vae_loss=254.4769]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2788/3000 [00:47<00:03, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4793, epoch=2788/3001, vae_loss=254.4793]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2789/3000 [00:47<00:03, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8867, epoch=2789/3001, vae_loss=254.8867]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2790/3000 [00:47<00:03, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3793, epoch=2790/3001, vae_loss=254.3793]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2791/3000 [00:47<00:03, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2848, epoch=2791/3001, vae_loss=254.2848]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2792/3000 [00:47<00:03, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9796, epoch=2792/3001, vae_loss=253.9796]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2793/3000 [00:47<00:03, 57.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9796, epoch=2792/3001, vae_loss=253.9796]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2793/3000 [00:47<00:03, 57.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4915, epoch=2793/3001, vae_loss=254.4915]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2794/3000 [00:47<00:03, 57.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1586, epoch=2794/3001, vae_loss=254.1586]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2795/3000 [00:47<00:03, 57.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9352, epoch=2795/3001, vae_loss=254.9352]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2796/3000 [00:47<00:03, 57.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7410, epoch=2796/3001, vae_loss=253.7410]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2797/3000 [00:47<00:03, 57.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6698, epoch=2797/3001, vae_loss=254.6698]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2798/3000 [00:47<00:03, 57.58it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6206, epoch=2798/3001, vae_loss=254.6206]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2799/3000 [00:47<00:03, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6206, epoch=2798/3001, vae_loss=254.6206]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2799/3000 [00:47<00:03, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4068, epoch=2799/3001, vae_loss=254.4068]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2800/3000 [00:48<00:03, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0581, epoch=2800/3001, vae_loss=254.0581]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2801/3000 [00:48<00:03, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3567, epoch=2801/3001, vae_loss=254.3567]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2802/3000 [00:48<00:03, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7163, epoch=2802/3001, vae_loss=254.7163]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2803/3000 [00:48<00:03, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6605, epoch=2803/3001, vae_loss=254.6605]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 2804/3000 [00:48<00:03, 57.74it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3488, epoch=2804/3001, vae_loss=254.3488]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2805/3000 [00:48<00:03, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3488, epoch=2804/3001, vae_loss=254.3488]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2805/3000 [00:48<00:03, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7117, epoch=2805/3001, vae_loss=254.7117]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2806/3000 [00:48<00:03, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3243, epoch=2806/3001, vae_loss=254.3243]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2807/3000 [00:48<00:03, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6365, epoch=2807/3001, vae_loss=254.6365]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2808/3000 [00:48<00:03, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2479, epoch=2808/3001, vae_loss=254.2479]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2809/3000 [00:48<00:03, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1552, epoch=2809/3001, vae_loss=254.1552]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2810/3000 [00:48<00:03, 57.84it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1596, epoch=2810/3001, vae_loss=254.1596]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2811/3000 [00:48<00:03, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1596, epoch=2810/3001, vae_loss=254.1596]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2811/3000 [00:48<00:03, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5302, epoch=2811/3001, vae_loss=254.5302]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 2812/3000 [00:48<00:03, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3871, epoch=2812/3001, vae_loss=254.3871]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2813/3000 [00:48<00:03, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0048, epoch=2813/3001, vae_loss=254.0048]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2814/3000 [00:48<00:03, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9503, epoch=2814/3001, vae_loss=254.9503]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2815/3000 [00:48<00:03, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7543, epoch=2815/3001, vae_loss=254.7543]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2816/3000 [00:48<00:03, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7657, epoch=2816/3001, vae_loss=254.7657]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2817/3000 [00:48<00:03, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7657, epoch=2816/3001, vae_loss=254.7657]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2817/3000 [00:48<00:03, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0104, epoch=2817/3001, vae_loss=255.0104]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2818/3000 [00:48<00:03, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8399, epoch=2818/3001, vae_loss=254.8399]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2819/3000 [00:48<00:03, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4906, epoch=2819/3001, vae_loss=254.4906]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2820/3000 [00:48<00:03, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.9437, epoch=2820/3001, vae_loss=254.9437]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2821/3000 [00:48<00:03, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4557, epoch=2821/3001, vae_loss=254.4557]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2822/3000 [00:48<00:03, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7680, epoch=2822/3001, vae_loss=254.7680]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2823/3000 [00:48<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7680, epoch=2822/3001, vae_loss=254.7680]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2823/3000 [00:48<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1835, epoch=2823/3001, vae_loss=254.1835]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2824/3000 [00:48<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3651, epoch=2824/3001, vae_loss=254.3651]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2825/3000 [00:48<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.8245, epoch=2825/3001, vae_loss=254.8245]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2826/3000 [00:48<00:03, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9221, epoch=2826/3001, vae_loss=253.9221]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2827/3000 [00:48<00:02, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4064, epoch=2827/3001, vae_loss=254.4064]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2828/3000 [00:48<00:02, 57.73it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6078, epoch=2828/3001, vae_loss=254.6078]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2829/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6078, epoch=2828/3001, vae_loss=254.6078]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2829/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5622, epoch=2829/3001, vae_loss=254.5622]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2830/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2860, epoch=2830/3001, vae_loss=254.2860]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2831/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5257, epoch=2831/3001, vae_loss=254.5257]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2832/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4452, epoch=2832/3001, vae_loss=254.4452]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2833/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3605, epoch=2833/3001, vae_loss=254.3605]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2834/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9824, epoch=2834/3001, vae_loss=253.9824]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2835/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9824, epoch=2834/3001, vae_loss=253.9824]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 2835/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0794, epoch=2835/3001, vae_loss=254.0794]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2836/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9700, epoch=2836/3001, vae_loss=253.9700]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2837/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3484, epoch=2837/3001, vae_loss=254.3484]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2838/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6810, epoch=2838/3001, vae_loss=253.6810]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2839/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9982, epoch=2839/3001, vae_loss=253.9982]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2840/3000 [00:48<00:02, 58.20it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6340, epoch=2840/3001, vae_loss=253.6340]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2841/3000 [00:48<00:02, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6340, epoch=2840/3001, vae_loss=253.6340]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2841/3000 [00:48<00:02, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0452, epoch=2841/3001, vae_loss=254.0452]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2842/3000 [00:48<00:02, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7731, epoch=2842/3001, vae_loss=253.7731]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2843/3000 [00:48<00:02, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8759, epoch=2843/3001, vae_loss=253.8759]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2844/3000 [00:48<00:02, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1830, epoch=2844/3001, vae_loss=254.1830]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2845/3000 [00:48<00:02, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7773, epoch=2845/3001, vae_loss=253.7773]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2846/3000 [00:48<00:02, 58.05it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3783, epoch=2846/3001, vae_loss=254.3783]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2847/3000 [00:48<00:02, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3783, epoch=2846/3001, vae_loss=254.3783]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2847/3000 [00:48<00:02, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8680, epoch=2847/3001, vae_loss=253.8680]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2848/3000 [00:48<00:02, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0844, epoch=2848/3001, vae_loss=254.0844]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 2849/3000 [00:48<00:02, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1761, epoch=2849/3001, vae_loss=254.1761]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2850/3000 [00:48<00:02, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7077, epoch=2850/3001, vae_loss=254.7077]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2851/3000 [00:48<00:02, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4182, epoch=2851/3001, vae_loss=254.4182]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2852/3000 [00:48<00:02, 57.89it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6122, epoch=2852/3001, vae_loss=254.6122]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2853/3000 [00:48<00:02, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6122, epoch=2852/3001, vae_loss=254.6122]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2853/3000 [00:48<00:02, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1218, epoch=2853/3001, vae_loss=254.1218]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2854/3000 [00:48<00:02, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2047, epoch=2854/3001, vae_loss=254.2047]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2855/3000 [00:48<00:02, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3801, epoch=2855/3001, vae_loss=254.3801]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2856/3000 [00:48<00:02, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0989, epoch=2856/3001, vae_loss=254.0989]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2857/3000 [00:48<00:02, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3162, epoch=2857/3001, vae_loss=254.3162]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2858/3000 [00:49<00:02, 57.57it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1544, epoch=2858/3001, vae_loss=254.1544]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2859/3000 [00:49<00:02, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1544, epoch=2858/3001, vae_loss=254.1544]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2859/3000 [00:49<00:02, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8343, epoch=2859/3001, vae_loss=253.8343]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2860/3000 [00:49<00:02, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0897, epoch=2860/3001, vae_loss=254.0897]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2861/3000 [00:49<00:02, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1089, epoch=2861/3001, vae_loss=254.1089]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2862/3000 [00:49<00:02, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1440, epoch=2862/3001, vae_loss=254.1440]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2863/3000 [00:49<00:02, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8086, epoch=2863/3001, vae_loss=253.8086]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 2864/3000 [00:49<00:02, 57.46it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0816, epoch=2864/3001, vae_loss=254.0816]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2865/3000 [00:49<00:02, 57.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0816, epoch=2864/3001, vae_loss=254.0816]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2865/3000 [00:49<00:02, 57.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7018, epoch=2865/3001, vae_loss=253.7018]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2866/3000 [00:49<00:02, 57.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9046, epoch=2866/3001, vae_loss=253.9046]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2867/3000 [00:49<00:02, 57.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9069, epoch=2867/3001, vae_loss=253.9069]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2868/3000 [00:49<00:02, 57.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1058, epoch=2868/3001, vae_loss=254.1058]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2869/3000 [00:49<00:02, 57.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0148, epoch=2869/3001, vae_loss=254.0148]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2870/3000 [00:49<00:02, 57.52it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3534, epoch=2870/3001, vae_loss=254.3534]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2871/3000 [00:49<00:02, 57.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3534, epoch=2870/3001, vae_loss=254.3534]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2871/3000 [00:49<00:02, 57.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7162, epoch=2871/3001, vae_loss=253.7162]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2872/3000 [00:49<00:02, 57.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8958, epoch=2872/3001, vae_loss=253.8958]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2873/3000 [00:49<00:02, 57.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0338, epoch=2873/3001, vae_loss=254.0338]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2874/3000 [00:49<00:02, 57.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1797, epoch=2874/3001, vae_loss=254.1797]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2875/3000 [00:49<00:02, 57.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6808, epoch=2875/3001, vae_loss=253.6808]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2876/3000 [00:49<00:02, 57.54it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0818, epoch=2876/3001, vae_loss=254.0818]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2877/3000 [00:49<00:02, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0818, epoch=2876/3001, vae_loss=254.0818]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2877/3000 [00:49<00:02, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1030, epoch=2877/3001, vae_loss=254.1030]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2878/3000 [00:49<00:02, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0891, epoch=2878/3001, vae_loss=254.0891]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2879/3000 [00:49<00:02, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.4588, epoch=2879/3001, vae_loss=253.4588]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2880/3000 [00:49<00:02, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7731, epoch=2880/3001, vae_loss=253.7731]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2881/3000 [00:49<00:02, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9267, epoch=2881/3001, vae_loss=253.9267]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2882/3000 [00:49<00:02, 57.98it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7088, epoch=2882/3001, vae_loss=253.7088]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2883/3000 [00:49<00:02, 57.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7088, epoch=2882/3001, vae_loss=253.7088]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2883/3000 [00:49<00:02, 57.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1609, epoch=2883/3001, vae_loss=254.1609]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2884/3000 [00:49<00:02, 57.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1834, epoch=2884/3001, vae_loss=254.1834]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2885/3000 [00:49<00:01, 57.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4304, epoch=2885/3001, vae_loss=254.4304]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2886/3000 [00:49<00:01, 57.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0553, epoch=2886/3001, vae_loss=254.0553]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 2887/3000 [00:49<00:01, 57.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1236, epoch=2887/3001, vae_loss=254.1236]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2888/3000 [00:49<00:01, 57.85it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9830, epoch=2888/3001, vae_loss=253.9830]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2889/3000 [00:49<00:01, 57.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9830, epoch=2888/3001, vae_loss=253.9830]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2889/3000 [00:49<00:01, 57.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.5415, epoch=2889/3001, vae_loss=253.5415]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2890/3000 [00:49<00:01, 57.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8619, epoch=2890/3001, vae_loss=253.8619]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2891/3000 [00:49<00:01, 57.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0537, epoch=2891/3001, vae_loss=254.0537]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2892/3000 [00:49<00:01, 57.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0477, epoch=2892/3001, vae_loss=254.0477]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2893/3000 [00:49<00:01, 57.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2862, epoch=2893/3001, vae_loss=254.2862]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2894/3000 [00:49<00:01, 57.77it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1347, epoch=2894/3001, vae_loss=254.1347]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2895/3000 [00:49<00:01, 57.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1347, epoch=2894/3001, vae_loss=254.1347]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 2895/3000 [00:49<00:01, 57.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.1757, epoch=2895/3001, vae_loss=255.1757]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2896/3000 [00:49<00:01, 57.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3748, epoch=2896/3001, vae_loss=254.3748]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2897/3000 [00:49<00:01, 57.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=255.0083, epoch=2897/3001, vae_loss=255.0083]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2898/3000 [00:49<00:01, 57.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2636, epoch=2898/3001, vae_loss=254.2636]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2899/3000 [00:49<00:01, 57.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5251, epoch=2899/3001, vae_loss=254.5251]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2900/3000 [00:49<00:01, 57.61it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7576, epoch=2900/3001, vae_loss=254.7576]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2901/3000 [00:49<00:01, 57.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7576, epoch=2900/3001, vae_loss=254.7576]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2901/3000 [00:49<00:01, 57.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2444, epoch=2901/3001, vae_loss=254.2444]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2902/3000 [00:49<00:01, 57.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3536, epoch=2902/3001, vae_loss=254.3536]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2903/3000 [00:49<00:01, 57.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3390, epoch=2903/3001, vae_loss=254.3390]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2904/3000 [00:49<00:01, 57.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4585, epoch=2904/3001, vae_loss=254.4585]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2905/3000 [00:49<00:01, 57.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0918, epoch=2905/3001, vae_loss=254.0918]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2906/3000 [00:49<00:01, 57.63it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6142, epoch=2906/3001, vae_loss=254.6142]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2907/3000 [00:49<00:01, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6142, epoch=2906/3001, vae_loss=254.6142]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2907/3000 [00:49<00:01, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9910, epoch=2907/3001, vae_loss=253.9910]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2908/3000 [00:49<00:01, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3727, epoch=2908/3001, vae_loss=254.3727]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2909/3000 [00:49<00:01, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8968, epoch=2909/3001, vae_loss=253.8968]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2910/3000 [00:49<00:01, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2290, epoch=2910/3001, vae_loss=254.2290]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2911/3000 [00:49<00:01, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9056, epoch=2911/3001, vae_loss=253.9056]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2912/3000 [00:49<00:01, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4886, epoch=2912/3001, vae_loss=254.4886]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2913/3000 [00:49<00:01, 57.67it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4886, epoch=2912/3001, vae_loss=254.4886]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2913/3000 [00:49<00:01, 57.67it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1778, epoch=2913/3001, vae_loss=254.1778]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2914/3000 [00:49<00:01, 57.67it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5992, epoch=2914/3001, vae_loss=254.5992]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2915/3000 [00:49<00:01, 57.67it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8285, epoch=2915/3001, vae_loss=253.8285]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2916/3000 [00:50<00:01, 57.67it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2250, epoch=2916/3001, vae_loss=254.2250]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2917/3000 [00:50<00:01, 57.67it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8831, epoch=2917/3001, vae_loss=253.8831]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2918/3000 [00:50<00:01, 57.67it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3128, epoch=2918/3001, vae_loss=254.3128]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2919/3000 [00:50<00:01, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3128, epoch=2918/3001, vae_loss=254.3128]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2919/3000 [00:50<00:01, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0345, epoch=2919/3001, vae_loss=254.0345]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2920/3000 [00:50<00:01, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2739, epoch=2920/3001, vae_loss=254.2739]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2921/3000 [00:50<00:01, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9435, epoch=2921/3001, vae_loss=253.9435]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2922/3000 [00:50<00:01, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5220, epoch=2922/3001, vae_loss=254.5220]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2923/3000 [00:50<00:01, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1423, epoch=2923/3001, vae_loss=254.1423]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 2924/3000 [00:50<00:01, 57.95it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4089, epoch=2924/3001, vae_loss=254.4089]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2925/3000 [00:50<00:01, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4089, epoch=2924/3001, vae_loss=254.4089]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2925/3000 [00:50<00:01, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3734, epoch=2925/3001, vae_loss=254.3734]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2926/3000 [00:50<00:01, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4834, epoch=2926/3001, vae_loss=254.4834]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2927/3000 [00:50<00:01, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7450, epoch=2927/3001, vae_loss=254.7450]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2928/3000 [00:50<00:01, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5244, epoch=2928/3001, vae_loss=254.5244]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2929/3000 [00:50<00:01, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1604, epoch=2929/3001, vae_loss=254.1604]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2930/3000 [00:50<00:01, 57.92it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4147, epoch=2930/3001, vae_loss=254.4147]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2931/3000 [00:50<00:01, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4147, epoch=2930/3001, vae_loss=254.4147]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2931/3000 [00:50<00:01, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1629, epoch=2931/3001, vae_loss=254.1629]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2932/3000 [00:50<00:01, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0360, epoch=2932/3001, vae_loss=254.0360]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2933/3000 [00:50<00:01, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2845, epoch=2933/3001, vae_loss=254.2845]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2934/3000 [00:50<00:01, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4093, epoch=2934/3001, vae_loss=254.4093]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2935/3000 [00:50<00:01, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6129, epoch=2935/3001, vae_loss=253.6129]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2936/3000 [00:50<00:01, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6603, epoch=2936/3001, vae_loss=254.6603]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2937/3000 [00:50<00:01, 57.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6603, epoch=2936/3001, vae_loss=254.6603]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2937/3000 [00:50<00:01, 57.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9584, epoch=2937/3001, vae_loss=253.9584]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2938/3000 [00:50<00:01, 57.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1663, epoch=2938/3001, vae_loss=254.1663]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2939/3000 [00:50<00:01, 57.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7011, epoch=2939/3001, vae_loss=253.7011]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2940/3000 [00:50<00:01, 57.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5953, epoch=2940/3001, vae_loss=254.5953]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2941/3000 [00:50<00:01, 57.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4367, epoch=2941/3001, vae_loss=254.4367]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2942/3000 [00:50<00:01, 57.56it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5527, epoch=2942/3001, vae_loss=254.5527]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2943/3000 [00:50<00:00, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.5527, epoch=2942/3001, vae_loss=254.5527]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2943/3000 [00:50<00:00, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2243, epoch=2943/3001, vae_loss=254.2243]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2944/3000 [00:50<00:00, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.7105, epoch=2944/3001, vae_loss=254.7105]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2945/3000 [00:50<00:00, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9177, epoch=2945/3001, vae_loss=253.9177]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2946/3000 [00:50<00:00, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6857, epoch=2946/3001, vae_loss=254.6857]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2947/3000 [00:50<00:00, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6469, epoch=2947/3001, vae_loss=254.6469]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2948/3000 [00:50<00:00, 57.87it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3334, epoch=2948/3001, vae_loss=254.3334]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2949/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3334, epoch=2948/3001, vae_loss=254.3334]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2949/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3263, epoch=2949/3001, vae_loss=254.3263]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2950/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3767, epoch=2950/3001, vae_loss=254.3767]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2951/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4432, epoch=2951/3001, vae_loss=254.4432]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2952/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.3979, epoch=2952/3001, vae_loss=254.3979]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2953/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0535, epoch=2953/3001, vae_loss=254.0535]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2954/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6155, epoch=2954/3001, vae_loss=254.6155]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2955/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.6155, epoch=2954/3001, vae_loss=254.6155]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 2955/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2813, epoch=2955/3001, vae_loss=254.2813]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2956/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9874, epoch=2956/3001, vae_loss=253.9874]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2957/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9553, epoch=2957/3001, vae_loss=253.9553]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2958/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0256, epoch=2958/3001, vae_loss=254.0256]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2959/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1482, epoch=2959/3001, vae_loss=254.1482]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2960/3000 [00:50<00:00, 57.93it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8220, epoch=2960/3001, vae_loss=253.8220]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2961/3000 [00:50<00:00, 57.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8220, epoch=2960/3001, vae_loss=253.8220]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2961/3000 [00:50<00:00, 57.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1126, epoch=2961/3001, vae_loss=254.1126]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 2962/3000 [00:50<00:00, 57.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1438, epoch=2962/3001, vae_loss=254.1438]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2963/3000 [00:50<00:00, 57.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9027, epoch=2963/3001, vae_loss=253.9027]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2964/3000 [00:50<00:00, 57.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8669, epoch=2964/3001, vae_loss=253.8669]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2965/3000 [00:50<00:00, 57.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9276, epoch=2965/3001, vae_loss=253.9276]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2966/3000 [00:50<00:00, 57.88it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7765, epoch=2966/3001, vae_loss=253.7765]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2967/3000 [00:50<00:00, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7765, epoch=2966/3001, vae_loss=253.7765]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2967/3000 [00:50<00:00, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6240, epoch=2967/3001, vae_loss=253.6240]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2968/3000 [00:50<00:00, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.4624, epoch=2968/3001, vae_loss=253.4624]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2969/3000 [00:50<00:00, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9370, epoch=2969/3001, vae_loss=253.9370]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2970/3000 [00:50<00:00, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1986, epoch=2970/3001, vae_loss=254.1986]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2971/3000 [00:50<00:00, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0508, epoch=2971/3001, vae_loss=254.0508]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2972/3000 [00:50<00:00, 57.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.2740, epoch=2972/3001, vae_loss=253.2740]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2973/3000 [00:50<00:00, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.2740, epoch=2972/3001, vae_loss=253.2740]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2973/3000 [00:50<00:00, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7817, epoch=2973/3001, vae_loss=253.7817]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2974/3000 [00:51<00:00, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8553, epoch=2974/3001, vae_loss=253.8553]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2975/3000 [00:51<00:00, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.5892, epoch=2975/3001, vae_loss=253.5892]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2976/3000 [00:51<00:00, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8911, epoch=2976/3001, vae_loss=253.8911]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2977/3000 [00:51<00:00, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7200, epoch=2977/3001, vae_loss=253.7200]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2978/3000 [00:51<00:00, 57.47it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7473, epoch=2978/3001, vae_loss=253.7473]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2979/3000 [00:51<00:00, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7473, epoch=2978/3001, vae_loss=253.7473]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2979/3000 [00:51<00:00, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6496, epoch=2979/3001, vae_loss=253.6496]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2980/3000 [00:51<00:00, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.4648, epoch=2980/3001, vae_loss=253.4648]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2981/3000 [00:51<00:00, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6159, epoch=2981/3001, vae_loss=253.6159]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2982/3000 [00:51<00:00, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8449, epoch=2982/3001, vae_loss=253.8449]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2983/3000 [00:51<00:00, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.7255, epoch=2983/3001, vae_loss=253.7255]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 2984/3000 [00:51<00:00, 57.72it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4848, epoch=2984/3001, vae_loss=254.4848]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2985/3000 [00:51<00:00, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4848, epoch=2984/3001, vae_loss=254.4848]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2985/3000 [00:51<00:00, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.9463, epoch=2985/3001, vae_loss=253.9463]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2986/3000 [00:51<00:00, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.3178, epoch=2986/3001, vae_loss=253.3178]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2987/3000 [00:51<00:00, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1024, epoch=2987/3001, vae_loss=254.1024]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2988/3000 [00:51<00:00, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6469, epoch=2988/3001, vae_loss=253.6469]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2989/3000 [00:51<00:00, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8894, epoch=2989/3001, vae_loss=253.8894]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2990/3000 [00:51<00:00, 57.50it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2602, epoch=2990/3001, vae_loss=254.2602]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2991/3000 [00:51<00:00, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2602, epoch=2990/3001, vae_loss=254.2602]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2991/3000 [00:51<00:00, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.1083, epoch=2991/3001, vae_loss=254.1083]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2992/3000 [00:51<00:00, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.5833, epoch=2992/3001, vae_loss=253.5833]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2993/3000 [00:51<00:00, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2799, epoch=2993/3001, vae_loss=254.2799]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2994/3000 [00:51<00:00, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.6841, epoch=2994/3001, vae_loss=253.6841]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2995/3000 [00:51<00:00, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8881, epoch=2995/3001, vae_loss=253.8881]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2996/3000 [00:51<00:00, 57.65it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8717, epoch=2996/3001, vae_loss=253.8717]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2997/3000 [00:51<00:00, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=253.8717, epoch=2996/3001, vae_loss=253.8717]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2997/3000 [00:51<00:00, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.4846, epoch=2997/3001, vae_loss=254.4846]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2998/3000 [00:51<00:00, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.0049, epoch=2998/3001, vae_loss=254.0049]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 2999/3000 [00:51<00:00, 57.75it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2399, epoch=2999/3001, vae_loss=254.2399]
Training: VAE for learning meaningful embeddings: 100%|██████████| 3000/3000 [00:51<00:00, 58.31it/s, bio_penalty=0.0000, clustering_loss=0.0000, elbo=254.2399, epoch=2999/3001, vae_loss=254.2399]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 0/1000 [00:00<?, ?it/s]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 0/1000 [00:00<?, ?it/s, adv_loss=-0.9526, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9526, elbo=280.6172, epoch=0/1001, vae_loss=280.6172]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 1/1000 [00:00<00:48, 20.75it/s, adv_loss=-0.8971, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8971, elbo=365.1308, epoch=1/1001, vae_loss=365.1308]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 2/1000 [00:00<00:35, 28.12it/s, adv_loss=-0.8620, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8620, elbo=298.0711, epoch=2/1001, vae_loss=298.0711]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 3/1000 [00:00<00:31, 31.72it/s, adv_loss=-0.8321, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8321, elbo=352.5939, epoch=3/1001, vae_loss=352.5939]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 4/1000 [00:00<00:29, 33.94it/s, adv_loss=-0.8043, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8043, elbo=405.5415, epoch=4/1001, vae_loss=405.5415]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 5/1000 [00:00<00:23, 41.89it/s, adv_loss=-0.8043, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8043, elbo=405.5415, epoch=4/1001, vae_loss=405.5415]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 5/1000 [00:00<00:23, 41.89it/s, adv_loss=-0.7680, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7680, elbo=380.8510, epoch=5/1001, vae_loss=380.8510]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 6/1000 [00:00<00:23, 41.89it/s, adv_loss=-0.7529, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7529, elbo=380.4666, epoch=6/1001, vae_loss=380.4666]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 7/1000 [00:00<00:23, 41.89it/s, adv_loss=-0.7404, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7404, elbo=393.5043, epoch=7/1001, vae_loss=393.5043]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 8/1000 [00:00<00:23, 41.89it/s, adv_loss=-0.7381, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7381, elbo=424.5523, epoch=8/1001, vae_loss=424.5523]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 9/1000 [00:00<00:23, 41.89it/s, adv_loss=-0.7569, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7569, elbo=412.4581, epoch=9/1001, vae_loss=412.4581]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 10/1000 [00:00<00:23, 42.42it/s, adv_loss=-0.7569, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7569, elbo=412.4581, epoch=9/1001, vae_loss=412.4581]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 10/1000 [00:00<00:23, 42.42it/s, adv_loss=-0.7854, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7854, elbo=444.1352, epoch=10/1001, vae_loss=444.1352]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 11/1000 [00:00<00:23, 42.42it/s, adv_loss=-0.7948, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7948, elbo=432.2996, epoch=11/1001, vae_loss=432.2996]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 12/1000 [00:00<00:23, 42.42it/s, adv_loss=-0.8191, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8191, elbo=434.6594, epoch=12/1001, vae_loss=434.6594]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 13/1000 [00:00<00:23, 42.42it/s, adv_loss=-0.8350, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8350, elbo=438.3898, epoch=13/1001, vae_loss=438.3898]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 14/1000 [00:00<00:23, 42.42it/s, adv_loss=-0.8254, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8254, elbo=418.6159, epoch=14/1001, vae_loss=418.6159]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 15/1000 [00:00<00:23, 42.49it/s, adv_loss=-0.8254, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8254, elbo=418.6159, epoch=14/1001, vae_loss=418.6159]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 15/1000 [00:00<00:23, 42.49it/s, adv_loss=-0.8108, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8108, elbo=412.4170, epoch=15/1001, vae_loss=412.4170]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 16/1000 [00:00<00:23, 42.49it/s, adv_loss=-0.7826, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7826, elbo=424.1241, epoch=16/1001, vae_loss=424.1241]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 17/1000 [00:00<00:23, 42.49it/s, adv_loss=-0.7441, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7441, elbo=435.0343, epoch=17/1001, vae_loss=435.0343]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 18/1000 [00:00<00:23, 42.49it/s, adv_loss=-0.7155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7155, elbo=443.2393, epoch=18/1001, vae_loss=443.2393]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 19/1000 [00:00<00:23, 42.49it/s, adv_loss=-0.6928, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6928, elbo=449.3591, epoch=19/1001, vae_loss=449.3591]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 20/1000 [00:00<00:23, 42.13it/s, adv_loss=-0.6928, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6928, elbo=449.3591, epoch=19/1001, vae_loss=449.3591]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 20/1000 [00:00<00:23, 42.13it/s, adv_loss=-0.6831, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6831, elbo=465.1732, epoch=20/1001, vae_loss=465.1732]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 21/1000 [00:00<00:23, 42.13it/s, adv_loss=-0.6795, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6795, elbo=477.6906, epoch=21/1001, vae_loss=477.6906]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 22/1000 [00:00<00:23, 42.13it/s, adv_loss=-0.6859, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6859, elbo=491.9339, epoch=22/1001, vae_loss=491.9339]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 23/1000 [00:00<00:23, 42.13it/s, adv_loss=-0.6919, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6919, elbo=493.3386, epoch=23/1001, vae_loss=493.3386]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 24/1000 [00:00<00:23, 42.13it/s, adv_loss=-0.6884, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6884, elbo=496.3594, epoch=24/1001, vae_loss=496.3594]
Training: Embeddings batch effect correction using adversrial training:   2%|▎         | 25/1000 [00:00<00:22, 42.53it/s, adv_loss=-0.6884, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6884, elbo=496.3594, epoch=24/1001, vae_loss=496.3594]
Training: Embeddings batch effect correction using adversrial training:   2%|▎         | 25/1000 [00:00<00:22, 42.53it/s, adv_loss=-0.6937, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6937, elbo=493.1496, epoch=25/1001, vae_loss=493.1496]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 26/1000 [00:00<00:22, 42.53it/s, adv_loss=-0.6852, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6852, elbo=496.1081, epoch=26/1001, vae_loss=496.1081]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 27/1000 [00:00<00:22, 42.53it/s, adv_loss=-0.6621, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6621, elbo=498.2072, epoch=27/1001, vae_loss=498.2072]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 28/1000 [00:00<00:22, 42.53it/s, adv_loss=-0.6430, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6430, elbo=494.7927, epoch=28/1001, vae_loss=494.7927]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 29/1000 [00:00<00:22, 42.53it/s, adv_loss=-0.6215, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6215, elbo=494.4323, epoch=29/1001, vae_loss=494.4323]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 30/1000 [00:00<00:22, 42.41it/s, adv_loss=-0.6215, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6215, elbo=494.4323, epoch=29/1001, vae_loss=494.4323]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 30/1000 [00:00<00:22, 42.41it/s, adv_loss=-0.6222, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6222, elbo=490.5548, epoch=30/1001, vae_loss=490.5548]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 31/1000 [00:00<00:22, 42.41it/s, adv_loss=-0.6530, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6530, elbo=491.2791, epoch=31/1001, vae_loss=491.2791]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 32/1000 [00:00<00:22, 42.41it/s, adv_loss=-0.6741, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6741, elbo=483.9709, epoch=32/1001, vae_loss=483.9709]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 33/1000 [00:00<00:22, 42.41it/s, adv_loss=-0.7043, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7043, elbo=491.0475, epoch=33/1001, vae_loss=491.0475]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 34/1000 [00:00<00:22, 42.41it/s, adv_loss=-0.7085, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7085, elbo=492.6235, epoch=34/1001, vae_loss=492.6235]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 35/1000 [00:00<00:22, 42.25it/s, adv_loss=-0.7085, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7085, elbo=492.6235, epoch=34/1001, vae_loss=492.6235]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 35/1000 [00:00<00:22, 42.25it/s, adv_loss=-0.7650, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7650, elbo=489.4380, epoch=35/1001, vae_loss=489.4380]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 36/1000 [00:00<00:22, 42.25it/s, adv_loss=-0.7798, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7798, elbo=499.0944, epoch=36/1001, vae_loss=499.0944]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 37/1000 [00:00<00:22, 42.25it/s, adv_loss=-0.7965, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7965, elbo=498.6401, epoch=37/1001, vae_loss=498.6401]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 38/1000 [00:00<00:22, 42.25it/s, adv_loss=-0.8089, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8089, elbo=504.6728, epoch=38/1001, vae_loss=504.6728]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 39/1000 [00:00<00:22, 42.25it/s, adv_loss=-0.8346, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8346, elbo=504.1520, epoch=39/1001, vae_loss=504.1520]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 40/1000 [00:00<00:22, 41.93it/s, adv_loss=-0.8346, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8346, elbo=504.1520, epoch=39/1001, vae_loss=504.1520]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 40/1000 [00:00<00:22, 41.93it/s, adv_loss=-0.8465, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8465, elbo=516.5393, epoch=40/1001, vae_loss=516.5393]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 41/1000 [00:00<00:22, 41.93it/s, adv_loss=-0.8514, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8514, elbo=513.0153, epoch=41/1001, vae_loss=513.0153]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 42/1000 [00:01<00:22, 41.93it/s, adv_loss=-0.9123, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9123, elbo=512.8415, epoch=42/1001, vae_loss=512.8415]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 43/1000 [00:01<00:22, 41.93it/s, adv_loss=-0.9170, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9170, elbo=512.1779, epoch=43/1001, vae_loss=512.1779]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 44/1000 [00:01<00:22, 41.93it/s, adv_loss=-0.9277, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9277, elbo=512.5722, epoch=44/1001, vae_loss=512.5722]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 45/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.9277, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9277, elbo=512.5722, epoch=44/1001, vae_loss=512.5722]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 45/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.9665, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9665, elbo=523.8138, epoch=45/1001, vae_loss=523.8138]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 46/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.9833, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9833, elbo=530.0693, epoch=46/1001, vae_loss=530.0693]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 47/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.9458, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9458, elbo=539.0104, epoch=47/1001, vae_loss=539.0104]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 48/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.9301, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.9301, elbo=536.4924, epoch=48/1001, vae_loss=536.4924]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 49/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.8852, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8852, elbo=542.8004, epoch=49/1001, vae_loss=542.8004]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 50/1000 [00:01<00:22, 42.09it/s, adv_loss=-0.8852, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8852, elbo=542.8004, epoch=49/1001, vae_loss=542.8004]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 50/1000 [00:01<00:22, 42.09it/s, adv_loss=-0.8304, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8304, elbo=541.5928, epoch=50/1001, vae_loss=541.5928]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 51/1000 [00:01<00:22, 42.09it/s, adv_loss=-0.7737, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7737, elbo=541.3052, epoch=51/1001, vae_loss=541.3052]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 52/1000 [00:01<00:22, 42.09it/s, adv_loss=-0.6991, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6991, elbo=530.4224, epoch=52/1001, vae_loss=530.4224]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 53/1000 [00:01<00:22, 42.09it/s, adv_loss=-0.6217, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6217, elbo=534.9355, epoch=53/1001, vae_loss=534.9355]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 54/1000 [00:01<00:22, 42.09it/s, adv_loss=-0.5403, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5403, elbo=513.6735, epoch=54/1001, vae_loss=513.6735]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 55/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.5403, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5403, elbo=513.6735, epoch=54/1001, vae_loss=513.6735]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 55/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.5049, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5049, elbo=502.6124, epoch=55/1001, vae_loss=502.6124]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 56/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.4635, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4635, elbo=484.0861, epoch=56/1001, vae_loss=484.0861]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 57/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.4300, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4300, elbo=471.3439, epoch=57/1001, vae_loss=471.3439]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 58/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.4258, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4258, elbo=464.7078, epoch=58/1001, vae_loss=464.7078]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 59/1000 [00:01<00:22, 42.32it/s, adv_loss=-0.4148, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4148, elbo=452.0782, epoch=59/1001, vae_loss=452.0782]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 60/1000 [00:01<00:22, 42.30it/s, adv_loss=-0.4148, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4148, elbo=452.0782, epoch=59/1001, vae_loss=452.0782]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 60/1000 [00:01<00:22, 42.30it/s, adv_loss=-0.4137, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4137, elbo=450.7355, epoch=60/1001, vae_loss=450.7355]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 61/1000 [00:01<00:22, 42.30it/s, adv_loss=-0.4161, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4161, elbo=444.4009, epoch=61/1001, vae_loss=444.4009]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 62/1000 [00:01<00:22, 42.30it/s, adv_loss=-0.4440, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4440, elbo=439.3338, epoch=62/1001, vae_loss=439.3338]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 63/1000 [00:01<00:22, 42.30it/s, adv_loss=-0.4303, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4303, elbo=439.4224, epoch=63/1001, vae_loss=439.4224]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 64/1000 [00:01<00:22, 42.30it/s, adv_loss=-0.4681, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4681, elbo=440.5292, epoch=64/1001, vae_loss=440.5292]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 65/1000 [00:01<00:22, 42.11it/s, adv_loss=-0.4681, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4681, elbo=440.5292, epoch=64/1001, vae_loss=440.5292]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 65/1000 [00:01<00:22, 42.11it/s, adv_loss=-0.4934, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4934, elbo=440.1308, epoch=65/1001, vae_loss=440.1308]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 66/1000 [00:01<00:22, 42.11it/s, adv_loss=-0.5390, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5390, elbo=449.1861, epoch=66/1001, vae_loss=449.1861]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 67/1000 [00:01<00:22, 42.11it/s, adv_loss=-0.5988, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5988, elbo=465.1888, epoch=67/1001, vae_loss=465.1888]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 68/1000 [00:01<00:22, 42.11it/s, adv_loss=-0.6242, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6242, elbo=471.7724, epoch=68/1001, vae_loss=471.7724]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 69/1000 [00:01<00:22, 42.11it/s, adv_loss=-0.6604, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6604, elbo=484.0750, epoch=69/1001, vae_loss=484.0750]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 70/1000 [00:01<00:21, 42.37it/s, adv_loss=-0.6604, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6604, elbo=484.0750, epoch=69/1001, vae_loss=484.0750]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 70/1000 [00:01<00:21, 42.37it/s, adv_loss=-0.7848, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7848, elbo=483.7563, epoch=70/1001, vae_loss=483.7563]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 71/1000 [00:01<00:21, 42.37it/s, adv_loss=-0.8810, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8810, elbo=492.3397, epoch=71/1001, vae_loss=492.3397]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 72/1000 [00:01<00:21, 42.37it/s, adv_loss=-0.7406, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7406, elbo=497.7020, epoch=72/1001, vae_loss=497.7020]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 73/1000 [00:01<00:21, 42.37it/s, adv_loss=-0.8194, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8194, elbo=498.7909, epoch=73/1001, vae_loss=498.7909]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 74/1000 [00:01<00:21, 42.37it/s, adv_loss=-0.8055, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8055, elbo=508.1270, epoch=74/1001, vae_loss=508.1270]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 75/1000 [00:01<00:21, 42.47it/s, adv_loss=-0.8055, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8055, elbo=508.1270, epoch=74/1001, vae_loss=508.1270]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 75/1000 [00:01<00:21, 42.47it/s, adv_loss=-0.7797, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7797, elbo=498.4752, epoch=75/1001, vae_loss=498.4752]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 76/1000 [00:01<00:21, 42.47it/s, adv_loss=-0.7641, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7641, elbo=500.6623, epoch=76/1001, vae_loss=500.6623]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 77/1000 [00:01<00:21, 42.47it/s, adv_loss=-0.6889, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6889, elbo=504.9462, epoch=77/1001, vae_loss=504.9462]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 78/1000 [00:01<00:21, 42.47it/s, adv_loss=-0.6989, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6989, elbo=496.8058, epoch=78/1001, vae_loss=496.8058]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 79/1000 [00:01<00:21, 42.47it/s, adv_loss=-0.6784, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6784, elbo=487.8664, epoch=79/1001, vae_loss=487.8664]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 80/1000 [00:01<00:21, 42.68it/s, adv_loss=-0.6784, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6784, elbo=487.8664, epoch=79/1001, vae_loss=487.8664]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 80/1000 [00:01<00:21, 42.68it/s, adv_loss=-0.7044, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7044, elbo=479.9577, epoch=80/1001, vae_loss=479.9577]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 81/1000 [00:01<00:21, 42.68it/s, adv_loss=-0.6797, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6797, elbo=475.7219, epoch=81/1001, vae_loss=475.7219]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 82/1000 [00:01<00:21, 42.68it/s, adv_loss=-0.7155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7155, elbo=472.3246, epoch=82/1001, vae_loss=472.3246]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 83/1000 [00:01<00:21, 42.68it/s, adv_loss=-0.7213, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7213, elbo=465.4937, epoch=83/1001, vae_loss=465.4937]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 84/1000 [00:02<00:21, 42.68it/s, adv_loss=-0.7113, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7113, elbo=466.5775, epoch=84/1001, vae_loss=466.5775]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 85/1000 [00:02<00:21, 42.79it/s, adv_loss=-0.7113, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7113, elbo=466.5775, epoch=84/1001, vae_loss=466.5775]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 85/1000 [00:02<00:21, 42.79it/s, adv_loss=-0.7191, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7191, elbo=452.7569, epoch=85/1001, vae_loss=452.7569]
Training: Embeddings batch effect correction using adversrial training:   9%|▊         | 86/1000 [00:02<00:21, 42.79it/s, adv_loss=-0.6970, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6970, elbo=440.8376, epoch=86/1001, vae_loss=440.8376]
Training: Embeddings batch effect correction using adversrial training:   9%|▊         | 87/1000 [00:02<00:21, 42.79it/s, adv_loss=-0.7325, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7325, elbo=434.9446, epoch=87/1001, vae_loss=434.9446]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 88/1000 [00:02<00:21, 42.79it/s, adv_loss=-0.7227, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7227, elbo=422.8326, epoch=88/1001, vae_loss=422.8326]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 89/1000 [00:02<00:21, 42.79it/s, adv_loss=-0.7229, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7229, elbo=424.3339, epoch=89/1001, vae_loss=424.3339]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 90/1000 [00:02<00:21, 42.70it/s, adv_loss=-0.7229, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7229, elbo=424.3339, epoch=89/1001, vae_loss=424.3339]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 90/1000 [00:02<00:21, 42.70it/s, adv_loss=-0.7237, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7237, elbo=427.3366, epoch=90/1001, vae_loss=427.3366]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 91/1000 [00:02<00:21, 42.70it/s, adv_loss=-0.7011, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7011, elbo=423.8946, epoch=91/1001, vae_loss=423.8946]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 92/1000 [00:02<00:21, 42.70it/s, adv_loss=-0.7106, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7106, elbo=417.2878, epoch=92/1001, vae_loss=417.2878]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 93/1000 [00:02<00:21, 42.70it/s, adv_loss=-0.6896, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6896, elbo=419.4976, epoch=93/1001, vae_loss=419.4976]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 94/1000 [00:02<00:21, 42.70it/s, adv_loss=-0.6841, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6841, elbo=412.3011, epoch=94/1001, vae_loss=412.3011]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 95/1000 [00:02<00:21, 42.59it/s, adv_loss=-0.6841, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6841, elbo=412.3011, epoch=94/1001, vae_loss=412.3011]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 95/1000 [00:02<00:21, 42.59it/s, adv_loss=-0.6435, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6435, elbo=411.5566, epoch=95/1001, vae_loss=411.5566]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 96/1000 [00:02<00:21, 42.59it/s, adv_loss=-0.6275, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6275, elbo=405.0785, epoch=96/1001, vae_loss=405.0785]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 97/1000 [00:02<00:21, 42.59it/s, adv_loss=-0.6177, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6177, elbo=411.0951, epoch=97/1001, vae_loss=411.0951]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 98/1000 [00:02<00:21, 42.59it/s, adv_loss=-0.6004, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6004, elbo=408.7751, epoch=98/1001, vae_loss=408.7751]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 99/1000 [00:02<00:21, 42.59it/s, adv_loss=-0.6054, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6054, elbo=419.2162, epoch=99/1001, vae_loss=419.2162]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 100/1000 [00:02<00:21, 42.64it/s, adv_loss=-0.6054, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6054, elbo=419.2162, epoch=99/1001, vae_loss=419.2162]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 100/1000 [00:02<00:21, 42.64it/s, adv_loss=-0.5719, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5719, elbo=413.5593, epoch=100/1001, vae_loss=413.5593]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 101/1000 [00:02<00:21, 42.64it/s, adv_loss=-0.5956, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5956, elbo=409.3393, epoch=101/1001, vae_loss=409.3393]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 102/1000 [00:02<00:21, 42.64it/s, adv_loss=-0.5586, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5586, elbo=413.9795, epoch=102/1001, vae_loss=413.9795]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 103/1000 [00:02<00:21, 42.64it/s, adv_loss=-0.5896, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5896, elbo=413.5702, epoch=103/1001, vae_loss=413.5702]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 104/1000 [00:02<00:21, 42.64it/s, adv_loss=-0.5537, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5537, elbo=410.1449, epoch=104/1001, vae_loss=410.1449]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 105/1000 [00:02<00:21, 42.54it/s, adv_loss=-0.5537, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5537, elbo=410.1449, epoch=104/1001, vae_loss=410.1449]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 105/1000 [00:02<00:21, 42.54it/s, adv_loss=-0.6456, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6456, elbo=409.9710, epoch=105/1001, vae_loss=409.9710]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 106/1000 [00:02<00:21, 42.54it/s, adv_loss=-0.6474, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6474, elbo=409.2866, epoch=106/1001, vae_loss=409.2866]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 107/1000 [00:02<00:20, 42.54it/s, adv_loss=-0.6664, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6664, elbo=406.7216, epoch=107/1001, vae_loss=406.7216]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 108/1000 [00:02<00:20, 42.54it/s, adv_loss=-0.6696, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6696, elbo=411.6382, epoch=108/1001, vae_loss=411.6382]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 109/1000 [00:02<00:20, 42.54it/s, adv_loss=-0.7034, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7034, elbo=428.8952, epoch=109/1001, vae_loss=428.8952]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 110/1000 [00:02<00:20, 42.66it/s, adv_loss=-0.7034, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7034, elbo=428.8952, epoch=109/1001, vae_loss=428.8952]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 110/1000 [00:02<00:20, 42.66it/s, adv_loss=-0.7491, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7491, elbo=425.7171, epoch=110/1001, vae_loss=425.7171]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 111/1000 [00:02<00:20, 42.66it/s, adv_loss=-0.7961, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7961, elbo=430.5942, epoch=111/1001, vae_loss=430.5942]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 112/1000 [00:02<00:20, 42.66it/s, adv_loss=-0.7869, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7869, elbo=423.7867, epoch=112/1001, vae_loss=423.7867]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 113/1000 [00:02<00:20, 42.66it/s, adv_loss=-0.8444, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8444, elbo=432.2677, epoch=113/1001, vae_loss=432.2677]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 114/1000 [00:02<00:20, 42.66it/s, adv_loss=-0.8311, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8311, elbo=446.4472, epoch=114/1001, vae_loss=446.4472]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 115/1000 [00:02<00:20, 42.62it/s, adv_loss=-0.8311, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8311, elbo=446.4472, epoch=114/1001, vae_loss=446.4472]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 115/1000 [00:02<00:20, 42.62it/s, adv_loss=-0.8763, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8763, elbo=457.2534, epoch=115/1001, vae_loss=457.2534]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 116/1000 [00:02<00:20, 42.62it/s, adv_loss=-0.8750, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8750, elbo=461.4668, epoch=116/1001, vae_loss=461.4668]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 117/1000 [00:02<00:20, 42.62it/s, adv_loss=-0.8484, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8484, elbo=457.6931, epoch=117/1001, vae_loss=457.6931]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 118/1000 [00:02<00:20, 42.62it/s, adv_loss=-0.8528, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8528, elbo=473.4818, epoch=118/1001, vae_loss=473.4818]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 119/1000 [00:02<00:20, 42.62it/s, adv_loss=-0.8545, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8545, elbo=463.9481, epoch=119/1001, vae_loss=463.9481]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 120/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.8545, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8545, elbo=463.9481, epoch=119/1001, vae_loss=463.9481]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 120/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.8327, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8327, elbo=481.3683, epoch=120/1001, vae_loss=481.3683]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 121/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.8614, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8614, elbo=472.7442, epoch=121/1001, vae_loss=472.7442]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 122/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.8138, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8138, elbo=470.9068, epoch=122/1001, vae_loss=470.9068]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 123/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.8065, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8065, elbo=469.3146, epoch=123/1001, vae_loss=469.3146]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 124/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.7789, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7789, elbo=466.9957, epoch=124/1001, vae_loss=466.9957]
Training: Embeddings batch effect correction using adversrial training:  12%|█▎        | 125/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.7789, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7789, elbo=466.9957, epoch=124/1001, vae_loss=466.9957]
Training: Embeddings batch effect correction using adversrial training:  12%|█▎        | 125/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.7333, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7333, elbo=458.5678, epoch=125/1001, vae_loss=458.5678]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 126/1000 [00:02<00:20, 42.59it/s, adv_loss=-0.7189, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7189, elbo=453.7676, epoch=126/1001, vae_loss=453.7676]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 127/1000 [00:03<00:20, 42.59it/s, adv_loss=-0.6991, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6991, elbo=449.4791, epoch=127/1001, vae_loss=449.4791]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 128/1000 [00:03<00:20, 42.59it/s, adv_loss=-0.6681, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6681, elbo=450.6703, epoch=128/1001, vae_loss=450.6703]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 129/1000 [00:03<00:20, 42.59it/s, adv_loss=-0.6715, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6715, elbo=451.7003, epoch=129/1001, vae_loss=451.7003]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 130/1000 [00:03<00:20, 42.77it/s, adv_loss=-0.6715, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6715, elbo=451.7003, epoch=129/1001, vae_loss=451.7003]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 130/1000 [00:03<00:20, 42.77it/s, adv_loss=-0.6232, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6232, elbo=449.9977, epoch=130/1001, vae_loss=449.9977]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 131/1000 [00:03<00:20, 42.77it/s, adv_loss=-0.6131, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6131, elbo=449.6691, epoch=131/1001, vae_loss=449.6691]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 132/1000 [00:03<00:20, 42.77it/s, adv_loss=-0.6146, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6146, elbo=439.0217, epoch=132/1001, vae_loss=439.0217]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 133/1000 [00:03<00:20, 42.77it/s, adv_loss=-0.5677, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5677, elbo=437.7176, epoch=133/1001, vae_loss=437.7176]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 134/1000 [00:03<00:20, 42.77it/s, adv_loss=-0.5614, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5614, elbo=432.5827, epoch=134/1001, vae_loss=432.5827]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 135/1000 [00:03<00:20, 41.47it/s, adv_loss=-0.5614, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5614, elbo=432.5827, epoch=134/1001, vae_loss=432.5827]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 135/1000 [00:03<00:20, 41.47it/s, adv_loss=-0.5276, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5276, elbo=427.1163, epoch=135/1001, vae_loss=427.1163]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 136/1000 [00:03<00:20, 41.47it/s, adv_loss=-0.5323, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5323, elbo=425.4165, epoch=136/1001, vae_loss=425.4165]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 137/1000 [00:03<00:20, 41.47it/s, adv_loss=-0.5465, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5465, elbo=419.5977, epoch=137/1001, vae_loss=419.5977]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 138/1000 [00:03<00:20, 41.47it/s, adv_loss=-0.4932, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4932, elbo=421.5996, epoch=138/1001, vae_loss=421.5996]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 139/1000 [00:03<00:20, 41.47it/s, adv_loss=-0.5029, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5029, elbo=413.2682, epoch=139/1001, vae_loss=413.2682]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 140/1000 [00:03<00:20, 41.92it/s, adv_loss=-0.5029, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5029, elbo=413.2682, epoch=139/1001, vae_loss=413.2682]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 140/1000 [00:03<00:20, 41.92it/s, adv_loss=-0.5003, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5003, elbo=410.5539, epoch=140/1001, vae_loss=410.5539]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 141/1000 [00:03<00:20, 41.92it/s, adv_loss=-0.4965, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4965, elbo=403.1775, epoch=141/1001, vae_loss=403.1775]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 142/1000 [00:03<00:20, 41.92it/s, adv_loss=-0.5256, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5256, elbo=400.0207, epoch=142/1001, vae_loss=400.0207]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 143/1000 [00:03<00:20, 41.92it/s, adv_loss=-0.5527, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5527, elbo=393.5691, epoch=143/1001, vae_loss=393.5691]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 144/1000 [00:03<00:20, 41.92it/s, adv_loss=-0.5527, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5527, elbo=389.1753, epoch=144/1001, vae_loss=389.1753]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 145/1000 [00:03<00:20, 42.02it/s, adv_loss=-0.5527, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5527, elbo=389.1753, epoch=144/1001, vae_loss=389.1753]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 145/1000 [00:03<00:20, 42.02it/s, adv_loss=-0.5776, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5776, elbo=390.1872, epoch=145/1001, vae_loss=390.1872]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 146/1000 [00:03<00:20, 42.02it/s, adv_loss=-0.6467, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6467, elbo=382.5932, epoch=146/1001, vae_loss=382.5932]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 147/1000 [00:03<00:20, 42.02it/s, adv_loss=-0.6573, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6573, elbo=379.3273, epoch=147/1001, vae_loss=379.3273]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 148/1000 [00:03<00:20, 42.02it/s, adv_loss=-0.6786, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6786, elbo=374.2221, epoch=148/1001, vae_loss=374.2221]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 149/1000 [00:03<00:20, 42.02it/s, adv_loss=-0.6952, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6952, elbo=375.0943, epoch=149/1001, vae_loss=375.0943]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 150/1000 [00:03<00:20, 42.10it/s, adv_loss=-0.6952, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6952, elbo=375.0943, epoch=149/1001, vae_loss=375.0943]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 150/1000 [00:03<00:20, 42.10it/s, adv_loss=-0.7417, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7417, elbo=370.7990, epoch=150/1001, vae_loss=370.7990]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 151/1000 [00:03<00:20, 42.10it/s, adv_loss=-0.7865, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7865, elbo=372.5301, epoch=151/1001, vae_loss=372.5301]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 152/1000 [00:03<00:20, 42.10it/s, adv_loss=-0.7980, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7980, elbo=371.7753, epoch=152/1001, vae_loss=371.7753]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 153/1000 [00:03<00:20, 42.10it/s, adv_loss=-0.7913, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7913, elbo=368.0323, epoch=153/1001, vae_loss=368.0323]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 154/1000 [00:03<00:20, 42.10it/s, adv_loss=-0.8316, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8316, elbo=367.9996, epoch=154/1001, vae_loss=367.9996]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 155/1000 [00:03<00:20, 42.12it/s, adv_loss=-0.8316, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8316, elbo=367.9996, epoch=154/1001, vae_loss=367.9996]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 155/1000 [00:03<00:20, 42.12it/s, adv_loss=-0.8114, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8114, elbo=368.7061, epoch=155/1001, vae_loss=368.7061]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 156/1000 [00:03<00:20, 42.12it/s, adv_loss=-0.8043, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.8043, elbo=368.0539, epoch=156/1001, vae_loss=368.0539]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 157/1000 [00:03<00:20, 42.12it/s, adv_loss=-0.7816, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7816, elbo=372.2419, epoch=157/1001, vae_loss=372.2419]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 158/1000 [00:03<00:19, 42.12it/s, adv_loss=-0.7677, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7677, elbo=374.9698, epoch=158/1001, vae_loss=374.9698]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 159/1000 [00:03<00:19, 42.12it/s, adv_loss=-0.7455, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7455, elbo=376.7566, epoch=159/1001, vae_loss=376.7566]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 160/1000 [00:03<00:19, 42.15it/s, adv_loss=-0.7455, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7455, elbo=376.7566, epoch=159/1001, vae_loss=376.7566]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 160/1000 [00:03<00:19, 42.15it/s, adv_loss=-0.7324, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7324, elbo=373.9872, epoch=160/1001, vae_loss=373.9872]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 161/1000 [00:03<00:19, 42.15it/s, adv_loss=-0.7155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7155, elbo=379.4429, epoch=161/1001, vae_loss=379.4429]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 162/1000 [00:03<00:19, 42.15it/s, adv_loss=-0.7086, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7086, elbo=377.2178, epoch=162/1001, vae_loss=377.2178]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 163/1000 [00:03<00:19, 42.15it/s, adv_loss=-0.7016, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7016, elbo=371.4757, epoch=163/1001, vae_loss=371.4757]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 164/1000 [00:03<00:19, 42.15it/s, adv_loss=-0.6897, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6897, elbo=369.0047, epoch=164/1001, vae_loss=369.0047]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 165/1000 [00:03<00:19, 42.28it/s, adv_loss=-0.6897, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6897, elbo=369.0047, epoch=164/1001, vae_loss=369.0047]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 165/1000 [00:03<00:19, 42.28it/s, adv_loss=-0.6903, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6903, elbo=369.7255, epoch=165/1001, vae_loss=369.7255]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 166/1000 [00:03<00:19, 42.28it/s, adv_loss=-0.6875, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6875, elbo=368.4604, epoch=166/1001, vae_loss=368.4604]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 167/1000 [00:03<00:19, 42.28it/s, adv_loss=-0.6805, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6805, elbo=367.3517, epoch=167/1001, vae_loss=367.3517]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 168/1000 [00:03<00:19, 42.28it/s, adv_loss=-0.6706, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6706, elbo=369.3174, epoch=168/1001, vae_loss=369.3174]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 169/1000 [00:04<00:19, 42.28it/s, adv_loss=-0.6664, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6664, elbo=366.9333, epoch=169/1001, vae_loss=366.9333]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 170/1000 [00:04<00:19, 42.40it/s, adv_loss=-0.6664, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6664, elbo=366.9333, epoch=169/1001, vae_loss=366.9333]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 170/1000 [00:04<00:19, 42.40it/s, adv_loss=-0.6524, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6524, elbo=368.0620, epoch=170/1001, vae_loss=368.0620]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 171/1000 [00:04<00:19, 42.40it/s, adv_loss=-0.6500, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6500, elbo=368.1140, epoch=171/1001, vae_loss=368.1140]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 172/1000 [00:04<00:19, 42.40it/s, adv_loss=-0.6389, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6389, elbo=366.3247, epoch=172/1001, vae_loss=366.3247]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 173/1000 [00:04<00:19, 42.40it/s, adv_loss=-0.6296, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6296, elbo=364.9111, epoch=173/1001, vae_loss=364.9111]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 174/1000 [00:04<00:19, 42.40it/s, adv_loss=-0.6130, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6130, elbo=366.2243, epoch=174/1001, vae_loss=366.2243]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 175/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.6130, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6130, elbo=366.2243, epoch=174/1001, vae_loss=366.2243]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 175/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.6024, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6024, elbo=360.3366, epoch=175/1001, vae_loss=360.3366]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 176/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5857, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5857, elbo=361.3678, epoch=176/1001, vae_loss=361.3678]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 177/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5847, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5847, elbo=357.3416, epoch=177/1001, vae_loss=357.3416]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 178/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5717, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5717, elbo=355.0864, epoch=178/1001, vae_loss=355.0864]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 179/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5578, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5578, elbo=355.7858, epoch=179/1001, vae_loss=355.7858]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 180/1000 [00:04<00:19, 42.38it/s, adv_loss=-0.5578, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5578, elbo=355.7858, epoch=179/1001, vae_loss=355.7858]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 180/1000 [00:04<00:19, 42.38it/s, adv_loss=-0.5485, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5485, elbo=351.3743, epoch=180/1001, vae_loss=351.3743]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 181/1000 [00:04<00:19, 42.38it/s, adv_loss=-0.5420, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5420, elbo=350.1992, epoch=181/1001, vae_loss=350.1992]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 182/1000 [00:04<00:19, 42.38it/s, adv_loss=-0.5328, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5328, elbo=347.2634, epoch=182/1001, vae_loss=347.2634]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 183/1000 [00:04<00:19, 42.38it/s, adv_loss=-0.5292, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5292, elbo=344.5206, epoch=183/1001, vae_loss=344.5206]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 184/1000 [00:04<00:19, 42.38it/s, adv_loss=-0.5451, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5451, elbo=343.5374, epoch=184/1001, vae_loss=343.5374]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 185/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5451, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5451, elbo=343.5374, epoch=184/1001, vae_loss=343.5374]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 185/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5431, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5431, elbo=338.9579, epoch=185/1001, vae_loss=338.9579]
Training: Embeddings batch effect correction using adversrial training:  19%|█▊        | 186/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5490, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5490, elbo=338.7433, epoch=186/1001, vae_loss=338.7433]
Training: Embeddings batch effect correction using adversrial training:  19%|█▊        | 187/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5882, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5882, elbo=336.5737, epoch=187/1001, vae_loss=336.5737]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 188/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.5958, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5958, elbo=334.9434, epoch=188/1001, vae_loss=334.9434]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 189/1000 [00:04<00:19, 42.31it/s, adv_loss=-0.6261, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6261, elbo=336.1535, epoch=189/1001, vae_loss=336.1535]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 190/1000 [00:04<00:19, 42.63it/s, adv_loss=-0.6261, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6261, elbo=336.1535, epoch=189/1001, vae_loss=336.1535]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 190/1000 [00:04<00:19, 42.63it/s, adv_loss=-0.6767, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6767, elbo=335.6644, epoch=190/1001, vae_loss=335.6644]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 191/1000 [00:04<00:18, 42.63it/s, adv_loss=-0.6989, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6989, elbo=340.9491, epoch=191/1001, vae_loss=340.9491]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 192/1000 [00:04<00:18, 42.63it/s, adv_loss=-0.7246, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7246, elbo=341.2038, epoch=192/1001, vae_loss=341.2038]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 193/1000 [00:04<00:18, 42.63it/s, adv_loss=-0.7656, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7656, elbo=345.9425, epoch=193/1001, vae_loss=345.9425]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 194/1000 [00:04<00:18, 42.63it/s, adv_loss=-0.7327, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7327, elbo=349.6728, epoch=194/1001, vae_loss=349.6728]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 195/1000 [00:04<00:18, 42.68it/s, adv_loss=-0.7327, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7327, elbo=349.6728, epoch=194/1001, vae_loss=349.6728]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 195/1000 [00:04<00:18, 42.68it/s, adv_loss=-0.7701, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7701, elbo=352.5447, epoch=195/1001, vae_loss=352.5447]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 196/1000 [00:04<00:18, 42.68it/s, adv_loss=-0.7456, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7456, elbo=353.9021, epoch=196/1001, vae_loss=353.9021]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 197/1000 [00:04<00:18, 42.68it/s, adv_loss=-0.7386, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7386, elbo=359.0527, epoch=197/1001, vae_loss=359.0527]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 198/1000 [00:04<00:18, 42.68it/s, adv_loss=-0.7132, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7132, elbo=360.5540, epoch=198/1001, vae_loss=360.5540]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 199/1000 [00:04<00:18, 42.68it/s, adv_loss=-0.6383, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6383, elbo=361.1875, epoch=199/1001, vae_loss=361.1875]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 200/1000 [00:04<00:18, 42.43it/s, adv_loss=-0.6383, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6383, elbo=361.1875, epoch=199/1001, vae_loss=361.1875]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 200/1000 [00:04<00:18, 42.43it/s, adv_loss=-0.6004, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6004, elbo=367.3150, epoch=200/1001, vae_loss=367.3150]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 201/1000 [00:04<00:18, 42.43it/s, adv_loss=-0.5459, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5459, elbo=367.1252, epoch=201/1001, vae_loss=367.1252]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 202/1000 [00:04<00:18, 42.43it/s, adv_loss=-0.5011, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5011, elbo=366.1940, epoch=202/1001, vae_loss=366.1940]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 203/1000 [00:04<00:18, 42.43it/s, adv_loss=-0.4976, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4976, elbo=368.0750, epoch=203/1001, vae_loss=368.0750]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 204/1000 [00:04<00:18, 42.43it/s, adv_loss=-0.4970, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4970, elbo=372.6492, epoch=204/1001, vae_loss=372.6492]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 205/1000 [00:04<00:18, 42.50it/s, adv_loss=-0.4970, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4970, elbo=372.6492, epoch=204/1001, vae_loss=372.6492]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 205/1000 [00:04<00:18, 42.50it/s, adv_loss=-0.5076, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5076, elbo=380.1947, epoch=205/1001, vae_loss=380.1947]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 206/1000 [00:04<00:18, 42.50it/s, adv_loss=-0.4965, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4965, elbo=392.7212, epoch=206/1001, vae_loss=392.7212]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 207/1000 [00:04<00:18, 42.50it/s, adv_loss=-0.5289, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5289, elbo=403.9954, epoch=207/1001, vae_loss=403.9954]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 208/1000 [00:04<00:18, 42.50it/s, adv_loss=-0.5360, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5360, elbo=421.7159, epoch=208/1001, vae_loss=421.7159]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 209/1000 [00:04<00:18, 42.50it/s, adv_loss=-0.5752, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5752, elbo=429.0055, epoch=209/1001, vae_loss=429.0055]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 210/1000 [00:04<00:18, 42.45it/s, adv_loss=-0.5752, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5752, elbo=429.0055, epoch=209/1001, vae_loss=429.0055]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 210/1000 [00:04<00:18, 42.45it/s, adv_loss=-0.5632, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5632, elbo=433.4054, epoch=210/1001, vae_loss=433.4054]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 211/1000 [00:05<00:18, 42.45it/s, adv_loss=-0.5687, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5687, elbo=431.3672, epoch=211/1001, vae_loss=431.3672]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 212/1000 [00:05<00:18, 42.45it/s, adv_loss=-0.6001, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6001, elbo=423.5519, epoch=212/1001, vae_loss=423.5519]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 213/1000 [00:05<00:18, 42.45it/s, adv_loss=-0.6098, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6098, elbo=417.4203, epoch=213/1001, vae_loss=417.4203]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 214/1000 [00:05<00:18, 42.45it/s, adv_loss=-0.6623, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6623, elbo=408.6917, epoch=214/1001, vae_loss=408.6917]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 215/1000 [00:05<00:18, 42.63it/s, adv_loss=-0.6623, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6623, elbo=408.6917, epoch=214/1001, vae_loss=408.6917]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 215/1000 [00:05<00:18, 42.63it/s, adv_loss=-0.7037, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7037, elbo=401.9421, epoch=215/1001, vae_loss=401.9421]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 216/1000 [00:05<00:18, 42.63it/s, adv_loss=-0.7331, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7331, elbo=395.5915, epoch=216/1001, vae_loss=395.5915]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 217/1000 [00:05<00:18, 42.63it/s, adv_loss=-0.7417, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7417, elbo=396.2399, epoch=217/1001, vae_loss=396.2399]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 218/1000 [00:05<00:18, 42.63it/s, adv_loss=-0.7380, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7380, elbo=387.8696, epoch=218/1001, vae_loss=387.8696]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 219/1000 [00:05<00:18, 42.63it/s, adv_loss=-0.7448, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7448, elbo=380.9112, epoch=219/1001, vae_loss=380.9112]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 220/1000 [00:05<00:18, 42.43it/s, adv_loss=-0.7448, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7448, elbo=380.9112, epoch=219/1001, vae_loss=380.9112]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 220/1000 [00:05<00:18, 42.43it/s, adv_loss=-0.7469, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7469, elbo=375.7729, epoch=220/1001, vae_loss=375.7729]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 221/1000 [00:05<00:18, 42.43it/s, adv_loss=-0.7246, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7246, elbo=377.9382, epoch=221/1001, vae_loss=377.9382]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 222/1000 [00:05<00:18, 42.43it/s, adv_loss=-0.6865, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6865, elbo=376.8378, epoch=222/1001, vae_loss=376.8378]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 223/1000 [00:05<00:18, 42.43it/s, adv_loss=-0.6477, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6477, elbo=373.9212, epoch=223/1001, vae_loss=373.9212]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 224/1000 [00:05<00:18, 42.43it/s, adv_loss=-0.6443, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6443, elbo=375.5533, epoch=224/1001, vae_loss=375.5533]
Training: Embeddings batch effect correction using adversrial training:  22%|██▎       | 225/1000 [00:05<00:18, 42.51it/s, adv_loss=-0.6443, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6443, elbo=375.5533, epoch=224/1001, vae_loss=375.5533]
Training: Embeddings batch effect correction using adversrial training:  22%|██▎       | 225/1000 [00:05<00:18, 42.51it/s, adv_loss=-0.6494, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6494, elbo=375.7939, epoch=225/1001, vae_loss=375.7939]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 226/1000 [00:05<00:18, 42.51it/s, adv_loss=-0.6276, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6276, elbo=374.8464, epoch=226/1001, vae_loss=374.8464]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 227/1000 [00:05<00:18, 42.51it/s, adv_loss=-0.6504, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6504, elbo=373.8627, epoch=227/1001, vae_loss=373.8627]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 228/1000 [00:05<00:18, 42.51it/s, adv_loss=-0.6520, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6520, elbo=365.5457, epoch=228/1001, vae_loss=365.5457]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 229/1000 [00:05<00:18, 42.51it/s, adv_loss=-0.6411, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6411, elbo=362.1873, epoch=229/1001, vae_loss=362.1873]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 230/1000 [00:05<00:18, 42.48it/s, adv_loss=-0.6411, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6411, elbo=362.1873, epoch=229/1001, vae_loss=362.1873]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 230/1000 [00:05<00:18, 42.48it/s, adv_loss=-0.6398, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6398, elbo=359.9519, epoch=230/1001, vae_loss=359.9519]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 231/1000 [00:05<00:18, 42.48it/s, adv_loss=-0.6149, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6149, elbo=358.4412, epoch=231/1001, vae_loss=358.4412]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 232/1000 [00:05<00:18, 42.48it/s, adv_loss=-0.6144, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6144, elbo=354.9223, epoch=232/1001, vae_loss=354.9223]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 233/1000 [00:05<00:18, 42.48it/s, adv_loss=-0.6040, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6040, elbo=350.7680, epoch=233/1001, vae_loss=350.7680]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 234/1000 [00:05<00:18, 42.48it/s, adv_loss=-0.5856, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5856, elbo=347.2038, epoch=234/1001, vae_loss=347.2038]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 235/1000 [00:05<00:18, 42.37it/s, adv_loss=-0.5856, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5856, elbo=347.2038, epoch=234/1001, vae_loss=347.2038]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 235/1000 [00:05<00:18, 42.37it/s, adv_loss=-0.5862, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5862, elbo=343.7801, epoch=235/1001, vae_loss=343.7801]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 236/1000 [00:05<00:18, 42.37it/s, adv_loss=-0.5745, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5745, elbo=343.6947, epoch=236/1001, vae_loss=343.6947]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 237/1000 [00:05<00:18, 42.37it/s, adv_loss=-0.5793, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5793, elbo=339.2272, epoch=237/1001, vae_loss=339.2272]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 238/1000 [00:05<00:17, 42.37it/s, adv_loss=-0.5649, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5649, elbo=335.7155, epoch=238/1001, vae_loss=335.7155]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 239/1000 [00:05<00:17, 42.37it/s, adv_loss=-0.5664, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5664, elbo=333.5343, epoch=239/1001, vae_loss=333.5343]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 240/1000 [00:05<00:17, 42.24it/s, adv_loss=-0.5664, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5664, elbo=333.5343, epoch=239/1001, vae_loss=333.5343]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 240/1000 [00:05<00:17, 42.24it/s, adv_loss=-0.5541, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5541, elbo=330.1694, epoch=240/1001, vae_loss=330.1694]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 241/1000 [00:05<00:17, 42.24it/s, adv_loss=-0.5523, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5523, elbo=326.8310, epoch=241/1001, vae_loss=326.8310]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 242/1000 [00:05<00:17, 42.24it/s, adv_loss=-0.5586, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5586, elbo=325.2119, epoch=242/1001, vae_loss=325.2119]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 243/1000 [00:05<00:17, 42.24it/s, adv_loss=-0.5756, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5756, elbo=320.0573, epoch=243/1001, vae_loss=320.0573]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 244/1000 [00:05<00:17, 42.24it/s, adv_loss=-0.5742, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5742, elbo=320.5401, epoch=244/1001, vae_loss=320.5401]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 245/1000 [00:05<00:17, 42.34it/s, adv_loss=-0.5742, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5742, elbo=320.5401, epoch=244/1001, vae_loss=320.5401]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 245/1000 [00:05<00:17, 42.34it/s, adv_loss=-0.5813, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5813, elbo=318.4787, epoch=245/1001, vae_loss=318.4787]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 246/1000 [00:05<00:17, 42.34it/s, adv_loss=-0.5820, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5820, elbo=317.1745, epoch=246/1001, vae_loss=317.1745]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 247/1000 [00:05<00:17, 42.34it/s, adv_loss=-0.5841, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5841, elbo=314.5285, epoch=247/1001, vae_loss=314.5285]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 248/1000 [00:05<00:17, 42.34it/s, adv_loss=-0.5957, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5957, elbo=312.9536, epoch=248/1001, vae_loss=312.9536]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 249/1000 [00:05<00:17, 42.34it/s, adv_loss=-0.6046, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6046, elbo=311.9226, epoch=249/1001, vae_loss=311.9226]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 250/1000 [00:05<00:17, 42.57it/s, adv_loss=-0.6046, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6046, elbo=311.9226, epoch=249/1001, vae_loss=311.9226]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 250/1000 [00:05<00:17, 42.57it/s, adv_loss=-0.6001, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6001, elbo=313.4172, epoch=250/1001, vae_loss=313.4172]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 251/1000 [00:05<00:17, 42.57it/s, adv_loss=-0.5861, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5861, elbo=310.6808, epoch=251/1001, vae_loss=310.6808]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 252/1000 [00:05<00:17, 42.57it/s, adv_loss=-0.6026, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6026, elbo=310.5335, epoch=252/1001, vae_loss=310.5335]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 253/1000 [00:05<00:17, 42.57it/s, adv_loss=-0.6152, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6152, elbo=309.5342, epoch=253/1001, vae_loss=309.5342]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 254/1000 [00:06<00:17, 42.57it/s, adv_loss=-0.6180, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6180, elbo=309.7412, epoch=254/1001, vae_loss=309.7412]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 255/1000 [00:06<00:17, 42.80it/s, adv_loss=-0.6180, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6180, elbo=309.7412, epoch=254/1001, vae_loss=309.7412]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 255/1000 [00:06<00:17, 42.80it/s, adv_loss=-0.6126, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6126, elbo=309.6705, epoch=255/1001, vae_loss=309.6705]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 256/1000 [00:06<00:17, 42.80it/s, adv_loss=-0.6015, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6015, elbo=307.4227, epoch=256/1001, vae_loss=307.4227]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 257/1000 [00:06<00:17, 42.80it/s, adv_loss=-0.6259, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6259, elbo=309.3475, epoch=257/1001, vae_loss=309.3475]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 258/1000 [00:06<00:17, 42.80it/s, adv_loss=-0.6265, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6265, elbo=309.4174, epoch=258/1001, vae_loss=309.4174]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 259/1000 [00:06<00:17, 42.80it/s, adv_loss=-0.6179, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6179, elbo=310.9721, epoch=259/1001, vae_loss=310.9721]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 260/1000 [00:06<00:17, 42.67it/s, adv_loss=-0.6179, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6179, elbo=310.9721, epoch=259/1001, vae_loss=310.9721]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 260/1000 [00:06<00:17, 42.67it/s, adv_loss=-0.6256, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6256, elbo=309.1380, epoch=260/1001, vae_loss=309.1380]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 261/1000 [00:06<00:17, 42.67it/s, adv_loss=-0.6320, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6320, elbo=309.3825, epoch=261/1001, vae_loss=309.3825]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 262/1000 [00:06<00:17, 42.67it/s, adv_loss=-0.6258, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6258, elbo=308.2514, epoch=262/1001, vae_loss=308.2514]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 263/1000 [00:06<00:17, 42.67it/s, adv_loss=-0.6254, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6254, elbo=308.1212, epoch=263/1001, vae_loss=308.1212]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 264/1000 [00:06<00:17, 42.67it/s, adv_loss=-0.6207, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6207, elbo=308.1876, epoch=264/1001, vae_loss=308.1876]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 265/1000 [00:06<00:17, 42.77it/s, adv_loss=-0.6207, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6207, elbo=308.1876, epoch=264/1001, vae_loss=308.1876]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 265/1000 [00:06<00:17, 42.77it/s, adv_loss=-0.6136, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6136, elbo=311.5871, epoch=265/1001, vae_loss=311.5871]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 266/1000 [00:06<00:17, 42.77it/s, adv_loss=-0.6185, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6185, elbo=307.6832, epoch=266/1001, vae_loss=307.6832]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 267/1000 [00:06<00:17, 42.77it/s, adv_loss=-0.6066, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6066, elbo=309.4681, epoch=267/1001, vae_loss=309.4681]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 268/1000 [00:06<00:17, 42.77it/s, adv_loss=-0.6187, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6187, elbo=306.4566, epoch=268/1001, vae_loss=306.4566]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 269/1000 [00:06<00:17, 42.77it/s, adv_loss=-0.6051, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6051, elbo=306.4962, epoch=269/1001, vae_loss=306.4962]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 270/1000 [00:06<00:17, 42.70it/s, adv_loss=-0.6051, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6051, elbo=306.4962, epoch=269/1001, vae_loss=306.4962]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 270/1000 [00:06<00:17, 42.70it/s, adv_loss=-0.6004, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6004, elbo=305.0115, epoch=270/1001, vae_loss=305.0115]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 271/1000 [00:06<00:17, 42.70it/s, adv_loss=-0.5963, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5963, elbo=305.3546, epoch=271/1001, vae_loss=305.3546]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 272/1000 [00:06<00:17, 42.70it/s, adv_loss=-0.5837, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5837, elbo=306.2441, epoch=272/1001, vae_loss=306.2441]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 273/1000 [00:06<00:17, 42.70it/s, adv_loss=-0.5898, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5898, elbo=305.7407, epoch=273/1001, vae_loss=305.7407]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 274/1000 [00:06<00:17, 42.70it/s, adv_loss=-0.5882, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5882, elbo=304.6480, epoch=274/1001, vae_loss=304.6480]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 275/1000 [00:06<00:16, 42.76it/s, adv_loss=-0.5882, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5882, elbo=304.6480, epoch=274/1001, vae_loss=304.6480]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 275/1000 [00:06<00:16, 42.76it/s, adv_loss=-0.5828, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5828, elbo=303.9442, epoch=275/1001, vae_loss=303.9442]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 276/1000 [00:06<00:16, 42.76it/s, adv_loss=-0.5772, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5772, elbo=305.1821, epoch=276/1001, vae_loss=305.1821]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 277/1000 [00:06<00:16, 42.76it/s, adv_loss=-0.5795, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5795, elbo=302.8376, epoch=277/1001, vae_loss=302.8376]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 278/1000 [00:06<00:16, 42.76it/s, adv_loss=-0.5570, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5570, elbo=302.1855, epoch=278/1001, vae_loss=302.1855]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 279/1000 [00:06<00:16, 42.76it/s, adv_loss=-0.5612, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5612, elbo=303.3973, epoch=279/1001, vae_loss=303.3973]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 280/1000 [00:06<00:16, 42.58it/s, adv_loss=-0.5612, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5612, elbo=303.3973, epoch=279/1001, vae_loss=303.3973]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 280/1000 [00:06<00:16, 42.58it/s, adv_loss=-0.5545, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5545, elbo=303.1828, epoch=280/1001, vae_loss=303.1828]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 281/1000 [00:06<00:16, 42.58it/s, adv_loss=-0.5554, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5554, elbo=299.5561, epoch=281/1001, vae_loss=299.5561]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 282/1000 [00:06<00:16, 42.58it/s, adv_loss=-0.5520, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5520, elbo=300.8564, epoch=282/1001, vae_loss=300.8564]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 283/1000 [00:06<00:16, 42.58it/s, adv_loss=-0.5547, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5547, elbo=300.2536, epoch=283/1001, vae_loss=300.2536]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 284/1000 [00:06<00:16, 42.58it/s, adv_loss=-0.5472, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5472, elbo=300.8336, epoch=284/1001, vae_loss=300.8336]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 285/1000 [00:06<00:16, 42.67it/s, adv_loss=-0.5472, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5472, elbo=300.8336, epoch=284/1001, vae_loss=300.8336]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 285/1000 [00:06<00:16, 42.67it/s, adv_loss=-0.5531, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5531, elbo=299.7499, epoch=285/1001, vae_loss=299.7499]
Training: Embeddings batch effect correction using adversrial training:  29%|██▊       | 286/1000 [00:06<00:16, 42.67it/s, adv_loss=-0.5494, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5494, elbo=298.7333, epoch=286/1001, vae_loss=298.7333]
Training: Embeddings batch effect correction using adversrial training:  29%|██▊       | 287/1000 [00:06<00:16, 42.67it/s, adv_loss=-0.5402, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5402, elbo=300.1494, epoch=287/1001, vae_loss=300.1494]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 288/1000 [00:06<00:16, 42.67it/s, adv_loss=-0.5523, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5523, elbo=297.9241, epoch=288/1001, vae_loss=297.9241]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 289/1000 [00:06<00:16, 42.67it/s, adv_loss=-0.5482, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5482, elbo=298.6163, epoch=289/1001, vae_loss=298.6163]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 290/1000 [00:06<00:16, 42.49it/s, adv_loss=-0.5482, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5482, elbo=298.6163, epoch=289/1001, vae_loss=298.6163]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 290/1000 [00:06<00:16, 42.49it/s, adv_loss=-0.5448, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5448, elbo=297.7878, epoch=290/1001, vae_loss=297.7878]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 291/1000 [00:06<00:16, 42.49it/s, adv_loss=-0.5481, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5481, elbo=298.5773, epoch=291/1001, vae_loss=298.5773]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 292/1000 [00:06<00:16, 42.49it/s, adv_loss=-0.5559, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5559, elbo=298.1429, epoch=292/1001, vae_loss=298.1429]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 293/1000 [00:06<00:16, 42.49it/s, adv_loss=-0.5479, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5479, elbo=296.9366, epoch=293/1001, vae_loss=296.9366]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 294/1000 [00:06<00:16, 42.49it/s, adv_loss=-0.5540, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5540, elbo=297.8211, epoch=294/1001, vae_loss=297.8211]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 295/1000 [00:06<00:16, 42.68it/s, adv_loss=-0.5540, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5540, elbo=297.8211, epoch=294/1001, vae_loss=297.8211]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 295/1000 [00:06<00:16, 42.68it/s, adv_loss=-0.5625, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5625, elbo=298.4446, epoch=295/1001, vae_loss=298.4446]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 296/1000 [00:06<00:16, 42.68it/s, adv_loss=-0.5616, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5616, elbo=299.2670, epoch=296/1001, vae_loss=299.2670]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 297/1000 [00:07<00:16, 42.68it/s, adv_loss=-0.5579, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5579, elbo=299.9165, epoch=297/1001, vae_loss=299.9165]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 298/1000 [00:07<00:16, 42.68it/s, adv_loss=-0.5552, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5552, elbo=299.7819, epoch=298/1001, vae_loss=299.7819]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 299/1000 [00:07<00:16, 42.68it/s, adv_loss=-0.5564, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5564, elbo=299.9316, epoch=299/1001, vae_loss=299.9316]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 300/1000 [00:07<00:16, 42.79it/s, adv_loss=-0.5564, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5564, elbo=299.9316, epoch=299/1001, vae_loss=299.9316]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 300/1000 [00:07<00:16, 42.79it/s, adv_loss=-0.5695, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5695, elbo=300.3369, epoch=300/1001, vae_loss=300.3369]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 301/1000 [00:07<00:16, 42.79it/s, adv_loss=-0.5727, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5727, elbo=300.1175, epoch=301/1001, vae_loss=300.1175]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 302/1000 [00:07<00:16, 42.79it/s, adv_loss=-0.5637, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5637, elbo=303.5678, epoch=302/1001, vae_loss=303.5678]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 303/1000 [00:07<00:16, 42.79it/s, adv_loss=-0.5730, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5730, elbo=302.1677, epoch=303/1001, vae_loss=302.1677]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 304/1000 [00:07<00:16, 42.79it/s, adv_loss=-0.5542, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5542, elbo=301.0077, epoch=304/1001, vae_loss=301.0077]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 305/1000 [00:07<00:16, 42.74it/s, adv_loss=-0.5542, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5542, elbo=301.0077, epoch=304/1001, vae_loss=301.0077]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 305/1000 [00:07<00:16, 42.74it/s, adv_loss=-0.5796, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5796, elbo=301.5781, epoch=305/1001, vae_loss=301.5781]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 306/1000 [00:07<00:16, 42.74it/s, adv_loss=-0.5814, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5814, elbo=305.4221, epoch=306/1001, vae_loss=305.4221]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 307/1000 [00:07<00:16, 42.74it/s, adv_loss=-0.5769, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5769, elbo=301.7631, epoch=307/1001, vae_loss=301.7631]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 308/1000 [00:07<00:16, 42.74it/s, adv_loss=-0.5718, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5718, elbo=302.5273, epoch=308/1001, vae_loss=302.5273]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 309/1000 [00:07<00:16, 42.74it/s, adv_loss=-0.5840, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5840, elbo=302.7328, epoch=309/1001, vae_loss=302.7328]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 310/1000 [00:07<00:16, 42.83it/s, adv_loss=-0.5840, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5840, elbo=302.7328, epoch=309/1001, vae_loss=302.7328]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 310/1000 [00:07<00:16, 42.83it/s, adv_loss=-0.5621, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5621, elbo=306.4617, epoch=310/1001, vae_loss=306.4617]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 311/1000 [00:07<00:16, 42.83it/s, adv_loss=-0.5849, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5849, elbo=305.8892, epoch=311/1001, vae_loss=305.8892]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 312/1000 [00:07<00:16, 42.83it/s, adv_loss=-0.5882, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5882, elbo=307.7188, epoch=312/1001, vae_loss=307.7188]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 313/1000 [00:07<00:16, 42.83it/s, adv_loss=-0.5879, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5879, elbo=308.2210, epoch=313/1001, vae_loss=308.2210]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 314/1000 [00:07<00:16, 42.83it/s, adv_loss=-0.6002, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6002, elbo=308.2625, epoch=314/1001, vae_loss=308.2625]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 315/1000 [00:07<00:16, 42.64it/s, adv_loss=-0.6002, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6002, elbo=308.2625, epoch=314/1001, vae_loss=308.2625]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 315/1000 [00:07<00:16, 42.64it/s, adv_loss=-0.6054, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6054, elbo=306.8267, epoch=315/1001, vae_loss=306.8267]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 316/1000 [00:07<00:16, 42.64it/s, adv_loss=-0.6186, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6186, elbo=306.8791, epoch=316/1001, vae_loss=306.8791]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 317/1000 [00:07<00:16, 42.64it/s, adv_loss=-0.6109, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6109, elbo=308.6823, epoch=317/1001, vae_loss=308.6823]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 318/1000 [00:07<00:15, 42.64it/s, adv_loss=-0.6062, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6062, elbo=310.7552, epoch=318/1001, vae_loss=310.7552]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 319/1000 [00:07<00:15, 42.64it/s, adv_loss=-0.6218, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6218, elbo=310.1783, epoch=319/1001, vae_loss=310.1783]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 320/1000 [00:07<00:15, 42.84it/s, adv_loss=-0.6218, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6218, elbo=310.1783, epoch=319/1001, vae_loss=310.1783]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 320/1000 [00:07<00:15, 42.84it/s, adv_loss=-0.6179, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6179, elbo=311.5786, epoch=320/1001, vae_loss=311.5786]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 321/1000 [00:07<00:15, 42.84it/s, adv_loss=-0.6169, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6169, elbo=311.3307, epoch=321/1001, vae_loss=311.3307]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 322/1000 [00:07<00:15, 42.84it/s, adv_loss=-0.5957, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5957, elbo=312.3405, epoch=322/1001, vae_loss=312.3405]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 323/1000 [00:07<00:15, 42.84it/s, adv_loss=-0.5880, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5880, elbo=312.3005, epoch=323/1001, vae_loss=312.3005]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 324/1000 [00:07<00:15, 42.84it/s, adv_loss=-0.5985, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5985, elbo=314.2107, epoch=324/1001, vae_loss=314.2107]
Training: Embeddings batch effect correction using adversrial training:  32%|███▎      | 325/1000 [00:07<00:15, 42.65it/s, adv_loss=-0.5985, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5985, elbo=314.2107, epoch=324/1001, vae_loss=314.2107]
Training: Embeddings batch effect correction using adversrial training:  32%|███▎      | 325/1000 [00:07<00:15, 42.65it/s, adv_loss=-0.5898, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5898, elbo=316.1272, epoch=325/1001, vae_loss=316.1272]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 326/1000 [00:07<00:15, 42.65it/s, adv_loss=-0.5917, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5917, elbo=316.7255, epoch=326/1001, vae_loss=316.7255]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 327/1000 [00:07<00:15, 42.65it/s, adv_loss=-0.5863, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5863, elbo=320.6503, epoch=327/1001, vae_loss=320.6503]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 328/1000 [00:07<00:15, 42.65it/s, adv_loss=-0.5754, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5754, elbo=317.1696, epoch=328/1001, vae_loss=317.1696]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 329/1000 [00:07<00:15, 42.65it/s, adv_loss=-0.5719, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5719, elbo=314.4264, epoch=329/1001, vae_loss=314.4264]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 330/1000 [00:07<00:15, 42.90it/s, adv_loss=-0.5719, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5719, elbo=314.4264, epoch=329/1001, vae_loss=314.4264]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 330/1000 [00:07<00:15, 42.90it/s, adv_loss=-0.5648, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5648, elbo=314.2458, epoch=330/1001, vae_loss=314.2458]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 331/1000 [00:07<00:15, 42.90it/s, adv_loss=-0.5672, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5672, elbo=315.1703, epoch=331/1001, vae_loss=315.1703]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 332/1000 [00:07<00:15, 42.90it/s, adv_loss=-0.5817, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5817, elbo=315.0583, epoch=332/1001, vae_loss=315.0583]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 333/1000 [00:07<00:15, 42.90it/s, adv_loss=-0.5825, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5825, elbo=315.5227, epoch=333/1001, vae_loss=315.5227]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 334/1000 [00:07<00:15, 42.90it/s, adv_loss=-0.5676, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5676, elbo=316.6155, epoch=334/1001, vae_loss=316.6155]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 335/1000 [00:07<00:15, 43.29it/s, adv_loss=-0.5676, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5676, elbo=316.6155, epoch=334/1001, vae_loss=316.6155]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 335/1000 [00:07<00:15, 43.29it/s, adv_loss=-0.5910, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5910, elbo=316.4222, epoch=335/1001, vae_loss=316.4222]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 336/1000 [00:07<00:15, 43.29it/s, adv_loss=-0.5716, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5716, elbo=318.6334, epoch=336/1001, vae_loss=318.6334]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 337/1000 [00:07<00:15, 43.29it/s, adv_loss=-0.5761, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5761, elbo=315.6699, epoch=337/1001, vae_loss=315.6699]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 338/1000 [00:07<00:15, 43.29it/s, adv_loss=-0.5747, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5747, elbo=318.0280, epoch=338/1001, vae_loss=318.0280]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 339/1000 [00:07<00:15, 43.29it/s, adv_loss=-0.6057, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6057, elbo=316.4437, epoch=339/1001, vae_loss=316.4437]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 340/1000 [00:07<00:15, 43.70it/s, adv_loss=-0.6057, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6057, elbo=316.4437, epoch=339/1001, vae_loss=316.4437]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 340/1000 [00:08<00:15, 43.70it/s, adv_loss=-0.6110, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6110, elbo=316.7230, epoch=340/1001, vae_loss=316.7230]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 341/1000 [00:08<00:15, 43.70it/s, adv_loss=-0.5937, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5937, elbo=320.8664, epoch=341/1001, vae_loss=320.8664]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 342/1000 [00:08<00:15, 43.70it/s, adv_loss=-0.6066, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6066, elbo=320.8934, epoch=342/1001, vae_loss=320.8934]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 343/1000 [00:08<00:15, 43.70it/s, adv_loss=-0.6146, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6146, elbo=324.1931, epoch=343/1001, vae_loss=324.1931]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 344/1000 [00:08<00:15, 43.70it/s, adv_loss=-0.6230, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6230, elbo=327.2447, epoch=344/1001, vae_loss=327.2447]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 345/1000 [00:08<00:15, 43.47it/s, adv_loss=-0.6230, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6230, elbo=327.2447, epoch=344/1001, vae_loss=327.2447]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 345/1000 [00:08<00:15, 43.47it/s, adv_loss=-0.6151, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6151, elbo=326.5813, epoch=345/1001, vae_loss=326.5813]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 346/1000 [00:08<00:15, 43.47it/s, adv_loss=-0.6024, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6024, elbo=333.1665, epoch=346/1001, vae_loss=333.1665]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 347/1000 [00:08<00:15, 43.47it/s, adv_loss=-0.6123, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6123, elbo=338.8238, epoch=347/1001, vae_loss=338.8238]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 348/1000 [00:08<00:14, 43.47it/s, adv_loss=-0.5949, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5949, elbo=339.9351, epoch=348/1001, vae_loss=339.9351]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 349/1000 [00:08<00:14, 43.47it/s, adv_loss=-0.5898, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5898, elbo=341.2893, epoch=349/1001, vae_loss=341.2893]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 350/1000 [00:08<00:14, 43.57it/s, adv_loss=-0.5898, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5898, elbo=341.2893, epoch=349/1001, vae_loss=341.2893]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 350/1000 [00:08<00:14, 43.57it/s, adv_loss=-0.5888, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5888, elbo=342.0017, epoch=350/1001, vae_loss=342.0017]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 351/1000 [00:08<00:14, 43.57it/s, adv_loss=-0.5742, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5742, elbo=346.3124, epoch=351/1001, vae_loss=346.3124]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 352/1000 [00:08<00:14, 43.57it/s, adv_loss=-0.5549, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5549, elbo=350.0121, epoch=352/1001, vae_loss=350.0121]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 353/1000 [00:08<00:14, 43.57it/s, adv_loss=-0.5518, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5518, elbo=347.0708, epoch=353/1001, vae_loss=347.0708]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 354/1000 [00:08<00:14, 43.57it/s, adv_loss=-0.5420, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5420, elbo=341.0452, epoch=354/1001, vae_loss=341.0452]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 355/1000 [00:08<00:14, 43.48it/s, adv_loss=-0.5420, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5420, elbo=341.0452, epoch=354/1001, vae_loss=341.0452]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 355/1000 [00:08<00:14, 43.48it/s, adv_loss=-0.5371, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5371, elbo=338.0197, epoch=355/1001, vae_loss=338.0197]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 356/1000 [00:08<00:14, 43.48it/s, adv_loss=-0.5111, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5111, elbo=333.6176, epoch=356/1001, vae_loss=333.6176]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 357/1000 [00:08<00:14, 43.48it/s, adv_loss=-0.5471, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5471, elbo=333.8756, epoch=357/1001, vae_loss=333.8756]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 358/1000 [00:08<00:14, 43.48it/s, adv_loss=-0.5241, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5241, elbo=332.5426, epoch=358/1001, vae_loss=332.5426]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 359/1000 [00:08<00:14, 43.48it/s, adv_loss=-0.5315, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5315, elbo=336.1022, epoch=359/1001, vae_loss=336.1022]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 360/1000 [00:08<00:14, 43.56it/s, adv_loss=-0.5315, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5315, elbo=336.1022, epoch=359/1001, vae_loss=336.1022]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 360/1000 [00:08<00:14, 43.56it/s, adv_loss=-0.5451, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5451, elbo=330.6747, epoch=360/1001, vae_loss=330.6747]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 361/1000 [00:08<00:14, 43.56it/s, adv_loss=-0.5606, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5606, elbo=327.7780, epoch=361/1001, vae_loss=327.7780]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 362/1000 [00:08<00:14, 43.56it/s, adv_loss=-0.5703, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5703, elbo=331.3035, epoch=362/1001, vae_loss=331.3035]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 363/1000 [00:08<00:14, 43.56it/s, adv_loss=-0.5789, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5789, elbo=330.7726, epoch=363/1001, vae_loss=330.7726]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 364/1000 [00:08<00:14, 43.56it/s, adv_loss=-0.5787, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5787, elbo=336.0124, epoch=364/1001, vae_loss=336.0124]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 365/1000 [00:08<00:14, 43.72it/s, adv_loss=-0.5787, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5787, elbo=336.0124, epoch=364/1001, vae_loss=336.0124]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 365/1000 [00:08<00:14, 43.72it/s, adv_loss=-0.5921, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5921, elbo=336.3155, epoch=365/1001, vae_loss=336.3155]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 366/1000 [00:08<00:14, 43.72it/s, adv_loss=-0.6099, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6099, elbo=332.3611, epoch=366/1001, vae_loss=332.3611]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 367/1000 [00:08<00:14, 43.72it/s, adv_loss=-0.6155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6155, elbo=331.8881, epoch=367/1001, vae_loss=331.8881]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 368/1000 [00:08<00:14, 43.72it/s, adv_loss=-0.6264, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6264, elbo=329.9729, epoch=368/1001, vae_loss=329.9729]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 369/1000 [00:08<00:14, 43.72it/s, adv_loss=-0.6487, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6487, elbo=332.9785, epoch=369/1001, vae_loss=332.9785]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 370/1000 [00:08<00:14, 43.82it/s, adv_loss=-0.6487, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6487, elbo=332.9785, epoch=369/1001, vae_loss=332.9785]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 370/1000 [00:08<00:14, 43.82it/s, adv_loss=-0.6564, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6564, elbo=333.9243, epoch=370/1001, vae_loss=333.9243]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 371/1000 [00:08<00:14, 43.82it/s, adv_loss=-0.6389, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6389, elbo=335.9836, epoch=371/1001, vae_loss=335.9836]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 372/1000 [00:08<00:14, 43.82it/s, adv_loss=-0.6505, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6505, elbo=336.4018, epoch=372/1001, vae_loss=336.4018]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 373/1000 [00:08<00:14, 43.82it/s, adv_loss=-0.6607, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6607, elbo=335.3722, epoch=373/1001, vae_loss=335.3722]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 374/1000 [00:08<00:14, 43.82it/s, adv_loss=-0.6579, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6579, elbo=337.0802, epoch=374/1001, vae_loss=337.0802]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 375/1000 [00:08<00:14, 43.53it/s, adv_loss=-0.6579, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6579, elbo=337.0802, epoch=374/1001, vae_loss=337.0802]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 375/1000 [00:08<00:14, 43.53it/s, adv_loss=-0.6478, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6478, elbo=334.1662, epoch=375/1001, vae_loss=334.1662]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 376/1000 [00:08<00:14, 43.53it/s, adv_loss=-0.6447, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6447, elbo=333.9215, epoch=376/1001, vae_loss=333.9215]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 377/1000 [00:08<00:14, 43.53it/s, adv_loss=-0.6407, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6407, elbo=329.7310, epoch=377/1001, vae_loss=329.7310]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 378/1000 [00:08<00:14, 43.53it/s, adv_loss=-0.6268, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6268, elbo=325.3509, epoch=378/1001, vae_loss=325.3509]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 379/1000 [00:08<00:14, 43.53it/s, adv_loss=-0.6120, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6120, elbo=325.3687, epoch=379/1001, vae_loss=325.3687]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 380/1000 [00:08<00:14, 43.55it/s, adv_loss=-0.6120, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6120, elbo=325.3687, epoch=379/1001, vae_loss=325.3687]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 380/1000 [00:08<00:14, 43.55it/s, adv_loss=-0.6113, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6113, elbo=327.2390, epoch=380/1001, vae_loss=327.2390]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 381/1000 [00:08<00:14, 43.55it/s, adv_loss=-0.5940, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5940, elbo=324.0579, epoch=381/1001, vae_loss=324.0579]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 382/1000 [00:08<00:14, 43.55it/s, adv_loss=-0.5829, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5829, elbo=321.9045, epoch=382/1001, vae_loss=321.9045]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 383/1000 [00:09<00:14, 43.55it/s, adv_loss=-0.5850, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5850, elbo=322.3764, epoch=383/1001, vae_loss=322.3764]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 384/1000 [00:09<00:14, 43.55it/s, adv_loss=-0.5761, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5761, elbo=319.3022, epoch=384/1001, vae_loss=319.3022]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 385/1000 [00:09<00:14, 43.66it/s, adv_loss=-0.5761, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5761, elbo=319.3022, epoch=384/1001, vae_loss=319.3022]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 385/1000 [00:09<00:14, 43.66it/s, adv_loss=-0.5801, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5801, elbo=316.9980, epoch=385/1001, vae_loss=316.9980]
Training: Embeddings batch effect correction using adversrial training:  39%|███▊      | 386/1000 [00:09<00:14, 43.66it/s, adv_loss=-0.5724, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5724, elbo=316.0973, epoch=386/1001, vae_loss=316.0973]
Training: Embeddings batch effect correction using adversrial training:  39%|███▊      | 387/1000 [00:09<00:14, 43.66it/s, adv_loss=-0.5698, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5698, elbo=311.5670, epoch=387/1001, vae_loss=311.5670]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 388/1000 [00:09<00:14, 43.66it/s, adv_loss=-0.5783, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5783, elbo=311.3903, epoch=388/1001, vae_loss=311.3903]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 389/1000 [00:09<00:13, 43.66it/s, adv_loss=-0.5869, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5869, elbo=312.2429, epoch=389/1001, vae_loss=312.2429]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 390/1000 [00:09<00:14, 43.22it/s, adv_loss=-0.5869, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5869, elbo=312.2429, epoch=389/1001, vae_loss=312.2429]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 390/1000 [00:09<00:14, 43.22it/s, adv_loss=-0.5943, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5943, elbo=307.0558, epoch=390/1001, vae_loss=307.0558]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 391/1000 [00:09<00:14, 43.22it/s, adv_loss=-0.6046, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6046, elbo=309.4988, epoch=391/1001, vae_loss=309.4988]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 392/1000 [00:09<00:14, 43.22it/s, adv_loss=-0.6310, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6310, elbo=307.1990, epoch=392/1001, vae_loss=307.1990]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 393/1000 [00:09<00:14, 43.22it/s, adv_loss=-0.6526, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6526, elbo=308.1803, epoch=393/1001, vae_loss=308.1803]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 394/1000 [00:09<00:14, 43.22it/s, adv_loss=-0.6694, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6694, elbo=308.6844, epoch=394/1001, vae_loss=308.6844]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 395/1000 [00:09<00:14, 42.71it/s, adv_loss=-0.6694, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6694, elbo=308.6844, epoch=394/1001, vae_loss=308.6844]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 395/1000 [00:09<00:14, 42.71it/s, adv_loss=-0.6874, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6874, elbo=308.1127, epoch=395/1001, vae_loss=308.1127]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 396/1000 [00:09<00:14, 42.71it/s, adv_loss=-0.7057, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7057, elbo=307.7742, epoch=396/1001, vae_loss=307.7742]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 397/1000 [00:09<00:14, 42.71it/s, adv_loss=-0.7007, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7007, elbo=307.7195, epoch=397/1001, vae_loss=307.7195]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 398/1000 [00:09<00:14, 42.71it/s, adv_loss=-0.7138, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7138, elbo=307.8058, epoch=398/1001, vae_loss=307.8058]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 399/1000 [00:09<00:14, 42.71it/s, adv_loss=-0.7107, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7107, elbo=311.8950, epoch=399/1001, vae_loss=311.8950]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 400/1000 [00:09<00:13, 42.92it/s, adv_loss=-0.7107, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7107, elbo=311.8950, epoch=399/1001, vae_loss=311.8950]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 400/1000 [00:09<00:13, 42.92it/s, adv_loss=-0.7173, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7173, elbo=310.5457, epoch=400/1001, vae_loss=310.5457]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 401/1000 [00:09<00:13, 42.92it/s, adv_loss=-0.7051, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7051, elbo=309.9127, epoch=401/1001, vae_loss=309.9127]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 402/1000 [00:09<00:13, 42.92it/s, adv_loss=-0.6913, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6913, elbo=310.8898, epoch=402/1001, vae_loss=310.8898]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 403/1000 [00:09<00:13, 42.92it/s, adv_loss=-0.6891, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6891, elbo=310.9255, epoch=403/1001, vae_loss=310.9255]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 404/1000 [00:09<00:13, 42.92it/s, adv_loss=-0.6640, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6640, elbo=311.9265, epoch=404/1001, vae_loss=311.9265]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 405/1000 [00:09<00:13, 43.15it/s, adv_loss=-0.6640, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6640, elbo=311.9265, epoch=404/1001, vae_loss=311.9265]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 405/1000 [00:09<00:13, 43.15it/s, adv_loss=-0.6312, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6312, elbo=313.2702, epoch=405/1001, vae_loss=313.2702]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 406/1000 [00:09<00:13, 43.15it/s, adv_loss=-0.6182, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6182, elbo=311.8635, epoch=406/1001, vae_loss=311.8635]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 407/1000 [00:09<00:13, 43.15it/s, adv_loss=-0.5891, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5891, elbo=313.9931, epoch=407/1001, vae_loss=313.9931]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 408/1000 [00:09<00:13, 43.15it/s, adv_loss=-0.5688, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5688, elbo=314.5560, epoch=408/1001, vae_loss=314.5560]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 409/1000 [00:09<00:13, 43.15it/s, adv_loss=-0.5489, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5489, elbo=313.9487, epoch=409/1001, vae_loss=313.9487]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 410/1000 [00:09<00:13, 43.09it/s, adv_loss=-0.5489, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5489, elbo=313.9487, epoch=409/1001, vae_loss=313.9487]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 410/1000 [00:09<00:13, 43.09it/s, adv_loss=-0.5290, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5290, elbo=316.5657, epoch=410/1001, vae_loss=316.5657]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 411/1000 [00:09<00:13, 43.09it/s, adv_loss=-0.5183, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5183, elbo=317.3128, epoch=411/1001, vae_loss=317.3128]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 412/1000 [00:09<00:13, 43.09it/s, adv_loss=-0.5008, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5008, elbo=315.8580, epoch=412/1001, vae_loss=315.8580]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 413/1000 [00:09<00:13, 43.09it/s, adv_loss=-0.5019, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5019, elbo=314.4464, epoch=413/1001, vae_loss=314.4464]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 414/1000 [00:09<00:13, 43.09it/s, adv_loss=-0.4872, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4872, elbo=314.8965, epoch=414/1001, vae_loss=314.8965]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 415/1000 [00:09<00:13, 42.77it/s, adv_loss=-0.4872, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4872, elbo=314.8965, epoch=414/1001, vae_loss=314.8965]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 415/1000 [00:09<00:13, 42.77it/s, adv_loss=-0.4715, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4715, elbo=313.7688, epoch=415/1001, vae_loss=313.7688]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 416/1000 [00:09<00:13, 42.77it/s, adv_loss=-0.4743, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4743, elbo=312.0948, epoch=416/1001, vae_loss=312.0948]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 417/1000 [00:09<00:13, 42.77it/s, adv_loss=-0.4740, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4740, elbo=310.0093, epoch=417/1001, vae_loss=310.0093]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 418/1000 [00:09<00:13, 42.77it/s, adv_loss=-0.4727, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4727, elbo=307.8793, epoch=418/1001, vae_loss=307.8793]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 419/1000 [00:09<00:13, 42.77it/s, adv_loss=-0.4739, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4739, elbo=305.8724, epoch=419/1001, vae_loss=305.8724]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 420/1000 [00:09<00:13, 43.08it/s, adv_loss=-0.4739, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4739, elbo=305.8724, epoch=419/1001, vae_loss=305.8724]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 420/1000 [00:09<00:13, 43.08it/s, adv_loss=-0.4834, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4834, elbo=308.0418, epoch=420/1001, vae_loss=308.0418]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 421/1000 [00:09<00:13, 43.08it/s, adv_loss=-0.5030, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5030, elbo=306.0669, epoch=421/1001, vae_loss=306.0669]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 422/1000 [00:09<00:13, 43.08it/s, adv_loss=-0.5085, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5085, elbo=304.3232, epoch=422/1001, vae_loss=304.3232]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 423/1000 [00:09<00:13, 43.08it/s, adv_loss=-0.5345, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5345, elbo=306.7010, epoch=423/1001, vae_loss=306.7010]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 424/1000 [00:09<00:13, 43.08it/s, adv_loss=-0.5519, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5519, elbo=305.1425, epoch=424/1001, vae_loss=305.1425]
Training: Embeddings batch effect correction using adversrial training:  42%|████▎     | 425/1000 [00:09<00:13, 43.46it/s, adv_loss=-0.5519, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5519, elbo=305.1425, epoch=424/1001, vae_loss=305.1425]
Training: Embeddings batch effect correction using adversrial training:  42%|████▎     | 425/1000 [00:09<00:13, 43.46it/s, adv_loss=-0.5819, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5819, elbo=304.4063, epoch=425/1001, vae_loss=304.4063]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 426/1000 [00:10<00:13, 43.46it/s, adv_loss=-0.6169, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6169, elbo=307.5351, epoch=426/1001, vae_loss=307.5351]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 427/1000 [00:10<00:13, 43.46it/s, adv_loss=-0.6297, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6297, elbo=307.1311, epoch=427/1001, vae_loss=307.1311]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 428/1000 [00:10<00:13, 43.46it/s, adv_loss=-0.6712, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6712, elbo=308.9251, epoch=428/1001, vae_loss=308.9251]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 429/1000 [00:10<00:13, 43.46it/s, adv_loss=-0.6733, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6733, elbo=315.0873, epoch=429/1001, vae_loss=315.0873]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 430/1000 [00:10<00:13, 43.61it/s, adv_loss=-0.6733, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6733, elbo=315.0873, epoch=429/1001, vae_loss=315.0873]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 430/1000 [00:10<00:13, 43.61it/s, adv_loss=-0.7087, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7087, elbo=316.2859, epoch=430/1001, vae_loss=316.2859]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 431/1000 [00:10<00:13, 43.61it/s, adv_loss=-0.7334, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7334, elbo=326.5326, epoch=431/1001, vae_loss=326.5326]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 432/1000 [00:10<00:13, 43.61it/s, adv_loss=-0.7616, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7616, elbo=333.4099, epoch=432/1001, vae_loss=333.4099]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 433/1000 [00:10<00:13, 43.61it/s, adv_loss=-0.7637, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7637, elbo=339.1589, epoch=433/1001, vae_loss=339.1589]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 434/1000 [00:10<00:12, 43.61it/s, adv_loss=-0.7544, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7544, elbo=351.8165, epoch=434/1001, vae_loss=351.8165]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 435/1000 [00:10<00:12, 43.73it/s, adv_loss=-0.7544, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7544, elbo=351.8165, epoch=434/1001, vae_loss=351.8165]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 435/1000 [00:10<00:12, 43.73it/s, adv_loss=-0.7507, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7507, elbo=352.0067, epoch=435/1001, vae_loss=352.0067]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 436/1000 [00:10<00:12, 43.73it/s, adv_loss=-0.7430, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7430, elbo=346.9460, epoch=436/1001, vae_loss=346.9460]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 437/1000 [00:10<00:12, 43.73it/s, adv_loss=-0.7194, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7194, elbo=350.0983, epoch=437/1001, vae_loss=350.0983]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 438/1000 [00:10<00:12, 43.73it/s, adv_loss=-0.7111, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.7111, elbo=346.0269, epoch=438/1001, vae_loss=346.0269]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 439/1000 [00:10<00:12, 43.73it/s, adv_loss=-0.6961, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6961, elbo=350.3256, epoch=439/1001, vae_loss=350.3256]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 440/1000 [00:10<00:12, 43.70it/s, adv_loss=-0.6961, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6961, elbo=350.3256, epoch=439/1001, vae_loss=350.3256]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 440/1000 [00:10<00:12, 43.70it/s, adv_loss=-0.6822, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6822, elbo=344.4756, epoch=440/1001, vae_loss=344.4756]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 441/1000 [00:10<00:12, 43.70it/s, adv_loss=-0.6728, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6728, elbo=343.5760, epoch=441/1001, vae_loss=343.5760]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 442/1000 [00:10<00:12, 43.70it/s, adv_loss=-0.6510, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6510, elbo=341.3201, epoch=442/1001, vae_loss=341.3201]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 443/1000 [00:10<00:12, 43.70it/s, adv_loss=-0.6360, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6360, elbo=337.6261, epoch=443/1001, vae_loss=337.6261]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 444/1000 [00:10<00:12, 43.70it/s, adv_loss=-0.6195, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6195, elbo=339.4029, epoch=444/1001, vae_loss=339.4029]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 445/1000 [00:10<00:12, 43.66it/s, adv_loss=-0.6195, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6195, elbo=339.4029, epoch=444/1001, vae_loss=339.4029]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 445/1000 [00:10<00:12, 43.66it/s, adv_loss=-0.6022, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6022, elbo=330.3065, epoch=445/1001, vae_loss=330.3065]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 446/1000 [00:10<00:12, 43.66it/s, adv_loss=-0.5925, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5925, elbo=325.5145, epoch=446/1001, vae_loss=325.5145]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 447/1000 [00:10<00:12, 43.66it/s, adv_loss=-0.5818, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5818, elbo=324.6802, epoch=447/1001, vae_loss=324.6802]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 448/1000 [00:10<00:12, 43.66it/s, adv_loss=-0.5717, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5717, elbo=317.1451, epoch=448/1001, vae_loss=317.1451]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 449/1000 [00:10<00:12, 43.66it/s, adv_loss=-0.5546, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5546, elbo=315.1658, epoch=449/1001, vae_loss=315.1658]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 450/1000 [00:10<00:12, 43.81it/s, adv_loss=-0.5546, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5546, elbo=315.1658, epoch=449/1001, vae_loss=315.1658]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 450/1000 [00:10<00:12, 43.81it/s, adv_loss=-0.5457, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5457, elbo=313.7042, epoch=450/1001, vae_loss=313.7042]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 451/1000 [00:10<00:12, 43.81it/s, adv_loss=-0.5401, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5401, elbo=311.1894, epoch=451/1001, vae_loss=311.1894]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 452/1000 [00:10<00:12, 43.81it/s, adv_loss=-0.5291, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5291, elbo=308.2889, epoch=452/1001, vae_loss=308.2889]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 453/1000 [00:10<00:12, 43.81it/s, adv_loss=-0.5258, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5258, elbo=304.8516, epoch=453/1001, vae_loss=304.8516]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 454/1000 [00:10<00:12, 43.81it/s, adv_loss=-0.5292, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5292, elbo=302.6924, epoch=454/1001, vae_loss=302.6924]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 455/1000 [00:10<00:12, 44.05it/s, adv_loss=-0.5292, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5292, elbo=302.6924, epoch=454/1001, vae_loss=302.6924]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 455/1000 [00:10<00:12, 44.05it/s, adv_loss=-0.5329, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5329, elbo=301.4252, epoch=455/1001, vae_loss=301.4252]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 456/1000 [00:10<00:12, 44.05it/s, adv_loss=-0.5247, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5247, elbo=299.8339, epoch=456/1001, vae_loss=299.8339]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 457/1000 [00:10<00:12, 44.05it/s, adv_loss=-0.5204, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5204, elbo=298.8235, epoch=457/1001, vae_loss=298.8235]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 458/1000 [00:10<00:12, 44.05it/s, adv_loss=-0.5156, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5156, elbo=295.6574, epoch=458/1001, vae_loss=295.6574]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 459/1000 [00:10<00:12, 44.05it/s, adv_loss=-0.5302, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5302, elbo=294.1756, epoch=459/1001, vae_loss=294.1756]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 460/1000 [00:10<00:12, 43.91it/s, adv_loss=-0.5302, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5302, elbo=294.1756, epoch=459/1001, vae_loss=294.1756]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 460/1000 [00:10<00:12, 43.91it/s, adv_loss=-0.5278, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5278, elbo=295.9228, epoch=460/1001, vae_loss=295.9228]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 461/1000 [00:10<00:12, 43.91it/s, adv_loss=-0.5386, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5386, elbo=294.9832, epoch=461/1001, vae_loss=294.9832]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 462/1000 [00:10<00:12, 43.91it/s, adv_loss=-0.5418, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5418, elbo=295.8459, epoch=462/1001, vae_loss=295.8459]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 463/1000 [00:10<00:12, 43.91it/s, adv_loss=-0.5494, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5494, elbo=293.8571, epoch=463/1001, vae_loss=293.8571]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 464/1000 [00:10<00:12, 43.91it/s, adv_loss=-0.5669, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5669, elbo=295.7420, epoch=464/1001, vae_loss=295.7420]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 465/1000 [00:10<00:12, 43.24it/s, adv_loss=-0.5669, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5669, elbo=295.7420, epoch=464/1001, vae_loss=295.7420]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 465/1000 [00:10<00:12, 43.24it/s, adv_loss=-0.5551, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5551, elbo=295.3712, epoch=465/1001, vae_loss=295.3712]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 466/1000 [00:10<00:12, 43.24it/s, adv_loss=-0.5725, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5725, elbo=298.7928, epoch=466/1001, vae_loss=298.7928]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 467/1000 [00:10<00:12, 43.24it/s, adv_loss=-0.5768, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5768, elbo=297.4833, epoch=467/1001, vae_loss=297.4833]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 468/1000 [00:10<00:12, 43.24it/s, adv_loss=-0.5802, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5802, elbo=298.2108, epoch=468/1001, vae_loss=298.2108]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 469/1000 [00:10<00:12, 43.24it/s, adv_loss=-0.5909, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5909, elbo=298.0137, epoch=469/1001, vae_loss=298.0137]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 470/1000 [00:10<00:12, 43.50it/s, adv_loss=-0.5909, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5909, elbo=298.0137, epoch=469/1001, vae_loss=298.0137]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 470/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5890, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5890, elbo=297.3730, epoch=470/1001, vae_loss=297.3730]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 471/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5941, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5941, elbo=297.4325, epoch=471/1001, vae_loss=297.4325]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 472/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5980, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5980, elbo=296.7222, epoch=472/1001, vae_loss=296.7222]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 473/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5905, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5905, elbo=297.8608, epoch=473/1001, vae_loss=297.8608]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 474/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5964, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5964, elbo=296.2609, epoch=474/1001, vae_loss=296.2609]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 475/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5964, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5964, elbo=296.2609, epoch=474/1001, vae_loss=296.2609]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 475/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5880, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5880, elbo=297.1250, epoch=475/1001, vae_loss=297.1250]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 476/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5975, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5975, elbo=295.7165, epoch=476/1001, vae_loss=295.7165]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 477/1000 [00:11<00:12, 43.50it/s, adv_loss=-0.5989, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5989, elbo=295.1794, epoch=477/1001, vae_loss=295.1794]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 478/1000 [00:11<00:11, 43.50it/s, adv_loss=-0.5974, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5974, elbo=292.9294, epoch=478/1001, vae_loss=292.9294]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 479/1000 [00:11<00:11, 43.50it/s, adv_loss=-0.5998, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5998, elbo=292.6576, epoch=479/1001, vae_loss=292.6576]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 480/1000 [00:11<00:12, 42.85it/s, adv_loss=-0.5998, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5998, elbo=292.6576, epoch=479/1001, vae_loss=292.6576]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 480/1000 [00:11<00:12, 42.85it/s, adv_loss=-0.6044, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6044, elbo=294.8167, epoch=480/1001, vae_loss=294.8167]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 481/1000 [00:11<00:12, 42.85it/s, adv_loss=-0.6067, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6067, elbo=293.3347, epoch=481/1001, vae_loss=293.3347]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 482/1000 [00:11<00:12, 42.85it/s, adv_loss=-0.6084, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6084, elbo=292.7719, epoch=482/1001, vae_loss=292.7719]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 483/1000 [00:11<00:12, 42.85it/s, adv_loss=-0.6061, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6061, elbo=292.3137, epoch=483/1001, vae_loss=292.3137]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 484/1000 [00:11<00:12, 42.85it/s, adv_loss=-0.6104, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6104, elbo=291.2318, epoch=484/1001, vae_loss=291.2318]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 485/1000 [00:11<00:11, 43.20it/s, adv_loss=-0.6104, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6104, elbo=291.2318, epoch=484/1001, vae_loss=291.2318]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 485/1000 [00:11<00:11, 43.20it/s, adv_loss=-0.6122, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6122, elbo=292.8455, epoch=485/1001, vae_loss=292.8455]
Training: Embeddings batch effect correction using adversrial training:  49%|████▊     | 486/1000 [00:11<00:11, 43.20it/s, adv_loss=-0.6170, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6170, elbo=292.4825, epoch=486/1001, vae_loss=292.4825]
Training: Embeddings batch effect correction using adversrial training:  49%|████▊     | 487/1000 [00:11<00:11, 43.20it/s, adv_loss=-0.6183, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6183, elbo=290.7259, epoch=487/1001, vae_loss=290.7259]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 488/1000 [00:11<00:11, 43.20it/s, adv_loss=-0.6205, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6205, elbo=291.0099, epoch=488/1001, vae_loss=291.0099]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 489/1000 [00:11<00:11, 43.20it/s, adv_loss=-0.6196, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6196, elbo=290.0431, epoch=489/1001, vae_loss=290.0431]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 490/1000 [00:11<00:11, 43.27it/s, adv_loss=-0.6196, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6196, elbo=290.0431, epoch=489/1001, vae_loss=290.0431]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 490/1000 [00:11<00:11, 43.27it/s, adv_loss=-0.6185, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6185, elbo=290.3026, epoch=490/1001, vae_loss=290.3026]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 491/1000 [00:11<00:11, 43.27it/s, adv_loss=-0.6238, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6238, elbo=289.6863, epoch=491/1001, vae_loss=289.6863]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 492/1000 [00:11<00:11, 43.27it/s, adv_loss=-0.6237, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6237, elbo=289.7139, epoch=492/1001, vae_loss=289.7139]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 493/1000 [00:11<00:11, 43.27it/s, adv_loss=-0.6236, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6236, elbo=288.6527, epoch=493/1001, vae_loss=288.6527]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 494/1000 [00:11<00:11, 43.27it/s, adv_loss=-0.6239, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6239, elbo=290.6752, epoch=494/1001, vae_loss=290.6752]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 495/1000 [00:11<00:11, 43.30it/s, adv_loss=-0.6239, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6239, elbo=290.6752, epoch=494/1001, vae_loss=290.6752]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 495/1000 [00:11<00:11, 43.30it/s, adv_loss=-0.6199, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6199, elbo=289.4949, epoch=495/1001, vae_loss=289.4949]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 496/1000 [00:11<00:11, 43.30it/s, adv_loss=-0.6213, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6213, elbo=292.8412, epoch=496/1001, vae_loss=292.8412]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 497/1000 [00:11<00:11, 43.30it/s, adv_loss=-0.6177, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6177, elbo=292.1042, epoch=497/1001, vae_loss=292.1042]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 498/1000 [00:11<00:11, 43.30it/s, adv_loss=-0.6149, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6149, elbo=294.5204, epoch=498/1001, vae_loss=294.5204]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 499/1000 [00:11<00:11, 43.30it/s, adv_loss=-0.6192, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6192, elbo=291.3531, epoch=499/1001, vae_loss=291.3531]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 500/1000 [00:11<00:11, 43.31it/s, adv_loss=-0.6192, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6192, elbo=291.3531, epoch=499/1001, vae_loss=291.3531]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 500/1000 [00:11<00:11, 43.31it/s, adv_loss=-0.6163, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6163, elbo=290.4677, epoch=500/1001, vae_loss=290.4677]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 501/1000 [00:11<00:11, 43.31it/s, adv_loss=-0.6107, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6107, elbo=291.9667, epoch=501/1001, vae_loss=291.9667]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 502/1000 [00:11<00:11, 43.31it/s, adv_loss=-0.6120, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6120, elbo=293.5856, epoch=502/1001, vae_loss=293.5856]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 503/1000 [00:11<00:11, 43.31it/s, adv_loss=-0.6045, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6045, elbo=292.3176, epoch=503/1001, vae_loss=292.3176]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 504/1000 [00:11<00:11, 43.31it/s, adv_loss=-0.6030, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6030, elbo=292.0019, epoch=504/1001, vae_loss=292.0019]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 505/1000 [00:11<00:11, 43.42it/s, adv_loss=-0.6030, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6030, elbo=292.0019, epoch=504/1001, vae_loss=292.0019]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 505/1000 [00:11<00:11, 43.42it/s, adv_loss=-0.6046, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6046, elbo=291.9094, epoch=505/1001, vae_loss=291.9094]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 506/1000 [00:11<00:11, 43.42it/s, adv_loss=-0.5955, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5955, elbo=292.8552, epoch=506/1001, vae_loss=292.8552]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 507/1000 [00:11<00:11, 43.42it/s, adv_loss=-0.5961, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5961, elbo=293.7025, epoch=507/1001, vae_loss=293.7025]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 508/1000 [00:11<00:11, 43.42it/s, adv_loss=-0.5922, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5922, elbo=293.9980, epoch=508/1001, vae_loss=293.9980]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 509/1000 [00:11<00:11, 43.42it/s, adv_loss=-0.5816, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5816, elbo=293.3379, epoch=509/1001, vae_loss=293.3379]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 510/1000 [00:11<00:11, 43.79it/s, adv_loss=-0.5816, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5816, elbo=293.3379, epoch=509/1001, vae_loss=293.3379]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 510/1000 [00:11<00:11, 43.79it/s, adv_loss=-0.5783, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5783, elbo=292.4125, epoch=510/1001, vae_loss=292.4125]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 511/1000 [00:11<00:11, 43.79it/s, adv_loss=-0.5743, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5743, elbo=293.6320, epoch=511/1001, vae_loss=293.6320]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 512/1000 [00:11<00:11, 43.79it/s, adv_loss=-0.5707, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5707, elbo=291.8515, epoch=512/1001, vae_loss=291.8515]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 513/1000 [00:11<00:11, 43.79it/s, adv_loss=-0.5697, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5697, elbo=292.3585, epoch=513/1001, vae_loss=292.3585]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 514/1000 [00:12<00:11, 43.79it/s, adv_loss=-0.5680, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5680, elbo=292.9856, epoch=514/1001, vae_loss=292.9856]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 515/1000 [00:12<00:11, 44.02it/s, adv_loss=-0.5680, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5680, elbo=292.9856, epoch=514/1001, vae_loss=292.9856]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 515/1000 [00:12<00:11, 44.02it/s, adv_loss=-0.5588, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5588, elbo=291.7191, epoch=515/1001, vae_loss=291.7191]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 516/1000 [00:12<00:10, 44.02it/s, adv_loss=-0.5589, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5589, elbo=292.1447, epoch=516/1001, vae_loss=292.1447]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 517/1000 [00:12<00:10, 44.02it/s, adv_loss=-0.5564, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5564, elbo=290.1661, epoch=517/1001, vae_loss=290.1661]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 518/1000 [00:12<00:10, 44.02it/s, adv_loss=-0.5555, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5555, elbo=290.8058, epoch=518/1001, vae_loss=290.8058]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 519/1000 [00:12<00:10, 44.02it/s, adv_loss=-0.5483, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5483, elbo=288.6952, epoch=519/1001, vae_loss=288.6952]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 520/1000 [00:12<00:10, 43.95it/s, adv_loss=-0.5483, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5483, elbo=288.6952, epoch=519/1001, vae_loss=288.6952]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 520/1000 [00:12<00:10, 43.95it/s, adv_loss=-0.5445, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5445, elbo=288.4880, epoch=520/1001, vae_loss=288.4880]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 521/1000 [00:12<00:10, 43.95it/s, adv_loss=-0.5435, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5435, elbo=288.3807, epoch=521/1001, vae_loss=288.3807]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 522/1000 [00:12<00:10, 43.95it/s, adv_loss=-0.5397, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5397, elbo=288.2094, epoch=522/1001, vae_loss=288.2094]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 523/1000 [00:12<00:10, 43.95it/s, adv_loss=-0.5394, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5394, elbo=286.8782, epoch=523/1001, vae_loss=286.8782]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 524/1000 [00:12<00:10, 43.95it/s, adv_loss=-0.5356, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5356, elbo=285.6044, epoch=524/1001, vae_loss=285.6044]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▎    | 525/1000 [00:12<00:10, 43.55it/s, adv_loss=-0.5356, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5356, elbo=285.6044, epoch=524/1001, vae_loss=285.6044]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▎    | 525/1000 [00:12<00:10, 43.55it/s, adv_loss=-0.5318, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5318, elbo=284.9984, epoch=525/1001, vae_loss=284.9984]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 526/1000 [00:12<00:10, 43.55it/s, adv_loss=-0.5363, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5363, elbo=285.3873, epoch=526/1001, vae_loss=285.3873]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 527/1000 [00:12<00:10, 43.55it/s, adv_loss=-0.5274, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5274, elbo=282.8762, epoch=527/1001, vae_loss=282.8762]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 528/1000 [00:12<00:10, 43.55it/s, adv_loss=-0.5319, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5319, elbo=283.9952, epoch=528/1001, vae_loss=283.9952]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 529/1000 [00:12<00:10, 43.55it/s, adv_loss=-0.5315, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5315, elbo=284.1706, epoch=529/1001, vae_loss=284.1706]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 530/1000 [00:12<00:10, 43.51it/s, adv_loss=-0.5315, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5315, elbo=284.1706, epoch=529/1001, vae_loss=284.1706]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 530/1000 [00:12<00:10, 43.51it/s, adv_loss=-0.5370, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5370, elbo=284.2030, epoch=530/1001, vae_loss=284.2030]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 531/1000 [00:12<00:10, 43.51it/s, adv_loss=-0.5443, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5443, elbo=282.5987, epoch=531/1001, vae_loss=282.5987]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 532/1000 [00:12<00:10, 43.51it/s, adv_loss=-0.5363, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5363, elbo=282.2896, epoch=532/1001, vae_loss=282.2896]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 533/1000 [00:12<00:10, 43.51it/s, adv_loss=-0.5364, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5364, elbo=282.6194, epoch=533/1001, vae_loss=282.6194]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 534/1000 [00:12<00:10, 43.51it/s, adv_loss=-0.5386, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5386, elbo=283.0879, epoch=534/1001, vae_loss=283.0879]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 535/1000 [00:12<00:10, 43.59it/s, adv_loss=-0.5386, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5386, elbo=283.0879, epoch=534/1001, vae_loss=283.0879]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 535/1000 [00:12<00:10, 43.59it/s, adv_loss=-0.5379, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5379, elbo=284.3763, epoch=535/1001, vae_loss=284.3763]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 536/1000 [00:12<00:10, 43.59it/s, adv_loss=-0.5486, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5486, elbo=282.7004, epoch=536/1001, vae_loss=282.7004]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 537/1000 [00:12<00:10, 43.59it/s, adv_loss=-0.5595, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5595, elbo=283.6589, epoch=537/1001, vae_loss=283.6589]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 538/1000 [00:12<00:10, 43.59it/s, adv_loss=-0.5644, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5644, elbo=283.6702, epoch=538/1001, vae_loss=283.6702]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 539/1000 [00:12<00:10, 43.59it/s, adv_loss=-0.5643, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5643, elbo=284.4656, epoch=539/1001, vae_loss=284.4656]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 540/1000 [00:12<00:10, 43.34it/s, adv_loss=-0.5643, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5643, elbo=284.4656, epoch=539/1001, vae_loss=284.4656]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 540/1000 [00:12<00:10, 43.34it/s, adv_loss=-0.5692, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5692, elbo=285.9932, epoch=540/1001, vae_loss=285.9932]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 541/1000 [00:12<00:10, 43.34it/s, adv_loss=-0.5797, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5797, elbo=285.8439, epoch=541/1001, vae_loss=285.8439]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 542/1000 [00:12<00:10, 43.34it/s, adv_loss=-0.5804, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5804, elbo=287.4564, epoch=542/1001, vae_loss=287.4564]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 543/1000 [00:12<00:10, 43.34it/s, adv_loss=-0.5869, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5869, elbo=287.5682, epoch=543/1001, vae_loss=287.5682]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 544/1000 [00:12<00:10, 43.34it/s, adv_loss=-0.5770, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5770, elbo=289.7200, epoch=544/1001, vae_loss=289.7200]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 545/1000 [00:12<00:10, 43.40it/s, adv_loss=-0.5770, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5770, elbo=289.7200, epoch=544/1001, vae_loss=289.7200]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 545/1000 [00:12<00:10, 43.40it/s, adv_loss=-0.5854, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5854, elbo=290.6597, epoch=545/1001, vae_loss=290.6597]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 546/1000 [00:12<00:10, 43.40it/s, adv_loss=-0.5627, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5627, elbo=290.9168, epoch=546/1001, vae_loss=290.9168]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 547/1000 [00:12<00:10, 43.40it/s, adv_loss=-0.5684, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5684, elbo=291.7962, epoch=547/1001, vae_loss=291.7962]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 548/1000 [00:12<00:10, 43.40it/s, adv_loss=-0.5731, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5731, elbo=292.3844, epoch=548/1001, vae_loss=292.3844]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 549/1000 [00:12<00:10, 43.40it/s, adv_loss=-0.5583, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5583, elbo=293.3303, epoch=549/1001, vae_loss=293.3303]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 550/1000 [00:12<00:10, 43.46it/s, adv_loss=-0.5583, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5583, elbo=293.3303, epoch=549/1001, vae_loss=293.3303]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 550/1000 [00:12<00:10, 43.46it/s, adv_loss=-0.5452, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5452, elbo=292.5927, epoch=550/1001, vae_loss=292.5927]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 551/1000 [00:12<00:10, 43.46it/s, adv_loss=-0.5475, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5475, elbo=292.9627, epoch=551/1001, vae_loss=292.9627]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 552/1000 [00:12<00:10, 43.46it/s, adv_loss=-0.5357, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5357, elbo=293.2806, epoch=552/1001, vae_loss=293.2806]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 553/1000 [00:12<00:10, 43.46it/s, adv_loss=-0.5403, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5403, elbo=292.1796, epoch=553/1001, vae_loss=292.1796]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 554/1000 [00:12<00:10, 43.46it/s, adv_loss=-0.5343, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5343, elbo=293.0229, epoch=554/1001, vae_loss=293.0229]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 555/1000 [00:12<00:10, 43.54it/s, adv_loss=-0.5343, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5343, elbo=293.0229, epoch=554/1001, vae_loss=293.0229]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 555/1000 [00:12<00:10, 43.54it/s, adv_loss=-0.5371, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5371, elbo=292.9785, epoch=555/1001, vae_loss=292.9785]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 556/1000 [00:12<00:10, 43.54it/s, adv_loss=-0.5375, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5375, elbo=295.3038, epoch=556/1001, vae_loss=295.3038]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 557/1000 [00:13<00:10, 43.54it/s, adv_loss=-0.5408, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5408, elbo=292.9189, epoch=557/1001, vae_loss=292.9189]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 558/1000 [00:13<00:10, 43.54it/s, adv_loss=-0.5575, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5575, elbo=293.8405, epoch=558/1001, vae_loss=293.8405]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 559/1000 [00:13<00:10, 43.54it/s, adv_loss=-0.5640, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5640, elbo=294.8761, epoch=559/1001, vae_loss=294.8761]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 560/1000 [00:13<00:10, 43.48it/s, adv_loss=-0.5640, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5640, elbo=294.8761, epoch=559/1001, vae_loss=294.8761]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 560/1000 [00:13<00:10, 43.48it/s, adv_loss=-0.5777, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5777, elbo=295.0672, epoch=560/1001, vae_loss=295.0672]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 561/1000 [00:13<00:10, 43.48it/s, adv_loss=-0.6030, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6030, elbo=297.5950, epoch=561/1001, vae_loss=297.5950]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 562/1000 [00:13<00:10, 43.48it/s, adv_loss=-0.5958, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5958, elbo=298.5470, epoch=562/1001, vae_loss=298.5470]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 563/1000 [00:13<00:10, 43.48it/s, adv_loss=-0.5994, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5994, elbo=297.9752, epoch=563/1001, vae_loss=297.9752]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 564/1000 [00:13<00:10, 43.48it/s, adv_loss=-0.6305, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6305, elbo=301.1017, epoch=564/1001, vae_loss=301.1017]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 565/1000 [00:13<00:10, 43.49it/s, adv_loss=-0.6305, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6305, elbo=301.1017, epoch=564/1001, vae_loss=301.1017]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 565/1000 [00:13<00:10, 43.49it/s, adv_loss=-0.6337, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6337, elbo=299.3855, epoch=565/1001, vae_loss=299.3855]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 566/1000 [00:13<00:09, 43.49it/s, adv_loss=-0.6468, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6468, elbo=300.6682, epoch=566/1001, vae_loss=300.6682]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 567/1000 [00:13<00:09, 43.49it/s, adv_loss=-0.6345, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6345, elbo=302.8517, epoch=567/1001, vae_loss=302.8517]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 568/1000 [00:13<00:09, 43.49it/s, adv_loss=-0.6454, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6454, elbo=303.6121, epoch=568/1001, vae_loss=303.6121]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 569/1000 [00:13<00:09, 43.49it/s, adv_loss=-0.6457, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6457, elbo=305.5443, epoch=569/1001, vae_loss=305.5443]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 570/1000 [00:13<00:09, 43.45it/s, adv_loss=-0.6457, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6457, elbo=305.5443, epoch=569/1001, vae_loss=305.5443]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 570/1000 [00:13<00:09, 43.45it/s, adv_loss=-0.6649, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6649, elbo=302.5846, epoch=570/1001, vae_loss=302.5846]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 571/1000 [00:13<00:09, 43.45it/s, adv_loss=-0.6399, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6399, elbo=306.1189, epoch=571/1001, vae_loss=306.1189]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 572/1000 [00:13<00:09, 43.45it/s, adv_loss=-0.6408, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6408, elbo=303.6826, epoch=572/1001, vae_loss=303.6826]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 573/1000 [00:13<00:09, 43.45it/s, adv_loss=-0.6331, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6331, elbo=301.0796, epoch=573/1001, vae_loss=301.0796]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 574/1000 [00:13<00:09, 43.45it/s, adv_loss=-0.6346, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6346, elbo=300.7649, epoch=574/1001, vae_loss=300.7649]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▊    | 575/1000 [00:13<00:09, 43.21it/s, adv_loss=-0.6346, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6346, elbo=300.7649, epoch=574/1001, vae_loss=300.7649]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▊    | 575/1000 [00:13<00:09, 43.21it/s, adv_loss=-0.6144, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6144, elbo=300.8125, epoch=575/1001, vae_loss=300.8125]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 576/1000 [00:13<00:09, 43.21it/s, adv_loss=-0.6227, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6227, elbo=300.3355, epoch=576/1001, vae_loss=300.3355]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 577/1000 [00:13<00:09, 43.21it/s, adv_loss=-0.6107, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6107, elbo=300.3873, epoch=577/1001, vae_loss=300.3873]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 578/1000 [00:13<00:09, 43.21it/s, adv_loss=-0.6135, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6135, elbo=301.9472, epoch=578/1001, vae_loss=301.9472]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 579/1000 [00:13<00:09, 43.21it/s, adv_loss=-0.6021, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6021, elbo=299.6636, epoch=579/1001, vae_loss=299.6636]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 580/1000 [00:13<00:09, 43.42it/s, adv_loss=-0.6021, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6021, elbo=299.6636, epoch=579/1001, vae_loss=299.6636]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 580/1000 [00:13<00:09, 43.42it/s, adv_loss=-0.5967, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5967, elbo=299.4538, epoch=580/1001, vae_loss=299.4538]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 581/1000 [00:13<00:09, 43.42it/s, adv_loss=-0.6027, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6027, elbo=296.9396, epoch=581/1001, vae_loss=296.9396]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 582/1000 [00:13<00:09, 43.42it/s, adv_loss=-0.5889, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5889, elbo=293.9562, epoch=582/1001, vae_loss=293.9562]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 583/1000 [00:13<00:09, 43.42it/s, adv_loss=-0.5931, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5931, elbo=296.0555, epoch=583/1001, vae_loss=296.0555]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 584/1000 [00:13<00:09, 43.42it/s, adv_loss=-0.5932, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5932, elbo=294.8647, epoch=584/1001, vae_loss=294.8647]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 585/1000 [00:13<00:09, 43.38it/s, adv_loss=-0.5932, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5932, elbo=294.8647, epoch=584/1001, vae_loss=294.8647]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 585/1000 [00:13<00:09, 43.38it/s, adv_loss=-0.5841, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5841, elbo=294.5902, epoch=585/1001, vae_loss=294.5902]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▊    | 586/1000 [00:13<00:09, 43.38it/s, adv_loss=-0.5812, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5812, elbo=293.0863, epoch=586/1001, vae_loss=293.0863]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▊    | 587/1000 [00:13<00:09, 43.38it/s, adv_loss=-0.5819, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5819, elbo=292.7103, epoch=587/1001, vae_loss=292.7103]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 588/1000 [00:13<00:09, 43.38it/s, adv_loss=-0.5836, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5836, elbo=294.1448, epoch=588/1001, vae_loss=294.1448]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 589/1000 [00:13<00:09, 43.38it/s, adv_loss=-0.5801, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5801, elbo=290.9481, epoch=589/1001, vae_loss=290.9481]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 590/1000 [00:13<00:09, 42.84it/s, adv_loss=-0.5801, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5801, elbo=290.9481, epoch=589/1001, vae_loss=290.9481]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 590/1000 [00:13<00:09, 42.84it/s, adv_loss=-0.5787, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5787, elbo=291.2293, epoch=590/1001, vae_loss=291.2293]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 591/1000 [00:13<00:09, 42.84it/s, adv_loss=-0.5827, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5827, elbo=290.2953, epoch=591/1001, vae_loss=290.2953]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 592/1000 [00:13<00:09, 42.84it/s, adv_loss=-0.5836, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5836, elbo=292.5620, epoch=592/1001, vae_loss=292.5620]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 593/1000 [00:13<00:09, 42.84it/s, adv_loss=-0.5837, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5837, elbo=288.9149, epoch=593/1001, vae_loss=288.9149]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 594/1000 [00:13<00:09, 42.84it/s, adv_loss=-0.5854, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5854, elbo=290.3884, epoch=594/1001, vae_loss=290.3884]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 595/1000 [00:13<00:09, 43.12it/s, adv_loss=-0.5854, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5854, elbo=290.3884, epoch=594/1001, vae_loss=290.3884]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 595/1000 [00:13<00:09, 43.12it/s, adv_loss=-0.5877, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5877, elbo=289.1929, epoch=595/1001, vae_loss=289.1929]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 596/1000 [00:13<00:09, 43.12it/s, adv_loss=-0.5786, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5786, elbo=290.0538, epoch=596/1001, vae_loss=290.0538]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 597/1000 [00:13<00:09, 43.12it/s, adv_loss=-0.5870, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5870, elbo=291.6648, epoch=597/1001, vae_loss=291.6648]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 598/1000 [00:13<00:09, 43.12it/s, adv_loss=-0.5875, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5875, elbo=290.7542, epoch=598/1001, vae_loss=290.7542]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 599/1000 [00:13<00:09, 43.12it/s, adv_loss=-0.5873, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5873, elbo=292.2070, epoch=599/1001, vae_loss=292.2070]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 600/1000 [00:13<00:09, 43.52it/s, adv_loss=-0.5873, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5873, elbo=292.2070, epoch=599/1001, vae_loss=292.2070]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 600/1000 [00:14<00:09, 43.52it/s, adv_loss=-0.5812, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5812, elbo=290.4671, epoch=600/1001, vae_loss=290.4671]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 601/1000 [00:14<00:09, 43.52it/s, adv_loss=-0.5805, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5805, elbo=290.0253, epoch=601/1001, vae_loss=290.0253]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 602/1000 [00:14<00:09, 43.52it/s, adv_loss=-0.5822, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5822, elbo=289.8880, epoch=602/1001, vae_loss=289.8880]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 603/1000 [00:14<00:09, 43.52it/s, adv_loss=-0.5794, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5794, elbo=289.5309, epoch=603/1001, vae_loss=289.5309]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 604/1000 [00:14<00:09, 43.52it/s, adv_loss=-0.5807, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5807, elbo=290.2123, epoch=604/1001, vae_loss=290.2123]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 605/1000 [00:14<00:09, 43.67it/s, adv_loss=-0.5807, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5807, elbo=290.2123, epoch=604/1001, vae_loss=290.2123]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 605/1000 [00:14<00:09, 43.67it/s, adv_loss=-0.5799, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5799, elbo=291.3229, epoch=605/1001, vae_loss=291.3229]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 606/1000 [00:14<00:09, 43.67it/s, adv_loss=-0.5839, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5839, elbo=292.0175, epoch=606/1001, vae_loss=292.0175]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 607/1000 [00:14<00:08, 43.67it/s, adv_loss=-0.5736, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5736, elbo=287.8242, epoch=607/1001, vae_loss=287.8242]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 608/1000 [00:14<00:08, 43.67it/s, adv_loss=-0.5751, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5751, elbo=288.8219, epoch=608/1001, vae_loss=288.8219]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 609/1000 [00:14<00:08, 43.67it/s, adv_loss=-0.5732, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5732, elbo=287.9622, epoch=609/1001, vae_loss=287.9622]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 610/1000 [00:14<00:08, 43.75it/s, adv_loss=-0.5732, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5732, elbo=287.9622, epoch=609/1001, vae_loss=287.9622]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 610/1000 [00:14<00:08, 43.75it/s, adv_loss=-0.5792, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5792, elbo=289.2584, epoch=610/1001, vae_loss=289.2584]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 611/1000 [00:14<00:08, 43.75it/s, adv_loss=-0.5656, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5656, elbo=291.2451, epoch=611/1001, vae_loss=291.2451]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 612/1000 [00:14<00:08, 43.75it/s, adv_loss=-0.5678, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5678, elbo=289.6763, epoch=612/1001, vae_loss=289.6763]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 613/1000 [00:14<00:08, 43.75it/s, adv_loss=-0.5668, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5668, elbo=287.9527, epoch=613/1001, vae_loss=287.9527]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 614/1000 [00:14<00:08, 43.75it/s, adv_loss=-0.5767, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5767, elbo=286.9929, epoch=614/1001, vae_loss=286.9929]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 615/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5767, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5767, elbo=286.9929, epoch=614/1001, vae_loss=286.9929]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 615/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5603, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5603, elbo=288.7139, epoch=615/1001, vae_loss=288.7139]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 616/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5724, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5724, elbo=286.1511, epoch=616/1001, vae_loss=286.1511]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 617/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5812, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5812, elbo=287.8314, epoch=617/1001, vae_loss=287.8314]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 618/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5669, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5669, elbo=288.8409, epoch=618/1001, vae_loss=288.8409]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 619/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5710, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5710, elbo=287.3142, epoch=619/1001, vae_loss=287.3142]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 620/1000 [00:14<00:08, 43.68it/s, adv_loss=-0.5710, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5710, elbo=287.3142, epoch=619/1001, vae_loss=287.3142]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 620/1000 [00:14<00:08, 43.68it/s, adv_loss=-0.5774, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5774, elbo=285.9150, epoch=620/1001, vae_loss=285.9150]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 621/1000 [00:14<00:08, 43.68it/s, adv_loss=-0.5954, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5954, elbo=284.6663, epoch=621/1001, vae_loss=284.6663]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 622/1000 [00:14<00:08, 43.68it/s, adv_loss=-0.5798, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5798, elbo=285.1106, epoch=622/1001, vae_loss=285.1106]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 623/1000 [00:14<00:08, 43.68it/s, adv_loss=-0.5820, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5820, elbo=286.0678, epoch=623/1001, vae_loss=286.0678]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 624/1000 [00:14<00:08, 43.68it/s, adv_loss=-0.6040, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6040, elbo=288.5059, epoch=624/1001, vae_loss=288.5059]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▎   | 625/1000 [00:14<00:08, 43.82it/s, adv_loss=-0.6040, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6040, elbo=288.5059, epoch=624/1001, vae_loss=288.5059]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▎   | 625/1000 [00:14<00:08, 43.82it/s, adv_loss=-0.6030, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6030, elbo=288.0269, epoch=625/1001, vae_loss=288.0269]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 626/1000 [00:14<00:08, 43.82it/s, adv_loss=-0.6081, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6081, elbo=288.3994, epoch=626/1001, vae_loss=288.3994]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 627/1000 [00:14<00:08, 43.82it/s, adv_loss=-0.6169, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6169, elbo=287.3938, epoch=627/1001, vae_loss=287.3938]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 628/1000 [00:14<00:08, 43.82it/s, adv_loss=-0.6290, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6290, elbo=289.8927, epoch=628/1001, vae_loss=289.8927]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 629/1000 [00:14<00:08, 43.82it/s, adv_loss=-0.6237, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6237, elbo=289.6258, epoch=629/1001, vae_loss=289.6258]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 630/1000 [00:14<00:08, 43.76it/s, adv_loss=-0.6237, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6237, elbo=289.6258, epoch=629/1001, vae_loss=289.6258]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 630/1000 [00:14<00:08, 43.76it/s, adv_loss=-0.6325, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6325, elbo=294.5128, epoch=630/1001, vae_loss=294.5128]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 631/1000 [00:14<00:08, 43.76it/s, adv_loss=-0.6232, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6232, elbo=294.1540, epoch=631/1001, vae_loss=294.1540]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 632/1000 [00:14<00:08, 43.76it/s, adv_loss=-0.6307, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6307, elbo=293.2895, epoch=632/1001, vae_loss=293.2895]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 633/1000 [00:14<00:08, 43.76it/s, adv_loss=-0.6227, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6227, elbo=294.5027, epoch=633/1001, vae_loss=294.5027]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 634/1000 [00:14<00:08, 43.76it/s, adv_loss=-0.6177, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6177, elbo=296.3744, epoch=634/1001, vae_loss=296.3744]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 635/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.6177, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6177, elbo=296.3744, epoch=634/1001, vae_loss=296.3744]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 635/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.6045, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6045, elbo=294.7890, epoch=635/1001, vae_loss=294.7890]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 636/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.6114, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6114, elbo=295.3552, epoch=636/1001, vae_loss=295.3552]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 637/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5968, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5968, elbo=293.5609, epoch=637/1001, vae_loss=293.5609]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 638/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5854, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5854, elbo=294.4717, epoch=638/1001, vae_loss=294.4717]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 639/1000 [00:14<00:08, 43.69it/s, adv_loss=-0.5805, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5805, elbo=294.6310, epoch=639/1001, vae_loss=294.6310]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 640/1000 [00:14<00:08, 43.77it/s, adv_loss=-0.5805, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5805, elbo=294.6310, epoch=639/1001, vae_loss=294.6310]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 640/1000 [00:14<00:08, 43.77it/s, adv_loss=-0.5744, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5744, elbo=293.8446, epoch=640/1001, vae_loss=293.8446]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 641/1000 [00:14<00:08, 43.77it/s, adv_loss=-0.5709, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5709, elbo=294.3975, epoch=641/1001, vae_loss=294.3975]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 642/1000 [00:14<00:08, 43.77it/s, adv_loss=-0.5625, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5625, elbo=294.8658, epoch=642/1001, vae_loss=294.8658]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 643/1000 [00:14<00:08, 43.77it/s, adv_loss=-0.5576, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5576, elbo=294.2085, epoch=643/1001, vae_loss=294.2085]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 644/1000 [00:15<00:08, 43.77it/s, adv_loss=-0.5362, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5362, elbo=294.0057, epoch=644/1001, vae_loss=294.0057]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 645/1000 [00:15<00:08, 43.74it/s, adv_loss=-0.5362, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5362, elbo=294.0057, epoch=644/1001, vae_loss=294.0057]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 645/1000 [00:15<00:08, 43.74it/s, adv_loss=-0.5384, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5384, elbo=292.7166, epoch=645/1001, vae_loss=292.7166]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 646/1000 [00:15<00:08, 43.74it/s, adv_loss=-0.5332, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5332, elbo=295.2998, epoch=646/1001, vae_loss=295.2998]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 647/1000 [00:15<00:08, 43.74it/s, adv_loss=-0.5238, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5238, elbo=294.3975, epoch=647/1001, vae_loss=294.3975]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 648/1000 [00:15<00:08, 43.74it/s, adv_loss=-0.5081, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5081, elbo=292.6207, epoch=648/1001, vae_loss=292.6207]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 649/1000 [00:15<00:08, 43.74it/s, adv_loss=-0.5155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5155, elbo=293.3936, epoch=649/1001, vae_loss=293.3936]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 650/1000 [00:15<00:08, 43.71it/s, adv_loss=-0.5155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5155, elbo=293.3936, epoch=649/1001, vae_loss=293.3936]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 650/1000 [00:15<00:08, 43.71it/s, adv_loss=-0.5118, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5118, elbo=291.8306, epoch=650/1001, vae_loss=291.8306]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 651/1000 [00:15<00:07, 43.71it/s, adv_loss=-0.5141, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5141, elbo=294.4991, epoch=651/1001, vae_loss=294.4991]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 652/1000 [00:15<00:07, 43.71it/s, adv_loss=-0.5418, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5418, elbo=294.3949, epoch=652/1001, vae_loss=294.3949]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 653/1000 [00:15<00:07, 43.71it/s, adv_loss=-0.5208, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5208, elbo=294.2772, epoch=653/1001, vae_loss=294.2772]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 654/1000 [00:15<00:07, 43.71it/s, adv_loss=-0.5304, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5304, elbo=294.7239, epoch=654/1001, vae_loss=294.7239]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 655/1000 [00:15<00:07, 43.47it/s, adv_loss=-0.5304, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5304, elbo=294.7239, epoch=654/1001, vae_loss=294.7239]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 655/1000 [00:15<00:07, 43.47it/s, adv_loss=-0.5238, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5238, elbo=295.7390, epoch=655/1001, vae_loss=295.7390]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 656/1000 [00:15<00:07, 43.47it/s, adv_loss=-0.5345, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5345, elbo=298.8416, epoch=656/1001, vae_loss=298.8416]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 657/1000 [00:15<00:07, 43.47it/s, adv_loss=-0.5366, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5366, elbo=301.9330, epoch=657/1001, vae_loss=301.9330]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 658/1000 [00:15<00:07, 43.47it/s, adv_loss=-0.5402, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5402, elbo=301.0042, epoch=658/1001, vae_loss=301.0042]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 659/1000 [00:15<00:07, 43.47it/s, adv_loss=-0.5488, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5488, elbo=300.5400, epoch=659/1001, vae_loss=300.5400]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 660/1000 [00:15<00:07, 43.60it/s, adv_loss=-0.5488, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5488, elbo=300.5400, epoch=659/1001, vae_loss=300.5400]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 660/1000 [00:15<00:07, 43.60it/s, adv_loss=-0.5467, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5467, elbo=308.1683, epoch=660/1001, vae_loss=308.1683]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 661/1000 [00:15<00:07, 43.60it/s, adv_loss=-0.5521, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5521, elbo=307.1372, epoch=661/1001, vae_loss=307.1372]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 662/1000 [00:15<00:07, 43.60it/s, adv_loss=-0.5488, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5488, elbo=308.3152, epoch=662/1001, vae_loss=308.3152]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 663/1000 [00:15<00:07, 43.60it/s, adv_loss=-0.5528, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5528, elbo=311.3006, epoch=663/1001, vae_loss=311.3006]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 664/1000 [00:15<00:07, 43.60it/s, adv_loss=-0.5518, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5518, elbo=317.6065, epoch=664/1001, vae_loss=317.6065]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 665/1000 [00:15<00:07, 43.25it/s, adv_loss=-0.5518, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5518, elbo=317.6065, epoch=664/1001, vae_loss=317.6065]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 665/1000 [00:15<00:07, 43.25it/s, adv_loss=-0.5450, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5450, elbo=310.3130, epoch=665/1001, vae_loss=310.3130]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 666/1000 [00:15<00:07, 43.25it/s, adv_loss=-0.5601, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5601, elbo=309.7830, epoch=666/1001, vae_loss=309.7830]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 667/1000 [00:15<00:07, 43.25it/s, adv_loss=-0.5742, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5742, elbo=309.6610, epoch=667/1001, vae_loss=309.6610]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 668/1000 [00:15<00:07, 43.25it/s, adv_loss=-0.5526, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5526, elbo=309.5083, epoch=668/1001, vae_loss=309.5083]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 669/1000 [00:15<00:07, 43.25it/s, adv_loss=-0.5817, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5817, elbo=307.9701, epoch=669/1001, vae_loss=307.9701]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 670/1000 [00:15<00:07, 43.00it/s, adv_loss=-0.5817, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5817, elbo=307.9701, epoch=669/1001, vae_loss=307.9701]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 670/1000 [00:15<00:07, 43.00it/s, adv_loss=-0.5781, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5781, elbo=309.6060, epoch=670/1001, vae_loss=309.6060]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 671/1000 [00:15<00:07, 43.00it/s, adv_loss=-0.5870, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5870, elbo=306.9344, epoch=671/1001, vae_loss=306.9344]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 672/1000 [00:15<00:07, 43.00it/s, adv_loss=-0.5994, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5994, elbo=307.7538, epoch=672/1001, vae_loss=307.7538]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 673/1000 [00:15<00:07, 43.00it/s, adv_loss=-0.6121, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6121, elbo=304.3574, epoch=673/1001, vae_loss=304.3574]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 674/1000 [00:15<00:07, 43.00it/s, adv_loss=-0.6171, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6171, elbo=304.3400, epoch=674/1001, vae_loss=304.3400]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 675/1000 [00:15<00:07, 42.25it/s, adv_loss=-0.6171, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6171, elbo=304.3400, epoch=674/1001, vae_loss=304.3400]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 675/1000 [00:15<00:07, 42.25it/s, adv_loss=-0.6190, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6190, elbo=302.5475, epoch=675/1001, vae_loss=302.5475]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 676/1000 [00:15<00:07, 42.25it/s, adv_loss=-0.6541, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6541, elbo=304.4198, epoch=676/1001, vae_loss=304.4198]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 677/1000 [00:15<00:07, 42.25it/s, adv_loss=-0.6382, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6382, elbo=301.0905, epoch=677/1001, vae_loss=301.0905]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 678/1000 [00:15<00:07, 42.25it/s, adv_loss=-0.6316, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6316, elbo=305.5067, epoch=678/1001, vae_loss=305.5067]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 679/1000 [00:15<00:07, 42.25it/s, adv_loss=-0.6404, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6404, elbo=302.2013, epoch=679/1001, vae_loss=302.2013]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 680/1000 [00:15<00:07, 42.34it/s, adv_loss=-0.6404, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6404, elbo=302.2013, epoch=679/1001, vae_loss=302.2013]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 680/1000 [00:15<00:07, 42.34it/s, adv_loss=-0.6280, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6280, elbo=304.4888, epoch=680/1001, vae_loss=304.4888]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 681/1000 [00:15<00:07, 42.34it/s, adv_loss=-0.6333, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6333, elbo=303.3072, epoch=681/1001, vae_loss=303.3072]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 682/1000 [00:15<00:07, 42.34it/s, adv_loss=-0.6192, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6192, elbo=303.0595, epoch=682/1001, vae_loss=303.0595]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 683/1000 [00:15<00:07, 42.34it/s, adv_loss=-0.6167, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6167, elbo=300.6403, epoch=683/1001, vae_loss=300.6403]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 684/1000 [00:15<00:07, 42.34it/s, adv_loss=-0.6127, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6127, elbo=297.8892, epoch=684/1001, vae_loss=297.8892]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 685/1000 [00:15<00:07, 42.61it/s, adv_loss=-0.6127, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6127, elbo=297.8892, epoch=684/1001, vae_loss=297.8892]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 685/1000 [00:15<00:07, 42.61it/s, adv_loss=-0.6081, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6081, elbo=297.4146, epoch=685/1001, vae_loss=297.4146]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▊   | 686/1000 [00:15<00:07, 42.61it/s, adv_loss=-0.5987, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5987, elbo=296.3812, epoch=686/1001, vae_loss=296.3812]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▊   | 687/1000 [00:16<00:07, 42.61it/s, adv_loss=-0.5940, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5940, elbo=292.9280, epoch=687/1001, vae_loss=292.9280]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 688/1000 [00:16<00:07, 42.61it/s, adv_loss=-0.5889, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5889, elbo=294.4965, epoch=688/1001, vae_loss=294.4965]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 689/1000 [00:16<00:07, 42.61it/s, adv_loss=-0.5856, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5856, elbo=292.5118, epoch=689/1001, vae_loss=292.5118]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 690/1000 [00:16<00:07, 42.99it/s, adv_loss=-0.5856, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5856, elbo=292.5118, epoch=689/1001, vae_loss=292.5118]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 690/1000 [00:16<00:07, 42.99it/s, adv_loss=-0.5817, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5817, elbo=291.8432, epoch=690/1001, vae_loss=291.8432]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 691/1000 [00:16<00:07, 42.99it/s, adv_loss=-0.5737, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5737, elbo=290.2172, epoch=691/1001, vae_loss=290.2172]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 692/1000 [00:16<00:07, 42.99it/s, adv_loss=-0.5725, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5725, elbo=290.1916, epoch=692/1001, vae_loss=290.1916]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 693/1000 [00:16<00:07, 42.99it/s, adv_loss=-0.5731, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5731, elbo=289.2660, epoch=693/1001, vae_loss=289.2660]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 694/1000 [00:16<00:07, 42.99it/s, adv_loss=-0.5767, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5767, elbo=288.3178, epoch=694/1001, vae_loss=288.3178]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 695/1000 [00:16<00:07, 43.33it/s, adv_loss=-0.5767, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5767, elbo=288.3178, epoch=694/1001, vae_loss=288.3178]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 695/1000 [00:16<00:07, 43.33it/s, adv_loss=-0.5856, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5856, elbo=286.4955, epoch=695/1001, vae_loss=286.4955]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 696/1000 [00:16<00:07, 43.33it/s, adv_loss=-0.5846, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5846, elbo=286.4370, epoch=696/1001, vae_loss=286.4370]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 697/1000 [00:16<00:06, 43.33it/s, adv_loss=-0.5879, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5879, elbo=284.4233, epoch=697/1001, vae_loss=284.4233]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 698/1000 [00:16<00:06, 43.33it/s, adv_loss=-0.5890, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5890, elbo=282.9374, epoch=698/1001, vae_loss=282.9374]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 699/1000 [00:16<00:06, 43.33it/s, adv_loss=-0.5929, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5929, elbo=283.8496, epoch=699/1001, vae_loss=283.8496]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 700/1000 [00:16<00:06, 43.51it/s, adv_loss=-0.5929, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5929, elbo=283.8496, epoch=699/1001, vae_loss=283.8496]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 700/1000 [00:16<00:06, 43.51it/s, adv_loss=-0.6223, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6223, elbo=282.4463, epoch=700/1001, vae_loss=282.4463]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 701/1000 [00:16<00:06, 43.51it/s, adv_loss=-0.6309, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6309, elbo=283.4324, epoch=701/1001, vae_loss=283.4324]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 702/1000 [00:16<00:06, 43.51it/s, adv_loss=-0.6274, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6274, elbo=284.8418, epoch=702/1001, vae_loss=284.8418]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 703/1000 [00:16<00:06, 43.51it/s, adv_loss=-0.6336, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6336, elbo=283.7420, epoch=703/1001, vae_loss=283.7420]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 704/1000 [00:16<00:06, 43.51it/s, adv_loss=-0.6216, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6216, elbo=284.2468, epoch=704/1001, vae_loss=284.2468]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 705/1000 [00:16<00:06, 43.61it/s, adv_loss=-0.6216, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6216, elbo=284.2468, epoch=704/1001, vae_loss=284.2468]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 705/1000 [00:16<00:06, 43.61it/s, adv_loss=-0.6258, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6258, elbo=284.8689, epoch=705/1001, vae_loss=284.8689]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 706/1000 [00:16<00:06, 43.61it/s, adv_loss=-0.6206, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6206, elbo=283.4534, epoch=706/1001, vae_loss=283.4534]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 707/1000 [00:16<00:06, 43.61it/s, adv_loss=-0.6177, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6177, elbo=283.8703, epoch=707/1001, vae_loss=283.8703]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 708/1000 [00:16<00:06, 43.61it/s, adv_loss=-0.6273, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6273, elbo=284.4438, epoch=708/1001, vae_loss=284.4438]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 709/1000 [00:16<00:06, 43.61it/s, adv_loss=-0.6136, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6136, elbo=284.8819, epoch=709/1001, vae_loss=284.8819]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 710/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.6136, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6136, elbo=284.8819, epoch=709/1001, vae_loss=284.8819]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 710/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.6114, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6114, elbo=284.8892, epoch=710/1001, vae_loss=284.8892]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 711/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5934, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5934, elbo=285.3562, epoch=711/1001, vae_loss=285.3562]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 712/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5743, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5743, elbo=283.4971, epoch=712/1001, vae_loss=283.4971]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 713/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5627, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5627, elbo=285.0581, epoch=713/1001, vae_loss=285.0581]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 714/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5660, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5660, elbo=284.7970, epoch=714/1001, vae_loss=284.7970]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 715/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5660, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5660, elbo=284.7970, epoch=714/1001, vae_loss=284.7970]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 715/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5548, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5548, elbo=283.9354, epoch=715/1001, vae_loss=283.9354]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 716/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5454, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5454, elbo=283.6620, epoch=716/1001, vae_loss=283.6620]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 717/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5347, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5347, elbo=283.0832, epoch=717/1001, vae_loss=283.0832]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 718/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5151, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5151, elbo=283.4297, epoch=718/1001, vae_loss=283.4297]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 719/1000 [00:16<00:06, 43.70it/s, adv_loss=-0.5195, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5195, elbo=284.2852, epoch=719/1001, vae_loss=284.2852]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 720/1000 [00:16<00:06, 43.65it/s, adv_loss=-0.5195, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5195, elbo=284.2852, epoch=719/1001, vae_loss=284.2852]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 720/1000 [00:16<00:06, 43.65it/s, adv_loss=-0.5090, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5090, elbo=284.7884, epoch=720/1001, vae_loss=284.7884]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 721/1000 [00:16<00:06, 43.65it/s, adv_loss=-0.4861, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4861, elbo=283.2544, epoch=721/1001, vae_loss=283.2544]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 722/1000 [00:16<00:06, 43.65it/s, adv_loss=-0.4836, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4836, elbo=285.4754, epoch=722/1001, vae_loss=285.4754]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 723/1000 [00:16<00:06, 43.65it/s, adv_loss=-0.4723, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4723, elbo=285.0006, epoch=723/1001, vae_loss=285.0006]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 724/1000 [00:16<00:06, 43.65it/s, adv_loss=-0.4668, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4668, elbo=284.5278, epoch=724/1001, vae_loss=284.5278]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▎  | 725/1000 [00:16<00:06, 43.42it/s, adv_loss=-0.4668, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4668, elbo=284.5278, epoch=724/1001, vae_loss=284.5278]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▎  | 725/1000 [00:16<00:06, 43.42it/s, adv_loss=-0.4702, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4702, elbo=285.1317, epoch=725/1001, vae_loss=285.1317]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 726/1000 [00:16<00:06, 43.42it/s, adv_loss=-0.4746, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4746, elbo=287.2946, epoch=726/1001, vae_loss=287.2946]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 727/1000 [00:16<00:06, 43.42it/s, adv_loss=-0.4705, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4705, elbo=287.3239, epoch=727/1001, vae_loss=287.3239]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 728/1000 [00:16<00:06, 43.42it/s, adv_loss=-0.4806, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4806, elbo=288.4131, epoch=728/1001, vae_loss=288.4131]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 729/1000 [00:16<00:06, 43.42it/s, adv_loss=-0.4880, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4880, elbo=290.8434, epoch=729/1001, vae_loss=290.8434]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 730/1000 [00:16<00:06, 43.31it/s, adv_loss=-0.4880, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4880, elbo=290.8434, epoch=729/1001, vae_loss=290.8434]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 730/1000 [00:16<00:06, 43.31it/s, adv_loss=-0.4976, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4976, elbo=291.4874, epoch=730/1001, vae_loss=291.4874]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 731/1000 [00:17<00:06, 43.31it/s, adv_loss=-0.4854, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.4854, elbo=293.5311, epoch=731/1001, vae_loss=293.5311]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 732/1000 [00:17<00:06, 43.31it/s, adv_loss=-0.5093, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5093, elbo=295.1544, epoch=732/1001, vae_loss=295.1544]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 733/1000 [00:17<00:06, 43.31it/s, adv_loss=-0.5023, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5023, elbo=296.2926, epoch=733/1001, vae_loss=296.2926]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 734/1000 [00:17<00:06, 43.31it/s, adv_loss=-0.5157, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5157, elbo=297.7415, epoch=734/1001, vae_loss=297.7415]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 735/1000 [00:17<00:06, 43.05it/s, adv_loss=-0.5157, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5157, elbo=297.7415, epoch=734/1001, vae_loss=297.7415]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 735/1000 [00:17<00:06, 43.05it/s, adv_loss=-0.5356, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5356, elbo=300.0964, epoch=735/1001, vae_loss=300.0964]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 736/1000 [00:17<00:06, 43.05it/s, adv_loss=-0.5459, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5459, elbo=301.2816, epoch=736/1001, vae_loss=301.2816]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 737/1000 [00:17<00:06, 43.05it/s, adv_loss=-0.5382, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5382, elbo=303.7166, epoch=737/1001, vae_loss=303.7166]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 738/1000 [00:17<00:06, 43.05it/s, adv_loss=-0.5478, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5478, elbo=304.4786, epoch=738/1001, vae_loss=304.4786]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 739/1000 [00:17<00:06, 43.05it/s, adv_loss=-0.5622, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5622, elbo=302.5953, epoch=739/1001, vae_loss=302.5953]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 740/1000 [00:17<00:06, 42.61it/s, adv_loss=-0.5622, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5622, elbo=302.5953, epoch=739/1001, vae_loss=302.5953]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 740/1000 [00:17<00:06, 42.61it/s, adv_loss=-0.5892, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5892, elbo=302.1893, epoch=740/1001, vae_loss=302.1893]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 741/1000 [00:17<00:06, 42.61it/s, adv_loss=-0.5853, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5853, elbo=304.5707, epoch=741/1001, vae_loss=304.5707]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 742/1000 [00:17<00:06, 42.61it/s, adv_loss=-0.6209, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6209, elbo=304.3401, epoch=742/1001, vae_loss=304.3401]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 743/1000 [00:17<00:06, 42.61it/s, adv_loss=-0.6070, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6070, elbo=302.9798, epoch=743/1001, vae_loss=302.9798]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 744/1000 [00:17<00:06, 42.61it/s, adv_loss=-0.6306, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6306, elbo=305.4992, epoch=744/1001, vae_loss=305.4992]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 745/1000 [00:17<00:05, 42.54it/s, adv_loss=-0.6306, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6306, elbo=305.4992, epoch=744/1001, vae_loss=305.4992]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 745/1000 [00:17<00:05, 42.54it/s, adv_loss=-0.6293, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6293, elbo=303.4714, epoch=745/1001, vae_loss=303.4714]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 746/1000 [00:17<00:05, 42.54it/s, adv_loss=-0.6405, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6405, elbo=304.2898, epoch=746/1001, vae_loss=304.2898]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 747/1000 [00:17<00:05, 42.54it/s, adv_loss=-0.6540, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6540, elbo=307.1610, epoch=747/1001, vae_loss=307.1610]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 748/1000 [00:17<00:05, 42.54it/s, adv_loss=-0.6534, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6534, elbo=306.2857, epoch=748/1001, vae_loss=306.2857]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 749/1000 [00:17<00:05, 42.54it/s, adv_loss=-0.6507, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6507, elbo=310.4494, epoch=749/1001, vae_loss=310.4494]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 750/1000 [00:17<00:05, 42.43it/s, adv_loss=-0.6507, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6507, elbo=310.4494, epoch=749/1001, vae_loss=310.4494]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 750/1000 [00:17<00:05, 42.43it/s, adv_loss=-0.6511, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6511, elbo=307.1714, epoch=750/1001, vae_loss=307.1714]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 751/1000 [00:17<00:05, 42.43it/s, adv_loss=-0.6578, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6578, elbo=308.2683, epoch=751/1001, vae_loss=308.2683]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 752/1000 [00:17<00:05, 42.43it/s, adv_loss=-0.6546, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6546, elbo=309.1566, epoch=752/1001, vae_loss=309.1566]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 753/1000 [00:17<00:05, 42.43it/s, adv_loss=-0.6583, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6583, elbo=308.9180, epoch=753/1001, vae_loss=308.9180]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 754/1000 [00:17<00:05, 42.43it/s, adv_loss=-0.6559, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6559, elbo=308.3025, epoch=754/1001, vae_loss=308.3025]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 755/1000 [00:17<00:05, 42.26it/s, adv_loss=-0.6559, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6559, elbo=308.3025, epoch=754/1001, vae_loss=308.3025]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 755/1000 [00:17<00:05, 42.26it/s, adv_loss=-0.6560, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6560, elbo=307.1022, epoch=755/1001, vae_loss=307.1022]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 756/1000 [00:17<00:05, 42.26it/s, adv_loss=-0.6579, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6579, elbo=306.6994, epoch=756/1001, vae_loss=306.6994]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 757/1000 [00:17<00:05, 42.26it/s, adv_loss=-0.6588, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6588, elbo=304.4537, epoch=757/1001, vae_loss=304.4537]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 758/1000 [00:17<00:05, 42.26it/s, adv_loss=-0.6577, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6577, elbo=305.3778, epoch=758/1001, vae_loss=305.3778]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 759/1000 [00:17<00:05, 42.26it/s, adv_loss=-0.6558, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6558, elbo=303.0511, epoch=759/1001, vae_loss=303.0511]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 760/1000 [00:17<00:05, 42.20it/s, adv_loss=-0.6558, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6558, elbo=303.0511, epoch=759/1001, vae_loss=303.0511]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 760/1000 [00:17<00:05, 42.20it/s, adv_loss=-0.6550, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6550, elbo=303.6494, epoch=760/1001, vae_loss=303.6494]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 761/1000 [00:17<00:05, 42.20it/s, adv_loss=-0.6525, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6525, elbo=299.2344, epoch=761/1001, vae_loss=299.2344]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 762/1000 [00:17<00:05, 42.20it/s, adv_loss=-0.6507, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6507, elbo=300.3379, epoch=762/1001, vae_loss=300.3379]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 763/1000 [00:17<00:05, 42.20it/s, adv_loss=-0.6412, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6412, elbo=298.0020, epoch=763/1001, vae_loss=298.0020]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 764/1000 [00:17<00:05, 42.20it/s, adv_loss=-0.6329, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6329, elbo=296.9435, epoch=764/1001, vae_loss=296.9435]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 765/1000 [00:17<00:05, 42.22it/s, adv_loss=-0.6329, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6329, elbo=296.9435, epoch=764/1001, vae_loss=296.9435]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 765/1000 [00:17<00:05, 42.22it/s, adv_loss=-0.6345, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6345, elbo=296.7328, epoch=765/1001, vae_loss=296.7328]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 766/1000 [00:17<00:05, 42.22it/s, adv_loss=-0.6292, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6292, elbo=296.5330, epoch=766/1001, vae_loss=296.5330]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 767/1000 [00:17<00:05, 42.22it/s, adv_loss=-0.6286, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6286, elbo=295.7495, epoch=767/1001, vae_loss=295.7495]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 768/1000 [00:17<00:05, 42.22it/s, adv_loss=-0.6250, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6250, elbo=293.0869, epoch=768/1001, vae_loss=293.0869]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 769/1000 [00:17<00:05, 42.22it/s, adv_loss=-0.6182, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6182, elbo=292.5247, epoch=769/1001, vae_loss=292.5247]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 770/1000 [00:17<00:05, 42.50it/s, adv_loss=-0.6182, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6182, elbo=292.5247, epoch=769/1001, vae_loss=292.5247]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 770/1000 [00:17<00:05, 42.50it/s, adv_loss=-0.6191, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6191, elbo=292.7243, epoch=770/1001, vae_loss=292.7243]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 771/1000 [00:17<00:05, 42.50it/s, adv_loss=-0.6121, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6121, elbo=291.6574, epoch=771/1001, vae_loss=291.6574]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 772/1000 [00:17<00:05, 42.50it/s, adv_loss=-0.6095, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6095, elbo=289.0988, epoch=772/1001, vae_loss=289.0988]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 773/1000 [00:18<00:05, 42.50it/s, adv_loss=-0.6009, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6009, elbo=290.1795, epoch=773/1001, vae_loss=290.1795]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 774/1000 [00:18<00:05, 42.50it/s, adv_loss=-0.6027, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6027, elbo=289.0737, epoch=774/1001, vae_loss=289.0737]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 775/1000 [00:18<00:05, 42.70it/s, adv_loss=-0.6027, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6027, elbo=289.0737, epoch=774/1001, vae_loss=289.0737]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 775/1000 [00:18<00:05, 42.70it/s, adv_loss=-0.5997, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5997, elbo=288.0924, epoch=775/1001, vae_loss=288.0924]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 776/1000 [00:18<00:05, 42.70it/s, adv_loss=-0.5898, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5898, elbo=288.3964, epoch=776/1001, vae_loss=288.3964]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 777/1000 [00:18<00:05, 42.70it/s, adv_loss=-0.5894, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5894, elbo=289.4937, epoch=777/1001, vae_loss=289.4937]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 778/1000 [00:18<00:05, 42.70it/s, adv_loss=-0.5823, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5823, elbo=287.2631, epoch=778/1001, vae_loss=287.2631]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 779/1000 [00:18<00:05, 42.70it/s, adv_loss=-0.5778, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5778, elbo=286.8594, epoch=779/1001, vae_loss=286.8594]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 780/1000 [00:18<00:05, 41.19it/s, adv_loss=-0.5778, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5778, elbo=286.8594, epoch=779/1001, vae_loss=286.8594]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 780/1000 [00:18<00:05, 41.19it/s, adv_loss=-0.5746, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5746, elbo=287.0244, epoch=780/1001, vae_loss=287.0244]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 781/1000 [00:18<00:05, 41.19it/s, adv_loss=-0.5676, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5676, elbo=286.7111, epoch=781/1001, vae_loss=286.7111]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 782/1000 [00:18<00:05, 41.19it/s, adv_loss=-0.5640, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5640, elbo=286.7205, epoch=782/1001, vae_loss=286.7205]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 783/1000 [00:18<00:05, 41.19it/s, adv_loss=-0.5584, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5584, elbo=285.2467, epoch=783/1001, vae_loss=285.2467]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 784/1000 [00:18<00:05, 41.19it/s, adv_loss=-0.5527, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5527, elbo=284.4493, epoch=784/1001, vae_loss=284.4493]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 785/1000 [00:18<00:05, 41.71it/s, adv_loss=-0.5527, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5527, elbo=284.4493, epoch=784/1001, vae_loss=284.4493]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 785/1000 [00:18<00:05, 41.71it/s, adv_loss=-0.5505, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5505, elbo=283.8223, epoch=785/1001, vae_loss=283.8223]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▊  | 786/1000 [00:18<00:05, 41.71it/s, adv_loss=-0.5434, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5434, elbo=284.3457, epoch=786/1001, vae_loss=284.3457]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▊  | 787/1000 [00:18<00:05, 41.71it/s, adv_loss=-0.5391, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5391, elbo=282.9245, epoch=787/1001, vae_loss=282.9245]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 788/1000 [00:18<00:05, 41.71it/s, adv_loss=-0.5351, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5351, elbo=282.3627, epoch=788/1001, vae_loss=282.3627]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 789/1000 [00:18<00:05, 41.71it/s, adv_loss=-0.5383, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5383, elbo=283.7115, epoch=789/1001, vae_loss=283.7115]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 790/1000 [00:18<00:05, 39.88it/s, adv_loss=-0.5383, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5383, elbo=283.7115, epoch=789/1001, vae_loss=283.7115]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 790/1000 [00:18<00:05, 39.88it/s, adv_loss=-0.5344, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5344, elbo=282.6293, epoch=790/1001, vae_loss=282.6293]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 791/1000 [00:18<00:05, 39.88it/s, adv_loss=-0.5383, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5383, elbo=281.6201, epoch=791/1001, vae_loss=281.6201]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 792/1000 [00:18<00:05, 39.88it/s, adv_loss=-0.5357, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5357, elbo=280.8736, epoch=792/1001, vae_loss=280.8736]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 793/1000 [00:18<00:05, 39.88it/s, adv_loss=-0.5375, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5375, elbo=281.8304, epoch=793/1001, vae_loss=281.8304]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 794/1000 [00:18<00:05, 39.88it/s, adv_loss=-0.5396, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5396, elbo=280.9502, epoch=794/1001, vae_loss=280.9502]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 795/1000 [00:18<00:05, 40.56it/s, adv_loss=-0.5396, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5396, elbo=280.9502, epoch=794/1001, vae_loss=280.9502]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 795/1000 [00:18<00:05, 40.56it/s, adv_loss=-0.5459, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5459, elbo=279.6060, epoch=795/1001, vae_loss=279.6060]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 796/1000 [00:18<00:05, 40.56it/s, adv_loss=-0.5569, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5569, elbo=280.2697, epoch=796/1001, vae_loss=280.2697]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 797/1000 [00:18<00:05, 40.56it/s, adv_loss=-0.5646, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5646, elbo=280.4331, epoch=797/1001, vae_loss=280.4331]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 798/1000 [00:18<00:04, 40.56it/s, adv_loss=-0.5783, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5783, elbo=280.9018, epoch=798/1001, vae_loss=280.9018]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 799/1000 [00:18<00:04, 40.56it/s, adv_loss=-0.5938, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5938, elbo=281.9540, epoch=799/1001, vae_loss=281.9540]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 800/1000 [00:18<00:04, 41.35it/s, adv_loss=-0.5938, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5938, elbo=281.9540, epoch=799/1001, vae_loss=281.9540]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 800/1000 [00:18<00:04, 41.35it/s, adv_loss=-0.6119, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6119, elbo=285.3061, epoch=800/1001, vae_loss=285.3061]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 801/1000 [00:18<00:04, 41.35it/s, adv_loss=-0.6016, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6016, elbo=283.5665, epoch=801/1001, vae_loss=283.5665]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 802/1000 [00:18<00:04, 41.35it/s, adv_loss=-0.6170, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6170, elbo=287.7485, epoch=802/1001, vae_loss=287.7485]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 803/1000 [00:18<00:04, 41.35it/s, adv_loss=-0.6272, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6272, elbo=288.0354, epoch=803/1001, vae_loss=288.0354]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 804/1000 [00:18<00:04, 41.35it/s, adv_loss=-0.6155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6155, elbo=287.8383, epoch=804/1001, vae_loss=287.8383]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 805/1000 [00:18<00:04, 41.57it/s, adv_loss=-0.6155, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6155, elbo=287.8383, epoch=804/1001, vae_loss=287.8383]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 805/1000 [00:18<00:04, 41.57it/s, adv_loss=-0.6320, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6320, elbo=290.0361, epoch=805/1001, vae_loss=290.0361]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 806/1000 [00:18<00:04, 41.57it/s, adv_loss=-0.6198, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6198, elbo=291.7393, epoch=806/1001, vae_loss=291.7393]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 807/1000 [00:18<00:04, 41.57it/s, adv_loss=-0.6243, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6243, elbo=291.1255, epoch=807/1001, vae_loss=291.1255]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 808/1000 [00:18<00:04, 41.57it/s, adv_loss=-0.6255, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6255, elbo=292.1936, epoch=808/1001, vae_loss=292.1936]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 809/1000 [00:18<00:04, 41.57it/s, adv_loss=-0.6068, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6068, elbo=292.3033, epoch=809/1001, vae_loss=292.3033]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 810/1000 [00:18<00:04, 41.86it/s, adv_loss=-0.6068, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6068, elbo=292.3033, epoch=809/1001, vae_loss=292.3033]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 810/1000 [00:18<00:04, 41.86it/s, adv_loss=-0.5932, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5932, elbo=294.4728, epoch=810/1001, vae_loss=294.4728]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 811/1000 [00:18<00:04, 41.86it/s, adv_loss=-0.6081, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6081, elbo=293.0114, epoch=811/1001, vae_loss=293.0114]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 812/1000 [00:18<00:04, 41.86it/s, adv_loss=-0.5848, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5848, elbo=294.4468, epoch=812/1001, vae_loss=294.4468]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 813/1000 [00:18<00:04, 41.86it/s, adv_loss=-0.5715, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5715, elbo=293.1511, epoch=813/1001, vae_loss=293.1511]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 814/1000 [00:19<00:04, 41.86it/s, adv_loss=-0.5613, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5613, elbo=293.3748, epoch=814/1001, vae_loss=293.3748]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 815/1000 [00:19<00:04, 42.16it/s, adv_loss=-0.5613, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5613, elbo=293.3748, epoch=814/1001, vae_loss=293.3748]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 815/1000 [00:19<00:04, 42.16it/s, adv_loss=-0.5677, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5677, elbo=291.0774, epoch=815/1001, vae_loss=291.0774]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 816/1000 [00:19<00:04, 42.16it/s, adv_loss=-0.5909, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5909, elbo=292.8522, epoch=816/1001, vae_loss=292.8522]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 817/1000 [00:19<00:04, 42.16it/s, adv_loss=-0.5676, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5676, elbo=291.5185, epoch=817/1001, vae_loss=291.5185]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 818/1000 [00:19<00:04, 42.16it/s, adv_loss=-0.5587, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5587, elbo=289.7089, epoch=818/1001, vae_loss=289.7089]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 819/1000 [00:19<00:04, 42.16it/s, adv_loss=-0.5720, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5720, elbo=290.8430, epoch=819/1001, vae_loss=290.8430]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 820/1000 [00:19<00:04, 42.06it/s, adv_loss=-0.5720, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5720, elbo=290.8430, epoch=819/1001, vae_loss=290.8430]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 820/1000 [00:19<00:04, 42.06it/s, adv_loss=-0.5405, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5405, elbo=289.4958, epoch=820/1001, vae_loss=289.4958]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 821/1000 [00:19<00:04, 42.06it/s, adv_loss=-0.5687, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5687, elbo=288.5925, epoch=821/1001, vae_loss=288.5925]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 822/1000 [00:19<00:04, 42.06it/s, adv_loss=-0.5766, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5766, elbo=286.0652, epoch=822/1001, vae_loss=286.0652]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 823/1000 [00:19<00:04, 42.06it/s, adv_loss=-0.5651, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5651, elbo=286.2000, epoch=823/1001, vae_loss=286.2000]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 824/1000 [00:19<00:04, 42.06it/s, adv_loss=-0.5869, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5869, elbo=286.3274, epoch=824/1001, vae_loss=286.3274]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▎ | 825/1000 [00:19<00:04, 42.21it/s, adv_loss=-0.5869, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5869, elbo=286.3274, epoch=824/1001, vae_loss=286.3274]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▎ | 825/1000 [00:19<00:04, 42.21it/s, adv_loss=-0.5783, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5783, elbo=285.6916, epoch=825/1001, vae_loss=285.6916]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 826/1000 [00:19<00:04, 42.21it/s, adv_loss=-0.5907, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5907, elbo=287.3000, epoch=826/1001, vae_loss=287.3000]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 827/1000 [00:19<00:04, 42.21it/s, adv_loss=-0.5991, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5991, elbo=286.1380, epoch=827/1001, vae_loss=286.1380]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 828/1000 [00:19<00:04, 42.21it/s, adv_loss=-0.5971, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5971, elbo=285.6058, epoch=828/1001, vae_loss=285.6058]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 829/1000 [00:19<00:04, 42.21it/s, adv_loss=-0.5885, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5885, elbo=284.3640, epoch=829/1001, vae_loss=284.3640]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 830/1000 [00:19<00:04, 42.28it/s, adv_loss=-0.5885, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5885, elbo=284.3640, epoch=829/1001, vae_loss=284.3640]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 830/1000 [00:19<00:04, 42.28it/s, adv_loss=-0.5973, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5973, elbo=285.4604, epoch=830/1001, vae_loss=285.4604]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 831/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5988, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5988, elbo=284.4774, epoch=831/1001, vae_loss=284.4774]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 832/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5886, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5886, elbo=284.4131, epoch=832/1001, vae_loss=284.4131]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 833/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5911, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5911, elbo=285.4138, epoch=833/1001, vae_loss=285.4138]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 834/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5837, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5837, elbo=283.0676, epoch=834/1001, vae_loss=283.0676]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 835/1000 [00:19<00:03, 42.35it/s, adv_loss=-0.5837, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5837, elbo=283.0676, epoch=834/1001, vae_loss=283.0676]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 835/1000 [00:19<00:03, 42.35it/s, adv_loss=-0.5794, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5794, elbo=283.9750, epoch=835/1001, vae_loss=283.9750]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 836/1000 [00:19<00:03, 42.35it/s, adv_loss=-0.5858, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5858, elbo=283.2688, epoch=836/1001, vae_loss=283.2688]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 837/1000 [00:19<00:03, 42.35it/s, adv_loss=-0.5779, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5779, elbo=282.5134, epoch=837/1001, vae_loss=282.5134]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 838/1000 [00:19<00:03, 42.35it/s, adv_loss=-0.5734, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5734, elbo=283.0736, epoch=838/1001, vae_loss=283.0736]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 839/1000 [00:19<00:03, 42.35it/s, adv_loss=-0.5755, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5755, elbo=283.0160, epoch=839/1001, vae_loss=283.0160]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 840/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5755, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5755, elbo=283.0160, epoch=839/1001, vae_loss=283.0160]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 840/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5772, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5772, elbo=281.5233, epoch=840/1001, vae_loss=281.5233]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 841/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5769, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5769, elbo=281.8856, epoch=841/1001, vae_loss=281.8856]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 842/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5727, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5727, elbo=281.3295, epoch=842/1001, vae_loss=281.3295]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 843/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5794, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5794, elbo=282.0756, epoch=843/1001, vae_loss=282.0756]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 844/1000 [00:19<00:03, 42.28it/s, adv_loss=-0.5773, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5773, elbo=280.7543, epoch=844/1001, vae_loss=280.7543]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 845/1000 [00:19<00:03, 42.15it/s, adv_loss=-0.5773, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5773, elbo=280.7543, epoch=844/1001, vae_loss=280.7543]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 845/1000 [00:19<00:03, 42.15it/s, adv_loss=-0.5786, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5786, elbo=280.9825, epoch=845/1001, vae_loss=280.9825]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 846/1000 [00:19<00:03, 42.15it/s, adv_loss=-0.5779, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5779, elbo=280.9239, epoch=846/1001, vae_loss=280.9239]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 847/1000 [00:19<00:03, 42.15it/s, adv_loss=-0.5755, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5755, elbo=281.1016, epoch=847/1001, vae_loss=281.1016]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 848/1000 [00:19<00:03, 42.15it/s, adv_loss=-0.5815, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5815, elbo=279.7205, epoch=848/1001, vae_loss=279.7205]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 849/1000 [00:19<00:03, 42.15it/s, adv_loss=-0.5773, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5773, elbo=279.2594, epoch=849/1001, vae_loss=279.2594]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 850/1000 [00:19<00:03, 42.34it/s, adv_loss=-0.5773, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5773, elbo=279.2594, epoch=849/1001, vae_loss=279.2594]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 850/1000 [00:19<00:03, 42.34it/s, adv_loss=-0.5831, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5831, elbo=278.2461, epoch=850/1001, vae_loss=278.2461]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 851/1000 [00:19<00:03, 42.34it/s, adv_loss=-0.5798, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5798, elbo=277.6407, epoch=851/1001, vae_loss=277.6407]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 852/1000 [00:19<00:03, 42.34it/s, adv_loss=-0.5763, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5763, elbo=277.5809, epoch=852/1001, vae_loss=277.5809]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 853/1000 [00:19<00:03, 42.34it/s, adv_loss=-0.5850, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5850, elbo=278.1985, epoch=853/1001, vae_loss=278.1985]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 854/1000 [00:19<00:03, 42.34it/s, adv_loss=-0.5791, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5791, elbo=277.7775, epoch=854/1001, vae_loss=277.7775]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 855/1000 [00:19<00:03, 42.45it/s, adv_loss=-0.5791, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5791, elbo=277.7775, epoch=854/1001, vae_loss=277.7775]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 855/1000 [00:19<00:03, 42.45it/s, adv_loss=-0.5853, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5853, elbo=277.3875, epoch=855/1001, vae_loss=277.3875]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 856/1000 [00:19<00:03, 42.45it/s, adv_loss=-0.5844, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5844, elbo=276.5830, epoch=856/1001, vae_loss=276.5830]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 857/1000 [00:20<00:03, 42.45it/s, adv_loss=-0.5812, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5812, elbo=274.9625, epoch=857/1001, vae_loss=274.9625]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 858/1000 [00:20<00:03, 42.45it/s, adv_loss=-0.5792, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5792, elbo=275.4012, epoch=858/1001, vae_loss=275.4012]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 859/1000 [00:20<00:03, 42.45it/s, adv_loss=-0.5857, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5857, elbo=274.9714, epoch=859/1001, vae_loss=274.9714]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 860/1000 [00:20<00:03, 42.62it/s, adv_loss=-0.5857, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5857, elbo=274.9714, epoch=859/1001, vae_loss=274.9714]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 860/1000 [00:20<00:03, 42.62it/s, adv_loss=-0.5808, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5808, elbo=274.7885, epoch=860/1001, vae_loss=274.7885]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 861/1000 [00:20<00:03, 42.62it/s, adv_loss=-0.5818, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5818, elbo=274.1685, epoch=861/1001, vae_loss=274.1685]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 862/1000 [00:20<00:03, 42.62it/s, adv_loss=-0.5786, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5786, elbo=272.9041, epoch=862/1001, vae_loss=272.9041]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 863/1000 [00:20<00:03, 42.62it/s, adv_loss=-0.5821, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5821, elbo=273.0275, epoch=863/1001, vae_loss=273.0275]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 864/1000 [00:20<00:03, 42.62it/s, adv_loss=-0.5794, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5794, elbo=273.6823, epoch=864/1001, vae_loss=273.6823]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 865/1000 [00:20<00:03, 42.74it/s, adv_loss=-0.5794, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5794, elbo=273.6823, epoch=864/1001, vae_loss=273.6823]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 865/1000 [00:20<00:03, 42.74it/s, adv_loss=-0.5794, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5794, elbo=271.9524, epoch=865/1001, vae_loss=271.9524]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 866/1000 [00:20<00:03, 42.74it/s, adv_loss=-0.5762, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5762, elbo=272.5067, epoch=866/1001, vae_loss=272.5067]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 867/1000 [00:20<00:03, 42.74it/s, adv_loss=-0.5785, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5785, elbo=271.4284, epoch=867/1001, vae_loss=271.4284]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 868/1000 [00:20<00:03, 42.74it/s, adv_loss=-0.5815, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5815, elbo=271.6907, epoch=868/1001, vae_loss=271.6907]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 869/1000 [00:20<00:03, 42.74it/s, adv_loss=-0.5804, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5804, elbo=273.5078, epoch=869/1001, vae_loss=273.5078]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 870/1000 [00:20<00:03, 42.70it/s, adv_loss=-0.5804, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5804, elbo=273.5078, epoch=869/1001, vae_loss=273.5078]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 870/1000 [00:20<00:03, 42.70it/s, adv_loss=-0.5771, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5771, elbo=271.4326, epoch=870/1001, vae_loss=271.4326]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 871/1000 [00:20<00:03, 42.70it/s, adv_loss=-0.5739, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5739, elbo=271.9546, epoch=871/1001, vae_loss=271.9546]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 872/1000 [00:20<00:02, 42.70it/s, adv_loss=-0.5728, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5728, elbo=271.0588, epoch=872/1001, vae_loss=271.0588]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 873/1000 [00:20<00:02, 42.70it/s, adv_loss=-0.5730, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5730, elbo=270.3753, epoch=873/1001, vae_loss=270.3753]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 874/1000 [00:20<00:02, 42.70it/s, adv_loss=-0.5742, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5742, elbo=270.4402, epoch=874/1001, vae_loss=270.4402]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 875/1000 [00:20<00:02, 42.49it/s, adv_loss=-0.5742, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5742, elbo=270.4402, epoch=874/1001, vae_loss=270.4402]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 875/1000 [00:20<00:02, 42.49it/s, adv_loss=-0.5697, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5697, elbo=270.4431, epoch=875/1001, vae_loss=270.4431]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 876/1000 [00:20<00:02, 42.49it/s, adv_loss=-0.5662, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5662, elbo=271.5431, epoch=876/1001, vae_loss=271.5431]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 877/1000 [00:20<00:02, 42.49it/s, adv_loss=-0.5658, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5658, elbo=270.8726, epoch=877/1001, vae_loss=270.8726]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 878/1000 [00:20<00:02, 42.49it/s, adv_loss=-0.5686, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5686, elbo=270.2383, epoch=878/1001, vae_loss=270.2383]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 879/1000 [00:20<00:02, 42.49it/s, adv_loss=-0.5619, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5619, elbo=269.4126, epoch=879/1001, vae_loss=269.4126]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 880/1000 [00:20<00:02, 42.58it/s, adv_loss=-0.5619, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5619, elbo=269.4126, epoch=879/1001, vae_loss=269.4126]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 880/1000 [00:20<00:02, 42.58it/s, adv_loss=-0.5654, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5654, elbo=269.0175, epoch=880/1001, vae_loss=269.0175]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 881/1000 [00:20<00:02, 42.58it/s, adv_loss=-0.5631, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5631, elbo=271.2155, epoch=881/1001, vae_loss=271.2155]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 882/1000 [00:20<00:02, 42.58it/s, adv_loss=-0.5625, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5625, elbo=269.8773, epoch=882/1001, vae_loss=269.8773]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 883/1000 [00:20<00:02, 42.58it/s, adv_loss=-0.5658, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5658, elbo=269.8987, epoch=883/1001, vae_loss=269.8987]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 884/1000 [00:20<00:02, 42.58it/s, adv_loss=-0.5587, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5587, elbo=270.1323, epoch=884/1001, vae_loss=270.1323]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 885/1000 [00:20<00:02, 42.76it/s, adv_loss=-0.5587, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5587, elbo=270.1323, epoch=884/1001, vae_loss=270.1323]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 885/1000 [00:20<00:02, 42.76it/s, adv_loss=-0.5554, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5554, elbo=270.6795, epoch=885/1001, vae_loss=270.6795]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▊ | 886/1000 [00:20<00:02, 42.76it/s, adv_loss=-0.5567, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5567, elbo=270.9675, epoch=886/1001, vae_loss=270.9675]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▊ | 887/1000 [00:20<00:02, 42.76it/s, adv_loss=-0.5555, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5555, elbo=269.3844, epoch=887/1001, vae_loss=269.3844]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 888/1000 [00:20<00:02, 42.76it/s, adv_loss=-0.5511, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5511, elbo=269.6671, epoch=888/1001, vae_loss=269.6671]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 889/1000 [00:20<00:02, 42.76it/s, adv_loss=-0.5544, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5544, elbo=269.9277, epoch=889/1001, vae_loss=269.9277]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 890/1000 [00:20<00:02, 42.50it/s, adv_loss=-0.5544, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5544, elbo=269.9277, epoch=889/1001, vae_loss=269.9277]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 890/1000 [00:20<00:02, 42.50it/s, adv_loss=-0.5548, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5548, elbo=269.5902, epoch=890/1001, vae_loss=269.5902]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 891/1000 [00:20<00:02, 42.50it/s, adv_loss=-0.5547, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5547, elbo=269.1576, epoch=891/1001, vae_loss=269.1576]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 892/1000 [00:20<00:02, 42.50it/s, adv_loss=-0.5516, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5516, elbo=270.0772, epoch=892/1001, vae_loss=270.0772]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 893/1000 [00:20<00:02, 42.50it/s, adv_loss=-0.5544, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5544, elbo=269.5800, epoch=893/1001, vae_loss=269.5800]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 894/1000 [00:20<00:02, 42.50it/s, adv_loss=-0.5572, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5572, elbo=270.2249, epoch=894/1001, vae_loss=270.2249]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 895/1000 [00:20<00:02, 42.34it/s, adv_loss=-0.5572, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5572, elbo=270.2249, epoch=894/1001, vae_loss=270.2249]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 895/1000 [00:20<00:02, 42.34it/s, adv_loss=-0.5595, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5595, elbo=270.5221, epoch=895/1001, vae_loss=270.5221]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 896/1000 [00:20<00:02, 42.34it/s, adv_loss=-0.5628, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5628, elbo=270.3343, epoch=896/1001, vae_loss=270.3343]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 897/1000 [00:20<00:02, 42.34it/s, adv_loss=-0.5603, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5603, elbo=270.1549, epoch=897/1001, vae_loss=270.1549]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 898/1000 [00:20<00:02, 42.34it/s, adv_loss=-0.5630, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5630, elbo=271.3425, epoch=898/1001, vae_loss=271.3425]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 899/1000 [00:21<00:02, 42.34it/s, adv_loss=-0.5681, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5681, elbo=271.0134, epoch=899/1001, vae_loss=271.0134]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 900/1000 [00:21<00:02, 42.76it/s, adv_loss=-0.5681, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5681, elbo=271.0134, epoch=899/1001, vae_loss=271.0134]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 900/1000 [00:21<00:02, 42.76it/s, adv_loss=-0.5658, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5658, elbo=270.8004, epoch=900/1001, vae_loss=270.8004]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 901/1000 [00:21<00:02, 42.76it/s, adv_loss=-0.5772, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5772, elbo=270.8819, epoch=901/1001, vae_loss=270.8819]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 902/1000 [00:21<00:02, 42.76it/s, adv_loss=-0.5809, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5809, elbo=271.1202, epoch=902/1001, vae_loss=271.1202]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 903/1000 [00:21<00:02, 42.76it/s, adv_loss=-0.5831, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5831, elbo=272.2719, epoch=903/1001, vae_loss=272.2719]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 904/1000 [00:21<00:02, 42.76it/s, adv_loss=-0.5825, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5825, elbo=272.6407, epoch=904/1001, vae_loss=272.6407]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 905/1000 [00:21<00:02, 42.92it/s, adv_loss=-0.5825, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5825, elbo=272.6407, epoch=904/1001, vae_loss=272.6407]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 905/1000 [00:21<00:02, 42.92it/s, adv_loss=-0.5879, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5879, elbo=272.7951, epoch=905/1001, vae_loss=272.7951]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 906/1000 [00:21<00:02, 42.92it/s, adv_loss=-0.5923, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5923, elbo=273.9764, epoch=906/1001, vae_loss=273.9764]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 907/1000 [00:21<00:02, 42.92it/s, adv_loss=-0.6010, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6010, elbo=274.8453, epoch=907/1001, vae_loss=274.8453]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 908/1000 [00:21<00:02, 42.92it/s, adv_loss=-0.5944, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5944, elbo=274.6073, epoch=908/1001, vae_loss=274.6073]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 909/1000 [00:21<00:02, 42.92it/s, adv_loss=-0.5971, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5971, elbo=275.4324, epoch=909/1001, vae_loss=275.4324]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 910/1000 [00:21<00:02, 42.96it/s, adv_loss=-0.5971, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5971, elbo=275.4324, epoch=909/1001, vae_loss=275.4324]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 910/1000 [00:21<00:02, 42.96it/s, adv_loss=-0.6064, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6064, elbo=275.5675, epoch=910/1001, vae_loss=275.5675]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 911/1000 [00:21<00:02, 42.96it/s, adv_loss=-0.5940, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5940, elbo=277.6352, epoch=911/1001, vae_loss=277.6352]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 912/1000 [00:21<00:02, 42.96it/s, adv_loss=-0.6006, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6006, elbo=277.5037, epoch=912/1001, vae_loss=277.5037]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 913/1000 [00:21<00:02, 42.96it/s, adv_loss=-0.5985, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5985, elbo=276.9821, epoch=913/1001, vae_loss=276.9821]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 914/1000 [00:21<00:02, 42.96it/s, adv_loss=-0.6056, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6056, elbo=276.4156, epoch=914/1001, vae_loss=276.4156]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 915/1000 [00:21<00:01, 42.99it/s, adv_loss=-0.6056, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.6056, elbo=276.4156, epoch=914/1001, vae_loss=276.4156]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 915/1000 [00:21<00:01, 42.99it/s, adv_loss=-0.5957, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5957, elbo=277.3689, epoch=915/1001, vae_loss=277.3689]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 916/1000 [00:21<00:01, 42.99it/s, adv_loss=-0.5962, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5962, elbo=277.8367, epoch=916/1001, vae_loss=277.8367]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 917/1000 [00:21<00:01, 42.99it/s, adv_loss=-0.5918, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5918, elbo=279.0021, epoch=917/1001, vae_loss=279.0021]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 918/1000 [00:21<00:01, 42.99it/s, adv_loss=-0.5917, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5917, elbo=278.4581, epoch=918/1001, vae_loss=278.4581]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 919/1000 [00:21<00:01, 42.99it/s, adv_loss=-0.5875, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5875, elbo=279.5921, epoch=919/1001, vae_loss=279.5921]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 920/1000 [00:21<00:01, 42.64it/s, adv_loss=-0.5875, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5875, elbo=279.5921, epoch=919/1001, vae_loss=279.5921]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 920/1000 [00:21<00:01, 42.64it/s, adv_loss=-0.5864, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5864, elbo=278.0721, epoch=920/1001, vae_loss=278.0721]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 921/1000 [00:21<00:01, 42.64it/s, adv_loss=-0.5808, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5808, elbo=277.6371, epoch=921/1001, vae_loss=277.6371]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 922/1000 [00:21<00:01, 42.64it/s, adv_loss=-0.5830, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5830, elbo=276.7526, epoch=922/1001, vae_loss=276.7526]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 923/1000 [00:21<00:01, 42.64it/s, adv_loss=-0.5791, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5791, elbo=276.7229, epoch=923/1001, vae_loss=276.7229]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 924/1000 [00:21<00:01, 42.64it/s, adv_loss=-0.5761, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5761, elbo=276.2993, epoch=924/1001, vae_loss=276.2993]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▎| 925/1000 [00:21<00:01, 42.66it/s, adv_loss=-0.5761, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5761, elbo=276.2993, epoch=924/1001, vae_loss=276.2993]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▎| 925/1000 [00:21<00:01, 42.66it/s, adv_loss=-0.5728, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5728, elbo=276.2363, epoch=925/1001, vae_loss=276.2363]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 926/1000 [00:21<00:01, 42.66it/s, adv_loss=-0.5702, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5702, elbo=275.1109, epoch=926/1001, vae_loss=275.1109]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 927/1000 [00:21<00:01, 42.66it/s, adv_loss=-0.5645, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5645, elbo=275.5604, epoch=927/1001, vae_loss=275.5604]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 928/1000 [00:21<00:01, 42.66it/s, adv_loss=-0.5649, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5649, elbo=275.3409, epoch=928/1001, vae_loss=275.3409]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 929/1000 [00:21<00:01, 42.66it/s, adv_loss=-0.5642, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5642, elbo=275.8346, epoch=929/1001, vae_loss=275.8346]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 930/1000 [00:21<00:01, 42.67it/s, adv_loss=-0.5642, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5642, elbo=275.8346, epoch=929/1001, vae_loss=275.8346]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 930/1000 [00:21<00:01, 42.67it/s, adv_loss=-0.5655, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5655, elbo=275.5195, epoch=930/1001, vae_loss=275.5195]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 931/1000 [00:21<00:01, 42.67it/s, adv_loss=-0.5748, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5748, elbo=275.3311, epoch=931/1001, vae_loss=275.3311]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 932/1000 [00:21<00:01, 42.67it/s, adv_loss=-0.5703, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5703, elbo=275.3301, epoch=932/1001, vae_loss=275.3301]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 933/1000 [00:21<00:01, 42.67it/s, adv_loss=-0.5644, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5644, elbo=275.9911, epoch=933/1001, vae_loss=275.9911]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 934/1000 [00:21<00:01, 42.67it/s, adv_loss=-0.5661, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5661, elbo=276.1105, epoch=934/1001, vae_loss=276.1105]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 935/1000 [00:21<00:01, 42.78it/s, adv_loss=-0.5661, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5661, elbo=276.1105, epoch=934/1001, vae_loss=276.1105]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 935/1000 [00:21<00:01, 42.78it/s, adv_loss=-0.5672, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5672, elbo=274.1409, epoch=935/1001, vae_loss=274.1409]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 936/1000 [00:21<00:01, 42.78it/s, adv_loss=-0.5671, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5671, elbo=274.3922, epoch=936/1001, vae_loss=274.3922]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 937/1000 [00:21<00:01, 42.78it/s, adv_loss=-0.5715, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5715, elbo=275.0471, epoch=937/1001, vae_loss=275.0471]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 938/1000 [00:21<00:01, 42.78it/s, adv_loss=-0.5705, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5705, elbo=275.3561, epoch=938/1001, vae_loss=275.3561]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 939/1000 [00:21<00:01, 42.78it/s, adv_loss=-0.5713, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5713, elbo=274.4989, epoch=939/1001, vae_loss=274.4989]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 940/1000 [00:21<00:01, 43.11it/s, adv_loss=-0.5713, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5713, elbo=274.4989, epoch=939/1001, vae_loss=274.4989]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 940/1000 [00:21<00:01, 43.11it/s, adv_loss=-0.5682, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5682, elbo=273.8040, epoch=940/1001, vae_loss=273.8040]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 941/1000 [00:21<00:01, 43.11it/s, adv_loss=-0.5725, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5725, elbo=274.5330, epoch=941/1001, vae_loss=274.5330]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 942/1000 [00:22<00:01, 43.11it/s, adv_loss=-0.5726, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5726, elbo=274.5468, epoch=942/1001, vae_loss=274.5468]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 943/1000 [00:22<00:01, 43.11it/s, adv_loss=-0.5711, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5711, elbo=273.8010, epoch=943/1001, vae_loss=273.8010]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 944/1000 [00:22<00:01, 43.11it/s, adv_loss=-0.5746, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5746, elbo=273.5332, epoch=944/1001, vae_loss=273.5332]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 945/1000 [00:22<00:01, 43.35it/s, adv_loss=-0.5746, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5746, elbo=273.5332, epoch=944/1001, vae_loss=273.5332]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 945/1000 [00:22<00:01, 43.35it/s, adv_loss=-0.5731, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5731, elbo=273.5647, epoch=945/1001, vae_loss=273.5647]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 946/1000 [00:22<00:01, 43.35it/s, adv_loss=-0.5734, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5734, elbo=273.2569, epoch=946/1001, vae_loss=273.2569]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 947/1000 [00:22<00:01, 43.35it/s, adv_loss=-0.5743, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5743, elbo=273.9217, epoch=947/1001, vae_loss=273.9217]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 948/1000 [00:22<00:01, 43.35it/s, adv_loss=-0.5693, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5693, elbo=273.0901, epoch=948/1001, vae_loss=273.0901]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 949/1000 [00:22<00:01, 43.35it/s, adv_loss=-0.5708, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5708, elbo=272.1994, epoch=949/1001, vae_loss=272.1994]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 950/1000 [00:22<00:01, 43.46it/s, adv_loss=-0.5708, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5708, elbo=272.1994, epoch=949/1001, vae_loss=272.1994]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 950/1000 [00:22<00:01, 43.46it/s, adv_loss=-0.5742, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5742, elbo=271.6617, epoch=950/1001, vae_loss=271.6617]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 951/1000 [00:22<00:01, 43.46it/s, adv_loss=-0.5716, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5716, elbo=271.7586, epoch=951/1001, vae_loss=271.7586]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 952/1000 [00:22<00:01, 43.46it/s, adv_loss=-0.5741, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5741, elbo=270.9431, epoch=952/1001, vae_loss=270.9431]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 953/1000 [00:22<00:01, 43.46it/s, adv_loss=-0.5653, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5653, elbo=270.4485, epoch=953/1001, vae_loss=270.4485]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 954/1000 [00:22<00:01, 43.46it/s, adv_loss=-0.5658, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5658, elbo=270.7789, epoch=954/1001, vae_loss=270.7789]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 955/1000 [00:22<00:01, 43.42it/s, adv_loss=-0.5658, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5658, elbo=270.7789, epoch=954/1001, vae_loss=270.7789]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 955/1000 [00:22<00:01, 43.42it/s, adv_loss=-0.5625, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5625, elbo=270.8986, epoch=955/1001, vae_loss=270.8986]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 956/1000 [00:22<00:01, 43.42it/s, adv_loss=-0.5660, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5660, elbo=270.0231, epoch=956/1001, vae_loss=270.0231]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 957/1000 [00:22<00:00, 43.42it/s, adv_loss=-0.5661, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5661, elbo=270.2334, epoch=957/1001, vae_loss=270.2334]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 958/1000 [00:22<00:00, 43.42it/s, adv_loss=-0.5630, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5630, elbo=269.3022, epoch=958/1001, vae_loss=269.3022]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 959/1000 [00:22<00:00, 43.42it/s, adv_loss=-0.5628, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5628, elbo=269.9831, epoch=959/1001, vae_loss=269.9831]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 960/1000 [00:22<00:00, 43.20it/s, adv_loss=-0.5628, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5628, elbo=269.9831, epoch=959/1001, vae_loss=269.9831]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 960/1000 [00:22<00:00, 43.20it/s, adv_loss=-0.5641, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5641, elbo=269.5064, epoch=960/1001, vae_loss=269.5064]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 961/1000 [00:22<00:00, 43.20it/s, adv_loss=-0.5663, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5663, elbo=269.4700, epoch=961/1001, vae_loss=269.4700]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 962/1000 [00:22<00:00, 43.20it/s, adv_loss=-0.5617, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5617, elbo=268.9070, epoch=962/1001, vae_loss=268.9070]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 963/1000 [00:22<00:00, 43.20it/s, adv_loss=-0.5610, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5610, elbo=267.8393, epoch=963/1001, vae_loss=267.8393]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 964/1000 [00:22<00:00, 43.20it/s, adv_loss=-0.5592, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5592, elbo=268.0662, epoch=964/1001, vae_loss=268.0662]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 965/1000 [00:22<00:00, 43.19it/s, adv_loss=-0.5592, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5592, elbo=268.0662, epoch=964/1001, vae_loss=268.0662]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 965/1000 [00:22<00:00, 43.19it/s, adv_loss=-0.5551, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5551, elbo=266.9465, epoch=965/1001, vae_loss=266.9465]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 966/1000 [00:22<00:00, 43.19it/s, adv_loss=-0.5603, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5603, elbo=268.3263, epoch=966/1001, vae_loss=268.3263]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 967/1000 [00:22<00:00, 43.19it/s, adv_loss=-0.5612, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5612, elbo=267.5181, epoch=967/1001, vae_loss=267.5181]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 968/1000 [00:22<00:00, 43.19it/s, adv_loss=-0.5602, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5602, elbo=266.9953, epoch=968/1001, vae_loss=266.9953]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 969/1000 [00:22<00:00, 43.19it/s, adv_loss=-0.5557, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5557, elbo=267.6341, epoch=969/1001, vae_loss=267.6341]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 970/1000 [00:22<00:00, 43.45it/s, adv_loss=-0.5557, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5557, elbo=267.6341, epoch=969/1001, vae_loss=267.6341]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 970/1000 [00:22<00:00, 43.45it/s, adv_loss=-0.5613, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5613, elbo=266.3875, epoch=970/1001, vae_loss=266.3875]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 971/1000 [00:22<00:00, 43.45it/s, adv_loss=-0.5593, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5593, elbo=267.1146, epoch=971/1001, vae_loss=267.1146]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 972/1000 [00:22<00:00, 43.45it/s, adv_loss=-0.5609, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5609, elbo=266.6864, epoch=972/1001, vae_loss=266.6864]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 973/1000 [00:22<00:00, 43.45it/s, adv_loss=-0.5579, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5579, elbo=265.9297, epoch=973/1001, vae_loss=265.9297]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 974/1000 [00:22<00:00, 43.45it/s, adv_loss=-0.5604, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5604, elbo=266.0173, epoch=974/1001, vae_loss=266.0173]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 975/1000 [00:22<00:00, 43.34it/s, adv_loss=-0.5604, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5604, elbo=266.0173, epoch=974/1001, vae_loss=266.0173]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 975/1000 [00:22<00:00, 43.34it/s, adv_loss=-0.5620, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5620, elbo=266.8977, epoch=975/1001, vae_loss=266.8977]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 976/1000 [00:22<00:00, 43.34it/s, adv_loss=-0.5634, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5634, elbo=266.8322, epoch=976/1001, vae_loss=266.8322]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 977/1000 [00:22<00:00, 43.34it/s, adv_loss=-0.5621, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5621, elbo=265.9898, epoch=977/1001, vae_loss=265.9898]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 978/1000 [00:22<00:00, 43.34it/s, adv_loss=-0.5671, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5671, elbo=266.1137, epoch=978/1001, vae_loss=266.1137]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 979/1000 [00:22<00:00, 43.34it/s, adv_loss=-0.5664, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5664, elbo=265.4665, epoch=979/1001, vae_loss=265.4665]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 980/1000 [00:22<00:00, 43.37it/s, adv_loss=-0.5664, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5664, elbo=265.4665, epoch=979/1001, vae_loss=265.4665]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 980/1000 [00:22<00:00, 43.37it/s, adv_loss=-0.5677, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5677, elbo=266.2488, epoch=980/1001, vae_loss=266.2488]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 981/1000 [00:22<00:00, 43.37it/s, adv_loss=-0.5713, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5713, elbo=267.2647, epoch=981/1001, vae_loss=267.2647]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 982/1000 [00:22<00:00, 43.37it/s, adv_loss=-0.5709, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5709, elbo=266.6615, epoch=982/1001, vae_loss=266.6615]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 983/1000 [00:22<00:00, 43.37it/s, adv_loss=-0.5719, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5719, elbo=266.4270, epoch=983/1001, vae_loss=266.4270]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 984/1000 [00:22<00:00, 43.37it/s, adv_loss=-0.5722, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5722, elbo=265.7288, epoch=984/1001, vae_loss=265.7288]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 985/1000 [00:22<00:00, 43.33it/s, adv_loss=-0.5722, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5722, elbo=265.7288, epoch=984/1001, vae_loss=265.7288]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 985/1000 [00:22<00:00, 43.33it/s, adv_loss=-0.5722, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5722, elbo=266.7964, epoch=985/1001, vae_loss=266.7964]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▊| 986/1000 [00:23<00:00, 43.33it/s, adv_loss=-0.5808, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5808, elbo=266.8579, epoch=986/1001, vae_loss=266.8579]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▊| 987/1000 [00:23<00:00, 43.33it/s, adv_loss=-0.5764, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5764, elbo=266.3850, epoch=987/1001, vae_loss=266.3850]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 988/1000 [00:23<00:00, 43.33it/s, adv_loss=-0.5731, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5731, elbo=267.0106, epoch=988/1001, vae_loss=267.0106]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 989/1000 [00:23<00:00, 43.33it/s, adv_loss=-0.5814, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5814, elbo=266.9106, epoch=989/1001, vae_loss=266.9106]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 990/1000 [00:23<00:00, 43.59it/s, adv_loss=-0.5814, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5814, elbo=266.9106, epoch=989/1001, vae_loss=266.9106]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 990/1000 [00:23<00:00, 43.59it/s, adv_loss=-0.5820, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5820, elbo=266.3300, epoch=990/1001, vae_loss=266.3300]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 991/1000 [00:23<00:00, 43.59it/s, adv_loss=-0.5778, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5778, elbo=266.6828, epoch=991/1001, vae_loss=266.6828]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 992/1000 [00:23<00:00, 43.59it/s, adv_loss=-0.5798, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5798, elbo=267.6787, epoch=992/1001, vae_loss=267.6787]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 993/1000 [00:23<00:00, 43.59it/s, adv_loss=-0.5789, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5789, elbo=266.0458, epoch=993/1001, vae_loss=266.0458]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 994/1000 [00:23<00:00, 43.59it/s, adv_loss=-0.5778, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5778, elbo=267.0139, epoch=994/1001, vae_loss=267.0139]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 995/1000 [00:23<00:00, 43.25it/s, adv_loss=-0.5778, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5778, elbo=267.0139, epoch=994/1001, vae_loss=267.0139]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 995/1000 [00:23<00:00, 43.25it/s, adv_loss=-0.5791, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5791, elbo=267.8096, epoch=995/1001, vae_loss=267.8096]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 996/1000 [00:23<00:00, 43.25it/s, adv_loss=-0.5771, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5771, elbo=268.4464, epoch=996/1001, vae_loss=268.4464]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 997/1000 [00:23<00:00, 43.25it/s, adv_loss=-0.5805, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5805, elbo=267.5907, epoch=997/1001, vae_loss=267.5907]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 998/1000 [00:23<00:00, 43.25it/s, adv_loss=-0.5775, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5775, elbo=267.2470, epoch=998/1001, vae_loss=267.2470]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 999/1000 [00:23<00:00, 43.25it/s, adv_loss=-0.5755, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5755, elbo=267.5853, epoch=999/1001, vae_loss=267.5853]
Training: Embeddings batch effect correction using adversrial training: 100%|██████████| 1000/1000 [00:23<00:00, 43.44it/s, adv_loss=-0.5755, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5755, elbo=267.5853, epoch=999/1001, vae_loss=267.5853]
Training: Embeddings batch effect correction using adversrial training: 100%|██████████| 1000/1000 [00:23<00:00, 42.88it/s, adv_loss=-0.5755, bio_penalty=0.0000, clustering_loss=0.0000, disc_loss=0.5755, elbo=267.5853, epoch=999/1001, vae_loss=267.5853]
Training: VAE decoder with masked batch labels:   0%|          | 0/3000 [00:00<?, ?it/s]
Training: VAE decoder with masked batch labels:   0%|          | 0/3000 [00:00<?, ?it/s, cycle_loss=0.0000, epoch=1/3000, vae_loss=247.3534]
Training: VAE decoder with masked batch labels:   0%|          | 1/3000 [00:00<01:13, 40.54it/s, cycle_loss=0.0000, epoch=2/3000, vae_loss=246.7861]
Training: VAE decoder with masked batch labels:   0%|          | 2/3000 [00:00<00:55, 53.87it/s, cycle_loss=0.0000, epoch=3/3000, vae_loss=246.5434]
Training: VAE decoder with masked batch labels:   0%|          | 3/3000 [00:00<00:49, 60.10it/s, cycle_loss=0.0000, epoch=4/3000, vae_loss=246.5379]
Training: VAE decoder with masked batch labels:   0%|          | 4/3000 [00:00<00:46, 63.86it/s, cycle_loss=0.0000, epoch=5/3000, vae_loss=246.4310]
Training: VAE decoder with masked batch labels:   0%|          | 5/3000 [00:00<00:44, 67.23it/s, cycle_loss=0.0000, epoch=6/3000, vae_loss=246.9878]
Training: VAE decoder with masked batch labels:   0%|          | 6/3000 [00:00<00:43, 69.53it/s, cycle_loss=0.0000, epoch=7/3000, vae_loss=246.3508]
Training: VAE decoder with masked batch labels:   0%|          | 7/3000 [00:00<00:42, 71.04it/s, cycle_loss=0.0000, epoch=8/3000, vae_loss=247.6805]
Training: VAE decoder with masked batch labels:   0%|          | 8/3000 [00:00<00:41, 72.20it/s, cycle_loss=0.0000, epoch=9/3000, vae_loss=246.6696]
Training: VAE decoder with masked batch labels:   0%|          | 9/3000 [00:00<00:37, 80.78it/s, cycle_loss=0.0000, epoch=9/3000, vae_loss=246.6696]
Training: VAE decoder with masked batch labels:   0%|          | 9/3000 [00:00<00:37, 80.78it/s, cycle_loss=0.0000, epoch=10/3000, vae_loss=246.3598]
Training: VAE decoder with masked batch labels:   0%|          | 10/3000 [00:00<00:37, 80.78it/s, cycle_loss=0.0000, epoch=11/3000, vae_loss=247.4124]
Training: VAE decoder with masked batch labels:   0%|          | 11/3000 [00:00<00:37, 80.78it/s, cycle_loss=0.0000, epoch=12/3000, vae_loss=246.3191]
Training: VAE decoder with masked batch labels:   0%|          | 12/3000 [00:00<00:36, 80.78it/s, cycle_loss=0.0000, epoch=13/3000, vae_loss=246.4811]
Training: VAE decoder with masked batch labels:   0%|          | 13/3000 [00:00<00:36, 80.78it/s, cycle_loss=0.0000, epoch=14/3000, vae_loss=245.9832]
Training: VAE decoder with masked batch labels:   0%|          | 14/3000 [00:00<00:36, 80.78it/s, cycle_loss=0.0000, epoch=15/3000, vae_loss=246.7727]
Training: VAE decoder with masked batch labels:   0%|          | 15/3000 [00:00<00:36, 80.78it/s, cycle_loss=0.0000, epoch=16/3000, vae_loss=246.1234]
Training: VAE decoder with masked batch labels:   1%|          | 16/3000 [00:00<00:36, 80.78it/s, cycle_loss=0.0000, epoch=17/3000, vae_loss=246.6371]
Training: VAE decoder with masked batch labels:   1%|          | 17/3000 [00:00<00:36, 80.78it/s, cycle_loss=0.0000, epoch=18/3000, vae_loss=246.8169]
Training: VAE decoder with masked batch labels:   1%|          | 18/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=18/3000, vae_loss=246.8169]
Training: VAE decoder with masked batch labels:   1%|          | 18/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=19/3000, vae_loss=246.4963]
Training: VAE decoder with masked batch labels:   1%|          | 19/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=20/3000, vae_loss=246.7562]
Training: VAE decoder with masked batch labels:   1%|          | 20/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=21/3000, vae_loss=246.9709]
Training: VAE decoder with masked batch labels:   1%|          | 21/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=22/3000, vae_loss=246.6153]
Training: VAE decoder with masked batch labels:   1%|          | 22/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=23/3000, vae_loss=246.4022]
Training: VAE decoder with masked batch labels:   1%|          | 23/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=24/3000, vae_loss=246.3352]
Training: VAE decoder with masked batch labels:   1%|          | 24/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=25/3000, vae_loss=247.6205]
Training: VAE decoder with masked batch labels:   1%|          | 25/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=26/3000, vae_loss=246.4379]
Training: VAE decoder with masked batch labels:   1%|          | 26/3000 [00:00<00:35, 82.94it/s, cycle_loss=0.0000, epoch=27/3000, vae_loss=246.0719]
Training: VAE decoder with masked batch labels:   1%|          | 27/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=27/3000, vae_loss=246.0719]
Training: VAE decoder with masked batch labels:   1%|          | 27/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=28/3000, vae_loss=246.4838]
Training: VAE decoder with masked batch labels:   1%|          | 28/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=29/3000, vae_loss=246.6034]
Training: VAE decoder with masked batch labels:   1%|          | 29/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=30/3000, vae_loss=246.3559]
Training: VAE decoder with masked batch labels:   1%|          | 30/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=31/3000, vae_loss=246.3164]
Training: VAE decoder with masked batch labels:   1%|          | 31/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=32/3000, vae_loss=246.5924]
Training: VAE decoder with masked batch labels:   1%|          | 32/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=33/3000, vae_loss=246.3446]
Training: VAE decoder with masked batch labels:   1%|          | 33/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=34/3000, vae_loss=246.0271]
Training: VAE decoder with masked batch labels:   1%|          | 34/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=35/3000, vae_loss=246.4803]
Training: VAE decoder with masked batch labels:   1%|          | 35/3000 [00:00<00:35, 84.24it/s, cycle_loss=0.0000, epoch=36/3000, vae_loss=246.5032]
Training: VAE decoder with masked batch labels:   1%|          | 36/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=36/3000, vae_loss=246.5032]
Training: VAE decoder with masked batch labels:   1%|          | 36/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=37/3000, vae_loss=246.3652]
Training: VAE decoder with masked batch labels:   1%|          | 37/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=38/3000, vae_loss=246.6130]
Training: VAE decoder with masked batch labels:   1%|▏         | 38/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=39/3000, vae_loss=246.1198]
Training: VAE decoder with masked batch labels:   1%|▏         | 39/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=40/3000, vae_loss=246.2595]
Training: VAE decoder with masked batch labels:   1%|▏         | 40/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=41/3000, vae_loss=246.5699]
Training: VAE decoder with masked batch labels:   1%|▏         | 41/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=42/3000, vae_loss=247.1624]
Training: VAE decoder with masked batch labels:   1%|▏         | 42/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=43/3000, vae_loss=246.1066]
Training: VAE decoder with masked batch labels:   1%|▏         | 43/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=44/3000, vae_loss=246.4214]
Training: VAE decoder with masked batch labels:   1%|▏         | 44/3000 [00:00<00:35, 84.09it/s, cycle_loss=0.0000, epoch=45/3000, vae_loss=246.9535]
Training: VAE decoder with masked batch labels:   2%|▏         | 45/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=45/3000, vae_loss=246.9535]
Training: VAE decoder with masked batch labels:   2%|▏         | 45/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=46/3000, vae_loss=246.6903]
Training: VAE decoder with masked batch labels:   2%|▏         | 46/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=47/3000, vae_loss=247.5026]
Training: VAE decoder with masked batch labels:   2%|▏         | 47/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=48/3000, vae_loss=246.6303]
Training: VAE decoder with masked batch labels:   2%|▏         | 48/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=49/3000, vae_loss=246.0912]
Training: VAE decoder with masked batch labels:   2%|▏         | 49/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=50/3000, vae_loss=246.6974]
Training: VAE decoder with masked batch labels:   2%|▏         | 50/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=51/3000, vae_loss=246.1318]
Training: VAE decoder with masked batch labels:   2%|▏         | 51/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=52/3000, vae_loss=246.0296]
Training: VAE decoder with masked batch labels:   2%|▏         | 52/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=53/3000, vae_loss=246.5386]
Training: VAE decoder with masked batch labels:   2%|▏         | 53/3000 [00:00<00:34, 84.69it/s, cycle_loss=0.0000, epoch=54/3000, vae_loss=246.9914]
Training: VAE decoder with masked batch labels:   2%|▏         | 54/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=54/3000, vae_loss=246.9914]
Training: VAE decoder with masked batch labels:   2%|▏         | 54/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=55/3000, vae_loss=247.1254]
Training: VAE decoder with masked batch labels:   2%|▏         | 55/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=56/3000, vae_loss=246.6173]
Training: VAE decoder with masked batch labels:   2%|▏         | 56/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=57/3000, vae_loss=246.4234]
Training: VAE decoder with masked batch labels:   2%|▏         | 57/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=58/3000, vae_loss=246.3350]
Training: VAE decoder with masked batch labels:   2%|▏         | 58/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=59/3000, vae_loss=247.1567]
Training: VAE decoder with masked batch labels:   2%|▏         | 59/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=60/3000, vae_loss=246.6375]
Training: VAE decoder with masked batch labels:   2%|▏         | 60/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=61/3000, vae_loss=246.3727]
Training: VAE decoder with masked batch labels:   2%|▏         | 61/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=62/3000, vae_loss=246.6143]
Training: VAE decoder with masked batch labels:   2%|▏         | 62/3000 [00:00<00:34, 85.23it/s, cycle_loss=0.0000, epoch=63/3000, vae_loss=246.7723]
Training: VAE decoder with masked batch labels:   2%|▏         | 63/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=63/3000, vae_loss=246.7723]
Training: VAE decoder with masked batch labels:   2%|▏         | 63/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=64/3000, vae_loss=246.5842]
Training: VAE decoder with masked batch labels:   2%|▏         | 64/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=65/3000, vae_loss=246.4711]
Training: VAE decoder with masked batch labels:   2%|▏         | 65/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=66/3000, vae_loss=246.8059]
Training: VAE decoder with masked batch labels:   2%|▏         | 66/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=67/3000, vae_loss=246.3546]
Training: VAE decoder with masked batch labels:   2%|▏         | 67/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=68/3000, vae_loss=246.1449]
Training: VAE decoder with masked batch labels:   2%|▏         | 68/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=69/3000, vae_loss=246.3841]
Training: VAE decoder with masked batch labels:   2%|▏         | 69/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=70/3000, vae_loss=246.7048]
Training: VAE decoder with masked batch labels:   2%|▏         | 70/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=71/3000, vae_loss=246.2152]
Training: VAE decoder with masked batch labels:   2%|▏         | 71/3000 [00:00<00:34, 85.97it/s, cycle_loss=0.0000, epoch=72/3000, vae_loss=247.1388]
Training: VAE decoder with masked batch labels:   2%|▏         | 72/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=72/3000, vae_loss=247.1388]
Training: VAE decoder with masked batch labels:   2%|▏         | 72/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=73/3000, vae_loss=245.8164]
Training: VAE decoder with masked batch labels:   2%|▏         | 73/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=74/3000, vae_loss=246.6209]
Training: VAE decoder with masked batch labels:   2%|▏         | 74/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=75/3000, vae_loss=246.4974]
Training: VAE decoder with masked batch labels:   2%|▎         | 75/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=76/3000, vae_loss=246.3682]
Training: VAE decoder with masked batch labels:   3%|▎         | 76/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=77/3000, vae_loss=246.0853]
Training: VAE decoder with masked batch labels:   3%|▎         | 77/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=78/3000, vae_loss=246.5655]
Training: VAE decoder with masked batch labels:   3%|▎         | 78/3000 [00:00<00:34, 85.94it/s, cycle_loss=0.0000, epoch=79/3000, vae_loss=246.1647]
Training: VAE decoder with masked batch labels:   3%|▎         | 79/3000 [00:00<00:33, 85.94it/s, cycle_loss=0.0000, epoch=80/3000, vae_loss=246.6351]
Training: VAE decoder with masked batch labels:   3%|▎         | 80/3000 [00:00<00:33, 85.94it/s, cycle_loss=0.0000, epoch=81/3000, vae_loss=246.8804]
Training: VAE decoder with masked batch labels:   3%|▎         | 81/3000 [00:00<00:33, 86.22it/s, cycle_loss=0.0000, epoch=81/3000, vae_loss=246.8804]
Training: VAE decoder with masked batch labels:   3%|▎         | 81/3000 [00:00<00:33, 86.22it/s, cycle_loss=0.0000, epoch=82/3000, vae_loss=247.1920]
Training: VAE decoder with masked batch labels:   3%|▎         | 82/3000 [00:00<00:33, 86.22it/s, cycle_loss=0.0000, epoch=83/3000, vae_loss=246.7407]
Training: VAE decoder with masked batch labels:   3%|▎         | 83/3000 [00:00<00:33, 86.22it/s, cycle_loss=0.0000, epoch=84/3000, vae_loss=246.4963]
Training: VAE decoder with masked batch labels:   3%|▎         | 84/3000 [00:00<00:33, 86.22it/s, cycle_loss=0.0000, epoch=85/3000, vae_loss=246.4569]
Training: VAE decoder with masked batch labels:   3%|▎         | 85/3000 [00:01<00:33, 86.22it/s, cycle_loss=0.0000, epoch=86/3000, vae_loss=246.4616]
Training: VAE decoder with masked batch labels:   3%|▎         | 86/3000 [00:01<00:33, 86.22it/s, cycle_loss=0.0000, epoch=87/3000, vae_loss=246.3858]
Training: VAE decoder with masked batch labels:   3%|▎         | 87/3000 [00:01<00:33, 86.22it/s, cycle_loss=0.0000, epoch=88/3000, vae_loss=247.1745]
Training: VAE decoder with masked batch labels:   3%|▎         | 88/3000 [00:01<00:33, 86.22it/s, cycle_loss=0.0000, epoch=89/3000, vae_loss=246.1974]
Training: VAE decoder with masked batch labels:   3%|▎         | 89/3000 [00:01<00:33, 86.22it/s, cycle_loss=0.0000, epoch=90/3000, vae_loss=247.6571]
Training: VAE decoder with masked batch labels:   3%|▎         | 90/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=90/3000, vae_loss=247.6571]
Training: VAE decoder with masked batch labels:   3%|▎         | 90/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=91/3000, vae_loss=246.4232]
Training: VAE decoder with masked batch labels:   3%|▎         | 91/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=92/3000, vae_loss=246.6957]
Training: VAE decoder with masked batch labels:   3%|▎         | 92/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=93/3000, vae_loss=246.3678]
Training: VAE decoder with masked batch labels:   3%|▎         | 93/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=94/3000, vae_loss=246.5805]
Training: VAE decoder with masked batch labels:   3%|▎         | 94/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=95/3000, vae_loss=246.4308]
Training: VAE decoder with masked batch labels:   3%|▎         | 95/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=96/3000, vae_loss=246.9686]
Training: VAE decoder with masked batch labels:   3%|▎         | 96/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=97/3000, vae_loss=247.0953]
Training: VAE decoder with masked batch labels:   3%|▎         | 97/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=98/3000, vae_loss=246.4517]
Training: VAE decoder with masked batch labels:   3%|▎         | 98/3000 [00:01<00:33, 85.74it/s, cycle_loss=0.0000, epoch=99/3000, vae_loss=246.7906]
Training: VAE decoder with masked batch labels:   3%|▎         | 99/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=99/3000, vae_loss=246.7906]
Training: VAE decoder with masked batch labels:   3%|▎         | 99/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=100/3000, vae_loss=246.2303]
Training: VAE decoder with masked batch labels:   3%|▎         | 100/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=101/3000, vae_loss=246.2899]
Training: VAE decoder with masked batch labels:   3%|▎         | 101/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=102/3000, vae_loss=246.5277]
Training: VAE decoder with masked batch labels:   3%|▎         | 102/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=103/3000, vae_loss=246.2568]
Training: VAE decoder with masked batch labels:   3%|▎         | 103/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=104/3000, vae_loss=247.0947]
Training: VAE decoder with masked batch labels:   3%|▎         | 104/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=105/3000, vae_loss=246.5466]
Training: VAE decoder with masked batch labels:   4%|▎         | 105/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=106/3000, vae_loss=247.2693]
Training: VAE decoder with masked batch labels:   4%|▎         | 106/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=107/3000, vae_loss=246.2119]
Training: VAE decoder with masked batch labels:   4%|▎         | 107/3000 [00:01<00:33, 85.76it/s, cycle_loss=0.0000, epoch=108/3000, vae_loss=246.3519]
Training: VAE decoder with masked batch labels:   4%|▎         | 108/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=108/3000, vae_loss=246.3519]
Training: VAE decoder with masked batch labels:   4%|▎         | 108/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=109/3000, vae_loss=247.3766]
Training: VAE decoder with masked batch labels:   4%|▎         | 109/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=110/3000, vae_loss=247.1289]
Training: VAE decoder with masked batch labels:   4%|▎         | 110/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=111/3000, vae_loss=246.5296]
Training: VAE decoder with masked batch labels:   4%|▎         | 111/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=112/3000, vae_loss=246.3129]
Training: VAE decoder with masked batch labels:   4%|▎         | 112/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=113/3000, vae_loss=247.0414]
Training: VAE decoder with masked batch labels:   4%|▍         | 113/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=114/3000, vae_loss=246.2519]
Training: VAE decoder with masked batch labels:   4%|▍         | 114/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=115/3000, vae_loss=246.8073]
Training: VAE decoder with masked batch labels:   4%|▍         | 115/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=116/3000, vae_loss=246.6895]
Training: VAE decoder with masked batch labels:   4%|▍         | 116/3000 [00:01<00:33, 86.32it/s, cycle_loss=0.0000, epoch=117/3000, vae_loss=247.1225]
Training: VAE decoder with masked batch labels:   4%|▍         | 117/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=117/3000, vae_loss=247.1225]
Training: VAE decoder with masked batch labels:   4%|▍         | 117/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=118/3000, vae_loss=246.2926]
Training: VAE decoder with masked batch labels:   4%|▍         | 118/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=119/3000, vae_loss=246.1412]
Training: VAE decoder with masked batch labels:   4%|▍         | 119/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=120/3000, vae_loss=246.8143]
Training: VAE decoder with masked batch labels:   4%|▍         | 120/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=121/3000, vae_loss=246.8864]
Training: VAE decoder with masked batch labels:   4%|▍         | 121/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=122/3000, vae_loss=247.1930]
Training: VAE decoder with masked batch labels:   4%|▍         | 122/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=123/3000, vae_loss=246.1955]
Training: VAE decoder with masked batch labels:   4%|▍         | 123/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=124/3000, vae_loss=248.1849]
Training: VAE decoder with masked batch labels:   4%|▍         | 124/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=125/3000, vae_loss=247.2095]
Training: VAE decoder with masked batch labels:   4%|▍         | 125/3000 [00:01<00:33, 86.13it/s, cycle_loss=0.0000, epoch=126/3000, vae_loss=246.9662]
Training: VAE decoder with masked batch labels:   4%|▍         | 126/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=126/3000, vae_loss=246.9662]
Training: VAE decoder with masked batch labels:   4%|▍         | 126/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=127/3000, vae_loss=246.5772]
Training: VAE decoder with masked batch labels:   4%|▍         | 127/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=128/3000, vae_loss=246.4428]
Training: VAE decoder with masked batch labels:   4%|▍         | 128/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=129/3000, vae_loss=247.5324]
Training: VAE decoder with masked batch labels:   4%|▍         | 129/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=130/3000, vae_loss=247.0297]
Training: VAE decoder with masked batch labels:   4%|▍         | 130/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=131/3000, vae_loss=247.2488]
Training: VAE decoder with masked batch labels:   4%|▍         | 131/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=132/3000, vae_loss=246.5677]
Training: VAE decoder with masked batch labels:   4%|▍         | 132/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=133/3000, vae_loss=246.8650]
Training: VAE decoder with masked batch labels:   4%|▍         | 133/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=134/3000, vae_loss=246.9555]
Training: VAE decoder with masked batch labels:   4%|▍         | 134/3000 [00:01<00:33, 85.85it/s, cycle_loss=0.0000, epoch=135/3000, vae_loss=246.2263]
Training: VAE decoder with masked batch labels:   4%|▍         | 135/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=135/3000, vae_loss=246.2263]
Training: VAE decoder with masked batch labels:   4%|▍         | 135/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=136/3000, vae_loss=246.6999]
Training: VAE decoder with masked batch labels:   5%|▍         | 136/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=137/3000, vae_loss=246.5898]
Training: VAE decoder with masked batch labels:   5%|▍         | 137/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=138/3000, vae_loss=246.6201]
Training: VAE decoder with masked batch labels:   5%|▍         | 138/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=139/3000, vae_loss=246.8559]
Training: VAE decoder with masked batch labels:   5%|▍         | 139/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=140/3000, vae_loss=246.9882]
Training: VAE decoder with masked batch labels:   5%|▍         | 140/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=141/3000, vae_loss=246.8341]
Training: VAE decoder with masked batch labels:   5%|▍         | 141/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=142/3000, vae_loss=246.9845]
Training: VAE decoder with masked batch labels:   5%|▍         | 142/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=143/3000, vae_loss=246.9478]
Training: VAE decoder with masked batch labels:   5%|▍         | 143/3000 [00:01<00:33, 85.63it/s, cycle_loss=0.0000, epoch=144/3000, vae_loss=246.8946]
Training: VAE decoder with masked batch labels:   5%|▍         | 144/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=144/3000, vae_loss=246.8946]
Training: VAE decoder with masked batch labels:   5%|▍         | 144/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=145/3000, vae_loss=247.4626]
Training: VAE decoder with masked batch labels:   5%|▍         | 145/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=146/3000, vae_loss=247.2519]
Training: VAE decoder with masked batch labels:   5%|▍         | 146/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=147/3000, vae_loss=246.8096]
Training: VAE decoder with masked batch labels:   5%|▍         | 147/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=148/3000, vae_loss=247.7380]
Training: VAE decoder with masked batch labels:   5%|▍         | 148/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=149/3000, vae_loss=246.6514]
Training: VAE decoder with masked batch labels:   5%|▍         | 149/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=150/3000, vae_loss=247.0054]
Training: VAE decoder with masked batch labels:   5%|▌         | 150/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=151/3000, vae_loss=247.1055]
Training: VAE decoder with masked batch labels:   5%|▌         | 151/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=152/3000, vae_loss=247.3679]
Training: VAE decoder with masked batch labels:   5%|▌         | 152/3000 [00:01<00:33, 84.73it/s, cycle_loss=0.0000, epoch=153/3000, vae_loss=247.4182]
Training: VAE decoder with masked batch labels:   5%|▌         | 153/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=153/3000, vae_loss=247.4182]
Training: VAE decoder with masked batch labels:   5%|▌         | 153/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=154/3000, vae_loss=246.2652]
Training: VAE decoder with masked batch labels:   5%|▌         | 154/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=155/3000, vae_loss=247.3315]
Training: VAE decoder with masked batch labels:   5%|▌         | 155/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=156/3000, vae_loss=247.0744]
Training: VAE decoder with masked batch labels:   5%|▌         | 156/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=157/3000, vae_loss=246.6294]
Training: VAE decoder with masked batch labels:   5%|▌         | 157/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=158/3000, vae_loss=246.8665]
Training: VAE decoder with masked batch labels:   5%|▌         | 158/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=159/3000, vae_loss=246.8316]
Training: VAE decoder with masked batch labels:   5%|▌         | 159/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=160/3000, vae_loss=246.9829]
Training: VAE decoder with masked batch labels:   5%|▌         | 160/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=161/3000, vae_loss=247.2341]
Training: VAE decoder with masked batch labels:   5%|▌         | 161/3000 [00:01<00:33, 84.71it/s, cycle_loss=0.0000, epoch=162/3000, vae_loss=247.0662]
Training: VAE decoder with masked batch labels:   5%|▌         | 162/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=162/3000, vae_loss=247.0662]
Training: VAE decoder with masked batch labels:   5%|▌         | 162/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=163/3000, vae_loss=247.6166]
Training: VAE decoder with masked batch labels:   5%|▌         | 163/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=164/3000, vae_loss=247.7917]
Training: VAE decoder with masked batch labels:   5%|▌         | 164/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=165/3000, vae_loss=247.1411]
Training: VAE decoder with masked batch labels:   6%|▌         | 165/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=166/3000, vae_loss=246.9416]
Training: VAE decoder with masked batch labels:   6%|▌         | 166/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=167/3000, vae_loss=247.6217]
Training: VAE decoder with masked batch labels:   6%|▌         | 167/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=168/3000, vae_loss=248.5630]
Training: VAE decoder with masked batch labels:   6%|▌         | 168/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=169/3000, vae_loss=247.0511]
Training: VAE decoder with masked batch labels:   6%|▌         | 169/3000 [00:01<00:33, 84.39it/s, cycle_loss=0.0000, epoch=170/3000, vae_loss=246.7839]
Training: VAE decoder with masked batch labels:   6%|▌         | 170/3000 [00:02<00:33, 84.39it/s, cycle_loss=0.0000, epoch=171/3000, vae_loss=246.8788]
Training: VAE decoder with masked batch labels:   6%|▌         | 171/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=171/3000, vae_loss=246.8788]
Training: VAE decoder with masked batch labels:   6%|▌         | 171/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=172/3000, vae_loss=247.7249]
Training: VAE decoder with masked batch labels:   6%|▌         | 172/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=173/3000, vae_loss=247.5446]
Training: VAE decoder with masked batch labels:   6%|▌         | 173/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=174/3000, vae_loss=247.0678]
Training: VAE decoder with masked batch labels:   6%|▌         | 174/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=175/3000, vae_loss=247.6144]
Training: VAE decoder with masked batch labels:   6%|▌         | 175/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=176/3000, vae_loss=247.1444]
Training: VAE decoder with masked batch labels:   6%|▌         | 176/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=177/3000, vae_loss=247.1914]
Training: VAE decoder with masked batch labels:   6%|▌         | 177/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=178/3000, vae_loss=247.7873]
Training: VAE decoder with masked batch labels:   6%|▌         | 178/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=179/3000, vae_loss=247.2868]
Training: VAE decoder with masked batch labels:   6%|▌         | 179/3000 [00:02<00:33, 85.05it/s, cycle_loss=0.0000, epoch=180/3000, vae_loss=247.5835]
Training: VAE decoder with masked batch labels:   6%|▌         | 180/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=180/3000, vae_loss=247.5835]
Training: VAE decoder with masked batch labels:   6%|▌         | 180/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=181/3000, vae_loss=246.7772]
Training: VAE decoder with masked batch labels:   6%|▌         | 181/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=182/3000, vae_loss=247.4081]
Training: VAE decoder with masked batch labels:   6%|▌         | 182/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=183/3000, vae_loss=247.3524]
Training: VAE decoder with masked batch labels:   6%|▌         | 183/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=184/3000, vae_loss=247.0735]
Training: VAE decoder with masked batch labels:   6%|▌         | 184/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=185/3000, vae_loss=246.9485]
Training: VAE decoder with masked batch labels:   6%|▌         | 185/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=186/3000, vae_loss=247.9984]
Training: VAE decoder with masked batch labels:   6%|▌         | 186/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=187/3000, vae_loss=247.4828]
Training: VAE decoder with masked batch labels:   6%|▌         | 187/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=188/3000, vae_loss=247.3994]
Training: VAE decoder with masked batch labels:   6%|▋         | 188/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=189/3000, vae_loss=248.4503]
Training: VAE decoder with masked batch labels:   6%|▋         | 189/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=189/3000, vae_loss=248.4503]
Training: VAE decoder with masked batch labels:   6%|▋         | 189/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=190/3000, vae_loss=247.2879]
Training: VAE decoder with masked batch labels:   6%|▋         | 190/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=191/3000, vae_loss=248.3407]
Training: VAE decoder with masked batch labels:   6%|▋         | 191/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=192/3000, vae_loss=246.8550]
Training: VAE decoder with masked batch labels:   6%|▋         | 192/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=193/3000, vae_loss=247.3604]
Training: VAE decoder with masked batch labels:   6%|▋         | 193/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=194/3000, vae_loss=247.6943]
Training: VAE decoder with masked batch labels:   6%|▋         | 194/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=195/3000, vae_loss=247.1888]
Training: VAE decoder with masked batch labels:   6%|▋         | 195/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=196/3000, vae_loss=247.1046]
Training: VAE decoder with masked batch labels:   7%|▋         | 196/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=197/3000, vae_loss=248.4066]
Training: VAE decoder with masked batch labels:   7%|▋         | 197/3000 [00:02<00:33, 84.08it/s, cycle_loss=0.0000, epoch=198/3000, vae_loss=248.1383]
Training: VAE decoder with masked batch labels:   7%|▋         | 198/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=198/3000, vae_loss=248.1383]
Training: VAE decoder with masked batch labels:   7%|▋         | 198/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=199/3000, vae_loss=248.6050]
Training: VAE decoder with masked batch labels:   7%|▋         | 199/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=200/3000, vae_loss=247.6834]
Training: VAE decoder with masked batch labels:   7%|▋         | 200/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=201/3000, vae_loss=247.5917]
Training: VAE decoder with masked batch labels:   7%|▋         | 201/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=202/3000, vae_loss=247.6562]
Training: VAE decoder with masked batch labels:   7%|▋         | 202/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=203/3000, vae_loss=247.9053]
Training: VAE decoder with masked batch labels:   7%|▋         | 203/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=204/3000, vae_loss=248.4461]
Training: VAE decoder with masked batch labels:   7%|▋         | 204/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=205/3000, vae_loss=247.0711]
Training: VAE decoder with masked batch labels:   7%|▋         | 205/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=206/3000, vae_loss=247.3374]
Training: VAE decoder with masked batch labels:   7%|▋         | 206/3000 [00:02<00:33, 84.21it/s, cycle_loss=0.0000, epoch=207/3000, vae_loss=247.5950]
Training: VAE decoder with masked batch labels:   7%|▋         | 207/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=207/3000, vae_loss=247.5950]
Training: VAE decoder with masked batch labels:   7%|▋         | 207/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=208/3000, vae_loss=247.6409]
Training: VAE decoder with masked batch labels:   7%|▋         | 208/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=209/3000, vae_loss=248.5758]
Training: VAE decoder with masked batch labels:   7%|▋         | 209/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=210/3000, vae_loss=247.9567]
Training: VAE decoder with masked batch labels:   7%|▋         | 210/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=211/3000, vae_loss=248.5832]
Training: VAE decoder with masked batch labels:   7%|▋         | 211/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=212/3000, vae_loss=248.1194]
Training: VAE decoder with masked batch labels:   7%|▋         | 212/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=213/3000, vae_loss=247.7385]
Training: VAE decoder with masked batch labels:   7%|▋         | 213/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=214/3000, vae_loss=248.9889]
Training: VAE decoder with masked batch labels:   7%|▋         | 214/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=215/3000, vae_loss=248.2174]
Training: VAE decoder with masked batch labels:   7%|▋         | 215/3000 [00:02<00:33, 82.89it/s, cycle_loss=0.0000, epoch=216/3000, vae_loss=248.2267]
Training: VAE decoder with masked batch labels:   7%|▋         | 216/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=216/3000, vae_loss=248.2267]
Training: VAE decoder with masked batch labels:   7%|▋         | 216/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=217/3000, vae_loss=248.4166]
Training: VAE decoder with masked batch labels:   7%|▋         | 217/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=218/3000, vae_loss=247.0868]
Training: VAE decoder with masked batch labels:   7%|▋         | 218/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=219/3000, vae_loss=247.4203]
Training: VAE decoder with masked batch labels:   7%|▋         | 219/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=220/3000, vae_loss=247.3761]
Training: VAE decoder with masked batch labels:   7%|▋         | 220/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=221/3000, vae_loss=248.0598]
Training: VAE decoder with masked batch labels:   7%|▋         | 221/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=222/3000, vae_loss=248.8479]
Training: VAE decoder with masked batch labels:   7%|▋         | 222/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=223/3000, vae_loss=247.2441]
Training: VAE decoder with masked batch labels:   7%|▋         | 223/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=224/3000, vae_loss=247.8506]
Training: VAE decoder with masked batch labels:   7%|▋         | 224/3000 [00:02<00:33, 83.83it/s, cycle_loss=0.0000, epoch=225/3000, vae_loss=248.5195]
Training: VAE decoder with masked batch labels:   8%|▊         | 225/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=225/3000, vae_loss=248.5195]
Training: VAE decoder with masked batch labels:   8%|▊         | 225/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=226/3000, vae_loss=247.4164]
Training: VAE decoder with masked batch labels:   8%|▊         | 226/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=227/3000, vae_loss=247.6608]
Training: VAE decoder with masked batch labels:   8%|▊         | 227/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=228/3000, vae_loss=248.0970]
Training: VAE decoder with masked batch labels:   8%|▊         | 228/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=229/3000, vae_loss=247.8715]
Training: VAE decoder with masked batch labels:   8%|▊         | 229/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=230/3000, vae_loss=248.9195]
Training: VAE decoder with masked batch labels:   8%|▊         | 230/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=231/3000, vae_loss=247.7700]
Training: VAE decoder with masked batch labels:   8%|▊         | 231/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=232/3000, vae_loss=248.6870]
Training: VAE decoder with masked batch labels:   8%|▊         | 232/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=233/3000, vae_loss=248.3543]
Training: VAE decoder with masked batch labels:   8%|▊         | 233/3000 [00:02<00:33, 83.48it/s, cycle_loss=0.0000, epoch=234/3000, vae_loss=247.8724]
Training: VAE decoder with masked batch labels:   8%|▊         | 234/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=234/3000, vae_loss=247.8724]
Training: VAE decoder with masked batch labels:   8%|▊         | 234/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=235/3000, vae_loss=248.7107]
Training: VAE decoder with masked batch labels:   8%|▊         | 235/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=236/3000, vae_loss=249.1304]
Training: VAE decoder with masked batch labels:   8%|▊         | 236/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=237/3000, vae_loss=248.0145]
Training: VAE decoder with masked batch labels:   8%|▊         | 237/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=238/3000, vae_loss=248.2326]
Training: VAE decoder with masked batch labels:   8%|▊         | 238/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=239/3000, vae_loss=247.8806]
Training: VAE decoder with masked batch labels:   8%|▊         | 239/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=240/3000, vae_loss=248.1351]
Training: VAE decoder with masked batch labels:   8%|▊         | 240/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=241/3000, vae_loss=248.8290]
Training: VAE decoder with masked batch labels:   8%|▊         | 241/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=242/3000, vae_loss=248.8356]
Training: VAE decoder with masked batch labels:   8%|▊         | 242/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=243/3000, vae_loss=249.2828]
Training: VAE decoder with masked batch labels:   8%|▊         | 243/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=243/3000, vae_loss=249.2828]
Training: VAE decoder with masked batch labels:   8%|▊         | 243/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=244/3000, vae_loss=247.9360]
Training: VAE decoder with masked batch labels:   8%|▊         | 244/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=245/3000, vae_loss=249.2407]
Training: VAE decoder with masked batch labels:   8%|▊         | 245/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=246/3000, vae_loss=248.3147]
Training: VAE decoder with masked batch labels:   8%|▊         | 246/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=247/3000, vae_loss=249.2599]
Training: VAE decoder with masked batch labels:   8%|▊         | 247/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=248/3000, vae_loss=248.8061]
Training: VAE decoder with masked batch labels:   8%|▊         | 248/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=249/3000, vae_loss=247.9637]
Training: VAE decoder with masked batch labels:   8%|▊         | 249/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=250/3000, vae_loss=248.3911]
Training: VAE decoder with masked batch labels:   8%|▊         | 250/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=251/3000, vae_loss=249.0761]
Training: VAE decoder with masked batch labels:   8%|▊         | 251/3000 [00:02<00:33, 81.88it/s, cycle_loss=0.0000, epoch=252/3000, vae_loss=249.5432]
Training: VAE decoder with masked batch labels:   8%|▊         | 252/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=252/3000, vae_loss=249.5432]
Training: VAE decoder with masked batch labels:   8%|▊         | 252/3000 [00:02<00:33, 82.83it/s, cycle_loss=0.0000, epoch=253/3000, vae_loss=247.4544]
Training: VAE decoder with masked batch labels:   8%|▊         | 253/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=254/3000, vae_loss=247.3689]
Training: VAE decoder with masked batch labels:   8%|▊         | 254/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=255/3000, vae_loss=248.7897]
Training: VAE decoder with masked batch labels:   8%|▊         | 255/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=256/3000, vae_loss=248.2143]
Training: VAE decoder with masked batch labels:   9%|▊         | 256/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=257/3000, vae_loss=248.0475]
Training: VAE decoder with masked batch labels:   9%|▊         | 257/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=258/3000, vae_loss=248.3248]
Training: VAE decoder with masked batch labels:   9%|▊         | 258/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=259/3000, vae_loss=248.8560]
Training: VAE decoder with masked batch labels:   9%|▊         | 259/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=260/3000, vae_loss=248.0404]
Training: VAE decoder with masked batch labels:   9%|▊         | 260/3000 [00:03<00:33, 82.83it/s, cycle_loss=0.0000, epoch=261/3000, vae_loss=249.9836]
Training: VAE decoder with masked batch labels:   9%|▊         | 261/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=261/3000, vae_loss=249.9836]
Training: VAE decoder with masked batch labels:   9%|▊         | 261/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=262/3000, vae_loss=248.1816]
Training: VAE decoder with masked batch labels:   9%|▊         | 262/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=263/3000, vae_loss=247.9284]
Training: VAE decoder with masked batch labels:   9%|▉         | 263/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=264/3000, vae_loss=249.0479]
Training: VAE decoder with masked batch labels:   9%|▉         | 264/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=265/3000, vae_loss=249.3615]
Training: VAE decoder with masked batch labels:   9%|▉         | 265/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=266/3000, vae_loss=248.8936]
Training: VAE decoder with masked batch labels:   9%|▉         | 266/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=267/3000, vae_loss=249.3838]
Training: VAE decoder with masked batch labels:   9%|▉         | 267/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=268/3000, vae_loss=248.9284]
Training: VAE decoder with masked batch labels:   9%|▉         | 268/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=269/3000, vae_loss=247.7783]
Training: VAE decoder with masked batch labels:   9%|▉         | 269/3000 [00:03<00:32, 83.71it/s, cycle_loss=0.0000, epoch=270/3000, vae_loss=249.5651]
Training: VAE decoder with masked batch labels:   9%|▉         | 270/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=270/3000, vae_loss=249.5651]
Training: VAE decoder with masked batch labels:   9%|▉         | 270/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=271/3000, vae_loss=250.6140]
Training: VAE decoder with masked batch labels:   9%|▉         | 271/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=272/3000, vae_loss=249.1136]
Training: VAE decoder with masked batch labels:   9%|▉         | 272/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=273/3000, vae_loss=249.6934]
Training: VAE decoder with masked batch labels:   9%|▉         | 273/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=274/3000, vae_loss=248.6822]
Training: VAE decoder with masked batch labels:   9%|▉         | 274/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=275/3000, vae_loss=250.1289]
Training: VAE decoder with masked batch labels:   9%|▉         | 275/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=276/3000, vae_loss=249.6361]
Training: VAE decoder with masked batch labels:   9%|▉         | 276/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=277/3000, vae_loss=248.9174]
Training: VAE decoder with masked batch labels:   9%|▉         | 277/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=278/3000, vae_loss=248.7642]
Training: VAE decoder with masked batch labels:   9%|▉         | 278/3000 [00:03<00:32, 84.20it/s, cycle_loss=0.0000, epoch=279/3000, vae_loss=249.6903]
Training: VAE decoder with masked batch labels:   9%|▉         | 279/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=279/3000, vae_loss=249.6903]
Training: VAE decoder with masked batch labels:   9%|▉         | 279/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=280/3000, vae_loss=249.8971]
Training: VAE decoder with masked batch labels:   9%|▉         | 280/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=281/3000, vae_loss=248.4240]
Training: VAE decoder with masked batch labels:   9%|▉         | 281/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=282/3000, vae_loss=250.9471]
Training: VAE decoder with masked batch labels:   9%|▉         | 282/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=283/3000, vae_loss=249.6725]
Training: VAE decoder with masked batch labels:   9%|▉         | 283/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=284/3000, vae_loss=249.4984]
Training: VAE decoder with masked batch labels:   9%|▉         | 284/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=285/3000, vae_loss=249.0546]
Training: VAE decoder with masked batch labels:  10%|▉         | 285/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=286/3000, vae_loss=250.5766]
Training: VAE decoder with masked batch labels:  10%|▉         | 286/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=287/3000, vae_loss=250.6480]
Training: VAE decoder with masked batch labels:  10%|▉         | 287/3000 [00:03<00:31, 85.06it/s, cycle_loss=0.0000, epoch=288/3000, vae_loss=249.3765]
Training: VAE decoder with masked batch labels:  10%|▉         | 288/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=288/3000, vae_loss=249.3765]
Training: VAE decoder with masked batch labels:  10%|▉         | 288/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=289/3000, vae_loss=250.6039]
Training: VAE decoder with masked batch labels:  10%|▉         | 289/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=290/3000, vae_loss=248.8987]
Training: VAE decoder with masked batch labels:  10%|▉         | 290/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=291/3000, vae_loss=250.6042]
Training: VAE decoder with masked batch labels:  10%|▉         | 291/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=292/3000, vae_loss=248.7234]
Training: VAE decoder with masked batch labels:  10%|▉         | 292/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=293/3000, vae_loss=250.0531]
Training: VAE decoder with masked batch labels:  10%|▉         | 293/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=294/3000, vae_loss=249.1224]
Training: VAE decoder with masked batch labels:  10%|▉         | 294/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=295/3000, vae_loss=250.0428]
Training: VAE decoder with masked batch labels:  10%|▉         | 295/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=296/3000, vae_loss=252.4545]
Training: VAE decoder with masked batch labels:  10%|▉         | 296/3000 [00:03<00:31, 85.40it/s, cycle_loss=0.0000, epoch=297/3000, vae_loss=249.4689]
Training: VAE decoder with masked batch labels:  10%|▉         | 297/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=297/3000, vae_loss=249.4689]
Training: VAE decoder with masked batch labels:  10%|▉         | 297/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=298/3000, vae_loss=249.1568]
Training: VAE decoder with masked batch labels:  10%|▉         | 298/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=299/3000, vae_loss=250.3201]
Training: VAE decoder with masked batch labels:  10%|▉         | 299/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=300/3000, vae_loss=250.7019]
Training: VAE decoder with masked batch labels:  10%|█         | 300/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=301/3000, vae_loss=249.6595]
Training: VAE decoder with masked batch labels:  10%|█         | 301/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=302/3000, vae_loss=249.9930]
Training: VAE decoder with masked batch labels:  10%|█         | 302/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=303/3000, vae_loss=248.7086]
Training: VAE decoder with masked batch labels:  10%|█         | 303/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=304/3000, vae_loss=250.1964]
Training: VAE decoder with masked batch labels:  10%|█         | 304/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=305/3000, vae_loss=249.2782]
Training: VAE decoder with masked batch labels:  10%|█         | 305/3000 [00:03<00:31, 85.61it/s, cycle_loss=0.0000, epoch=306/3000, vae_loss=250.7622]
Training: VAE decoder with masked batch labels:  10%|█         | 306/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=306/3000, vae_loss=250.7622]
Training: VAE decoder with masked batch labels:  10%|█         | 306/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=307/3000, vae_loss=250.1519]
Training: VAE decoder with masked batch labels:  10%|█         | 307/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=308/3000, vae_loss=248.8731]
Training: VAE decoder with masked batch labels:  10%|█         | 308/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=309/3000, vae_loss=250.1993]
Training: VAE decoder with masked batch labels:  10%|█         | 309/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=310/3000, vae_loss=250.9287]
Training: VAE decoder with masked batch labels:  10%|█         | 310/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=311/3000, vae_loss=249.9337]
Training: VAE decoder with masked batch labels:  10%|█         | 311/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=312/3000, vae_loss=249.1324]
Training: VAE decoder with masked batch labels:  10%|█         | 312/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=313/3000, vae_loss=251.1226]
Training: VAE decoder with masked batch labels:  10%|█         | 313/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=314/3000, vae_loss=250.1552]
Training: VAE decoder with masked batch labels:  10%|█         | 314/3000 [00:03<00:31, 85.76it/s, cycle_loss=0.0000, epoch=315/3000, vae_loss=250.4518]
Training: VAE decoder with masked batch labels:  10%|█         | 315/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=315/3000, vae_loss=250.4518]
Training: VAE decoder with masked batch labels:  10%|█         | 315/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=316/3000, vae_loss=249.9562]
Training: VAE decoder with masked batch labels:  11%|█         | 316/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=317/3000, vae_loss=250.3168]
Training: VAE decoder with masked batch labels:  11%|█         | 317/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=318/3000, vae_loss=250.2307]
Training: VAE decoder with masked batch labels:  11%|█         | 318/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=319/3000, vae_loss=249.5244]
Training: VAE decoder with masked batch labels:  11%|█         | 319/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=320/3000, vae_loss=249.4427]
Training: VAE decoder with masked batch labels:  11%|█         | 320/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=321/3000, vae_loss=250.4131]
Training: VAE decoder with masked batch labels:  11%|█         | 321/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=322/3000, vae_loss=250.4123]
Training: VAE decoder with masked batch labels:  11%|█         | 322/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=323/3000, vae_loss=250.9808]
Training: VAE decoder with masked batch labels:  11%|█         | 323/3000 [00:03<00:31, 86.34it/s, cycle_loss=0.0000, epoch=324/3000, vae_loss=249.7412]
Training: VAE decoder with masked batch labels:  11%|█         | 324/3000 [00:03<00:31, 86.22it/s, cycle_loss=0.0000, epoch=324/3000, vae_loss=249.7412]
Training: VAE decoder with masked batch labels:  11%|█         | 324/3000 [00:03<00:31, 86.22it/s, cycle_loss=0.0000, epoch=325/3000, vae_loss=250.8722]
Training: VAE decoder with masked batch labels:  11%|█         | 325/3000 [00:03<00:31, 86.22it/s, cycle_loss=0.0000, epoch=326/3000, vae_loss=251.0694]
Training: VAE decoder with masked batch labels:  11%|█         | 326/3000 [00:03<00:31, 86.22it/s, cycle_loss=0.0000, epoch=327/3000, vae_loss=249.8822]
Training: VAE decoder with masked batch labels:  11%|█         | 327/3000 [00:03<00:31, 86.22it/s, cycle_loss=0.0000, epoch=328/3000, vae_loss=250.3099]
Training: VAE decoder with masked batch labels:  11%|█         | 328/3000 [00:03<00:30, 86.22it/s, cycle_loss=0.0000, epoch=329/3000, vae_loss=250.9211]
Training: VAE decoder with masked batch labels:  11%|█         | 329/3000 [00:03<00:30, 86.22it/s, cycle_loss=0.0000, epoch=330/3000, vae_loss=251.0561]
Training: VAE decoder with masked batch labels:  11%|█         | 330/3000 [00:03<00:30, 86.22it/s, cycle_loss=0.0000, epoch=331/3000, vae_loss=249.9555]
Training: VAE decoder with masked batch labels:  11%|█         | 331/3000 [00:03<00:30, 86.22it/s, cycle_loss=0.0000, epoch=332/3000, vae_loss=249.5797]
Training: VAE decoder with masked batch labels:  11%|█         | 332/3000 [00:03<00:30, 86.22it/s, cycle_loss=0.0000, epoch=333/3000, vae_loss=251.3886]
Training: VAE decoder with masked batch labels:  11%|█         | 333/3000 [00:03<00:31, 85.65it/s, cycle_loss=0.0000, epoch=333/3000, vae_loss=251.3886]
Training: VAE decoder with masked batch labels:  11%|█         | 333/3000 [00:03<00:31, 85.65it/s, cycle_loss=0.0000, epoch=334/3000, vae_loss=250.3342]
Training: VAE decoder with masked batch labels:  11%|█         | 334/3000 [00:03<00:31, 85.65it/s, cycle_loss=0.0000, epoch=335/3000, vae_loss=252.2686]
Training: VAE decoder with masked batch labels:  11%|█         | 335/3000 [00:03<00:31, 85.65it/s, cycle_loss=0.0000, epoch=336/3000, vae_loss=250.2301]
Training: VAE decoder with masked batch labels:  11%|█         | 336/3000 [00:03<00:31, 85.65it/s, cycle_loss=0.0000, epoch=337/3000, vae_loss=251.7762]
Training: VAE decoder with masked batch labels:  11%|█         | 337/3000 [00:03<00:31, 85.65it/s, cycle_loss=0.0000, epoch=338/3000, vae_loss=250.9528]
Training: VAE decoder with masked batch labels:  11%|█▏        | 338/3000 [00:03<00:31, 85.65it/s, cycle_loss=0.0000, epoch=339/3000, vae_loss=250.9867]
Training: VAE decoder with masked batch labels:  11%|█▏        | 339/3000 [00:04<00:31, 85.65it/s, cycle_loss=0.0000, epoch=340/3000, vae_loss=249.1886]
Training: VAE decoder with masked batch labels:  11%|█▏        | 340/3000 [00:04<00:31, 85.65it/s, cycle_loss=0.0000, epoch=341/3000, vae_loss=250.4068]
Training: VAE decoder with masked batch labels:  11%|█▏        | 341/3000 [00:04<00:31, 85.65it/s, cycle_loss=0.0000, epoch=342/3000, vae_loss=250.0031]
Training: VAE decoder with masked batch labels:  11%|█▏        | 342/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=342/3000, vae_loss=250.0031]
Training: VAE decoder with masked batch labels:  11%|█▏        | 342/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=343/3000, vae_loss=250.7803]
Training: VAE decoder with masked batch labels:  11%|█▏        | 343/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=344/3000, vae_loss=251.1927]
Training: VAE decoder with masked batch labels:  11%|█▏        | 344/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=345/3000, vae_loss=250.7314]
Training: VAE decoder with masked batch labels:  12%|█▏        | 345/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=346/3000, vae_loss=251.3882]
Training: VAE decoder with masked batch labels:  12%|█▏        | 346/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=347/3000, vae_loss=250.8198]
Training: VAE decoder with masked batch labels:  12%|█▏        | 347/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=348/3000, vae_loss=252.6827]
Training: VAE decoder with masked batch labels:  12%|█▏        | 348/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=349/3000, vae_loss=251.6035]
Training: VAE decoder with masked batch labels:  12%|█▏        | 349/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=350/3000, vae_loss=250.9897]
Training: VAE decoder with masked batch labels:  12%|█▏        | 350/3000 [00:04<00:30, 86.03it/s, cycle_loss=0.0000, epoch=351/3000, vae_loss=250.3961]
Training: VAE decoder with masked batch labels:  12%|█▏        | 351/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=351/3000, vae_loss=250.3961]
Training: VAE decoder with masked batch labels:  12%|█▏        | 351/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=352/3000, vae_loss=252.7866]
Training: VAE decoder with masked batch labels:  12%|█▏        | 352/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=353/3000, vae_loss=249.4035]
Training: VAE decoder with masked batch labels:  12%|█▏        | 353/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=354/3000, vae_loss=251.7840]
Training: VAE decoder with masked batch labels:  12%|█▏        | 354/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=355/3000, vae_loss=251.4386]
Training: VAE decoder with masked batch labels:  12%|█▏        | 355/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=356/3000, vae_loss=251.0545]
Training: VAE decoder with masked batch labels:  12%|█▏        | 356/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=357/3000, vae_loss=251.3894]
Training: VAE decoder with masked batch labels:  12%|█▏        | 357/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=358/3000, vae_loss=250.8105]
Training: VAE decoder with masked batch labels:  12%|█▏        | 358/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=359/3000, vae_loss=250.8514]
Training: VAE decoder with masked batch labels:  12%|█▏        | 359/3000 [00:04<00:31, 84.94it/s, cycle_loss=0.0000, epoch=360/3000, vae_loss=251.4003]
Training: VAE decoder with masked batch labels:  12%|█▏        | 360/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=360/3000, vae_loss=251.4003]
Training: VAE decoder with masked batch labels:  12%|█▏        | 360/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=361/3000, vae_loss=250.2349]
Training: VAE decoder with masked batch labels:  12%|█▏        | 361/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=362/3000, vae_loss=251.8926]
Training: VAE decoder with masked batch labels:  12%|█▏        | 362/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=363/3000, vae_loss=250.7070]
Training: VAE decoder with masked batch labels:  12%|█▏        | 363/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=364/3000, vae_loss=250.3665]
Training: VAE decoder with masked batch labels:  12%|█▏        | 364/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=365/3000, vae_loss=251.5325]
Training: VAE decoder with masked batch labels:  12%|█▏        | 365/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=366/3000, vae_loss=252.2669]
Training: VAE decoder with masked batch labels:  12%|█▏        | 366/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=367/3000, vae_loss=253.0623]
Training: VAE decoder with masked batch labels:  12%|█▏        | 367/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=368/3000, vae_loss=251.0593]
Training: VAE decoder with masked batch labels:  12%|█▏        | 368/3000 [00:04<00:31, 84.67it/s, cycle_loss=0.0000, epoch=369/3000, vae_loss=251.5022]
Training: VAE decoder with masked batch labels:  12%|█▏        | 369/3000 [00:04<00:31, 84.77it/s, cycle_loss=0.0000, epoch=369/3000, vae_loss=251.5022]
Training: VAE decoder with masked batch labels:  12%|█▏        | 369/3000 [00:04<00:31, 84.77it/s, cycle_loss=0.0000, epoch=370/3000, vae_loss=251.3301]
Training: VAE decoder with masked batch labels:  12%|█▏        | 370/3000 [00:04<00:31, 84.77it/s, cycle_loss=0.0000, epoch=371/3000, vae_loss=251.6346]
Training: VAE decoder with masked batch labels:  12%|█▏        | 371/3000 [00:04<00:31, 84.77it/s, cycle_loss=0.0000, epoch=372/3000, vae_loss=253.8640]
Training: VAE decoder with masked batch labels:  12%|█▏        | 372/3000 [00:04<00:31, 84.77it/s, cycle_loss=0.0000, epoch=373/3000, vae_loss=250.9653]
Training: VAE decoder with masked batch labels:  12%|█▏        | 373/3000 [00:04<00:30, 84.77it/s, cycle_loss=0.0000, epoch=374/3000, vae_loss=254.1428]
Training: VAE decoder with masked batch labels:  12%|█▏        | 374/3000 [00:04<00:30, 84.77it/s, cycle_loss=0.0000, epoch=375/3000, vae_loss=252.3418]
Training: VAE decoder with masked batch labels:  12%|█▎        | 375/3000 [00:04<00:30, 84.77it/s, cycle_loss=0.0000, epoch=376/3000, vae_loss=252.2087]
Training: VAE decoder with masked batch labels:  13%|█▎        | 376/3000 [00:04<00:30, 84.77it/s, cycle_loss=0.0000, epoch=377/3000, vae_loss=252.4715]
Training: VAE decoder with masked batch labels:  13%|█▎        | 377/3000 [00:04<00:30, 84.77it/s, cycle_loss=0.0000, epoch=378/3000, vae_loss=250.5045]
Training: VAE decoder with masked batch labels:  13%|█▎        | 378/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=378/3000, vae_loss=250.5045]
Training: VAE decoder with masked batch labels:  13%|█▎        | 378/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=379/3000, vae_loss=251.3562]
Training: VAE decoder with masked batch labels:  13%|█▎        | 379/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=380/3000, vae_loss=252.0646]
Training: VAE decoder with masked batch labels:  13%|█▎        | 380/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=381/3000, vae_loss=252.2971]
Training: VAE decoder with masked batch labels:  13%|█▎        | 381/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=382/3000, vae_loss=249.8143]
Training: VAE decoder with masked batch labels:  13%|█▎        | 382/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=383/3000, vae_loss=251.9443]
Training: VAE decoder with masked batch labels:  13%|█▎        | 383/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=384/3000, vae_loss=252.4166]
Training: VAE decoder with masked batch labels:  13%|█▎        | 384/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=385/3000, vae_loss=251.7019]
Training: VAE decoder with masked batch labels:  13%|█▎        | 385/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=386/3000, vae_loss=251.6430]
Training: VAE decoder with masked batch labels:  13%|█▎        | 386/3000 [00:04<00:31, 84.10it/s, cycle_loss=0.0000, epoch=387/3000, vae_loss=251.6006]
Training: VAE decoder with masked batch labels:  13%|█▎        | 387/3000 [00:04<00:31, 84.14it/s, cycle_loss=0.0000, epoch=387/3000, vae_loss=251.6006]
Training: VAE decoder with masked batch labels:  13%|█▎        | 387/3000 [00:04<00:31, 84.14it/s, cycle_loss=0.0000, epoch=388/3000, vae_loss=251.8170]
Training: VAE decoder with masked batch labels:  13%|█▎        | 388/3000 [00:04<00:31, 84.14it/s, cycle_loss=0.0000, epoch=389/3000, vae_loss=253.6041]
Training: VAE decoder with masked batch labels:  13%|█▎        | 389/3000 [00:04<00:31, 84.14it/s, cycle_loss=0.0000, epoch=390/3000, vae_loss=249.8839]
Training: VAE decoder with masked batch labels:  13%|█▎        | 390/3000 [00:04<00:31, 84.14it/s, cycle_loss=0.0000, epoch=391/3000, vae_loss=251.7503]
Training: VAE decoder with masked batch labels:  13%|█▎        | 391/3000 [00:04<00:31, 84.14it/s, cycle_loss=0.0000, epoch=392/3000, vae_loss=255.2345]
Training: VAE decoder with masked batch labels:  13%|█▎        | 392/3000 [00:04<00:30, 84.14it/s, cycle_loss=0.0000, epoch=393/3000, vae_loss=251.5534]
Training: VAE decoder with masked batch labels:  13%|█▎        | 393/3000 [00:04<00:30, 84.14it/s, cycle_loss=0.0000, epoch=394/3000, vae_loss=251.6230]
Training: VAE decoder with masked batch labels:  13%|█▎        | 394/3000 [00:04<00:30, 84.14it/s, cycle_loss=0.0000, epoch=395/3000, vae_loss=253.2975]
Training: VAE decoder with masked batch labels:  13%|█▎        | 395/3000 [00:04<00:30, 84.14it/s, cycle_loss=0.0000, epoch=396/3000, vae_loss=252.8279]
Training: VAE decoder with masked batch labels:  13%|█▎        | 396/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=396/3000, vae_loss=252.8279]
Training: VAE decoder with masked batch labels:  13%|█▎        | 396/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=397/3000, vae_loss=253.5844]
Training: VAE decoder with masked batch labels:  13%|█▎        | 397/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=398/3000, vae_loss=253.2691]
Training: VAE decoder with masked batch labels:  13%|█▎        | 398/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=399/3000, vae_loss=252.7018]
Training: VAE decoder with masked batch labels:  13%|█▎        | 399/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=400/3000, vae_loss=252.5388]
Training: VAE decoder with masked batch labels:  13%|█▎        | 400/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=401/3000, vae_loss=252.2449]
Training: VAE decoder with masked batch labels:  13%|█▎        | 401/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=402/3000, vae_loss=252.6555]
Training: VAE decoder with masked batch labels:  13%|█▎        | 402/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=403/3000, vae_loss=253.0718]
Training: VAE decoder with masked batch labels:  13%|█▎        | 403/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=404/3000, vae_loss=252.4735]
Training: VAE decoder with masked batch labels:  13%|█▎        | 404/3000 [00:04<00:31, 83.48it/s, cycle_loss=0.0000, epoch=405/3000, vae_loss=252.7493]
Training: VAE decoder with masked batch labels:  14%|█▎        | 405/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=405/3000, vae_loss=252.7493]
Training: VAE decoder with masked batch labels:  14%|█▎        | 405/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=406/3000, vae_loss=251.1254]
Training: VAE decoder with masked batch labels:  14%|█▎        | 406/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=407/3000, vae_loss=253.7565]
Training: VAE decoder with masked batch labels:  14%|█▎        | 407/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=408/3000, vae_loss=254.1092]
Training: VAE decoder with masked batch labels:  14%|█▎        | 408/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=409/3000, vae_loss=252.3343]
Training: VAE decoder with masked batch labels:  14%|█▎        | 409/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=410/3000, vae_loss=251.1972]
Training: VAE decoder with masked batch labels:  14%|█▎        | 410/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=411/3000, vae_loss=252.9335]
Training: VAE decoder with masked batch labels:  14%|█▎        | 411/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=412/3000, vae_loss=251.2743]
Training: VAE decoder with masked batch labels:  14%|█▎        | 412/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=413/3000, vae_loss=254.6962]
Training: VAE decoder with masked batch labels:  14%|█▍        | 413/3000 [00:04<00:31, 82.44it/s, cycle_loss=0.0000, epoch=414/3000, vae_loss=252.3156]
Training: VAE decoder with masked batch labels:  14%|█▍        | 414/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=414/3000, vae_loss=252.3156]
Training: VAE decoder with masked batch labels:  14%|█▍        | 414/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=415/3000, vae_loss=253.3492]
Training: VAE decoder with masked batch labels:  14%|█▍        | 415/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=416/3000, vae_loss=254.3125]
Training: VAE decoder with masked batch labels:  14%|█▍        | 416/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=417/3000, vae_loss=250.6394]
Training: VAE decoder with masked batch labels:  14%|█▍        | 417/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=418/3000, vae_loss=252.5233]
Training: VAE decoder with masked batch labels:  14%|█▍        | 418/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=419/3000, vae_loss=253.4386]
Training: VAE decoder with masked batch labels:  14%|█▍        | 419/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=420/3000, vae_loss=251.8828]
Training: VAE decoder with masked batch labels:  14%|█▍        | 420/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=421/3000, vae_loss=254.2452]
Training: VAE decoder with masked batch labels:  14%|█▍        | 421/3000 [00:04<00:31, 82.45it/s, cycle_loss=0.0000, epoch=422/3000, vae_loss=254.3144]
Training: VAE decoder with masked batch labels:  14%|█▍        | 422/3000 [00:05<00:31, 82.45it/s, cycle_loss=0.0000, epoch=423/3000, vae_loss=255.8025]
Training: VAE decoder with masked batch labels:  14%|█▍        | 423/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=423/3000, vae_loss=255.8025]
Training: VAE decoder with masked batch labels:  14%|█▍        | 423/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=424/3000, vae_loss=254.7897]
Training: VAE decoder with masked batch labels:  14%|█▍        | 424/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=425/3000, vae_loss=252.4901]
Training: VAE decoder with masked batch labels:  14%|█▍        | 425/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=426/3000, vae_loss=255.2083]
Training: VAE decoder with masked batch labels:  14%|█▍        | 426/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=427/3000, vae_loss=253.7703]
Training: VAE decoder with masked batch labels:  14%|█▍        | 427/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=428/3000, vae_loss=253.1071]
Training: VAE decoder with masked batch labels:  14%|█▍        | 428/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=429/3000, vae_loss=255.7483]
Training: VAE decoder with masked batch labels:  14%|█▍        | 429/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=430/3000, vae_loss=253.1513]
Training: VAE decoder with masked batch labels:  14%|█▍        | 430/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=431/3000, vae_loss=254.3220]
Training: VAE decoder with masked batch labels:  14%|█▍        | 431/3000 [00:05<00:31, 82.11it/s, cycle_loss=0.0000, epoch=432/3000, vae_loss=254.1406]
Training: VAE decoder with masked batch labels:  14%|█▍        | 432/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=432/3000, vae_loss=254.1406]
Training: VAE decoder with masked batch labels:  14%|█▍        | 432/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=433/3000, vae_loss=253.2022]
Training: VAE decoder with masked batch labels:  14%|█▍        | 433/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=434/3000, vae_loss=253.5772]
Training: VAE decoder with masked batch labels:  14%|█▍        | 434/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=435/3000, vae_loss=252.7060]
Training: VAE decoder with masked batch labels:  14%|█▍        | 435/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=436/3000, vae_loss=254.1159]
Training: VAE decoder with masked batch labels:  15%|█▍        | 436/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=437/3000, vae_loss=253.2668]
Training: VAE decoder with masked batch labels:  15%|█▍        | 437/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=438/3000, vae_loss=253.8367]
Training: VAE decoder with masked batch labels:  15%|█▍        | 438/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=439/3000, vae_loss=253.4639]
Training: VAE decoder with masked batch labels:  15%|█▍        | 439/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=440/3000, vae_loss=253.9418]
Training: VAE decoder with masked batch labels:  15%|█▍        | 440/3000 [00:05<00:48, 53.09it/s, cycle_loss=0.0000, epoch=441/3000, vae_loss=255.9719]
Training: VAE decoder with masked batch labels:  15%|█▍        | 441/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=441/3000, vae_loss=255.9719]
Training: VAE decoder with masked batch labels:  15%|█▍        | 441/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=442/3000, vae_loss=254.7895]
Training: VAE decoder with masked batch labels:  15%|█▍        | 442/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=443/3000, vae_loss=253.0165]
Training: VAE decoder with masked batch labels:  15%|█▍        | 443/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=444/3000, vae_loss=255.9089]
Training: VAE decoder with masked batch labels:  15%|█▍        | 444/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=445/3000, vae_loss=254.0047]
Training: VAE decoder with masked batch labels:  15%|█▍        | 445/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=446/3000, vae_loss=255.0262]
Training: VAE decoder with masked batch labels:  15%|█▍        | 446/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=447/3000, vae_loss=255.6689]
Training: VAE decoder with masked batch labels:  15%|█▍        | 447/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=448/3000, vae_loss=252.6184]
Training: VAE decoder with masked batch labels:  15%|█▍        | 448/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=449/3000, vae_loss=255.0945]
Training: VAE decoder with masked batch labels:  15%|█▍        | 449/3000 [00:05<00:42, 60.28it/s, cycle_loss=0.0000, epoch=450/3000, vae_loss=254.3646]
Training: VAE decoder with masked batch labels:  15%|█▌        | 450/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=450/3000, vae_loss=254.3646]
Training: VAE decoder with masked batch labels:  15%|█▌        | 450/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=451/3000, vae_loss=257.0987]
Training: VAE decoder with masked batch labels:  15%|█▌        | 451/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=452/3000, vae_loss=253.9453]
Training: VAE decoder with masked batch labels:  15%|█▌        | 452/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=453/3000, vae_loss=253.7087]
Training: VAE decoder with masked batch labels:  15%|█▌        | 453/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=454/3000, vae_loss=253.3958]
Training: VAE decoder with masked batch labels:  15%|█▌        | 454/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=455/3000, vae_loss=253.6290]
Training: VAE decoder with masked batch labels:  15%|█▌        | 455/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=456/3000, vae_loss=254.8922]
Training: VAE decoder with masked batch labels:  15%|█▌        | 456/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=457/3000, vae_loss=253.3564]
Training: VAE decoder with masked batch labels:  15%|█▌        | 457/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=458/3000, vae_loss=255.7929]
Training: VAE decoder with masked batch labels:  15%|█▌        | 458/3000 [00:05<00:38, 66.49it/s, cycle_loss=0.0000, epoch=459/3000, vae_loss=254.4525]
Training: VAE decoder with masked batch labels:  15%|█▌        | 459/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=459/3000, vae_loss=254.4525]
Training: VAE decoder with masked batch labels:  15%|█▌        | 459/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=460/3000, vae_loss=254.8620]
Training: VAE decoder with masked batch labels:  15%|█▌        | 460/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=461/3000, vae_loss=253.0616]
Training: VAE decoder with masked batch labels:  15%|█▌        | 461/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=462/3000, vae_loss=255.5212]
Training: VAE decoder with masked batch labels:  15%|█▌        | 462/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=463/3000, vae_loss=254.4220]
Training: VAE decoder with masked batch labels:  15%|█▌        | 463/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=464/3000, vae_loss=255.9890]
Training: VAE decoder with masked batch labels:  15%|█▌        | 464/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=465/3000, vae_loss=256.0363]
Training: VAE decoder with masked batch labels:  16%|█▌        | 465/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=466/3000, vae_loss=256.2449]
Training: VAE decoder with masked batch labels:  16%|█▌        | 466/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=467/3000, vae_loss=255.4525]
Training: VAE decoder with masked batch labels:  16%|█▌        | 467/3000 [00:05<00:35, 71.87it/s, cycle_loss=0.0000, epoch=468/3000, vae_loss=255.9718]
Training: VAE decoder with masked batch labels:  16%|█▌        | 468/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=468/3000, vae_loss=255.9718]
Training: VAE decoder with masked batch labels:  16%|█▌        | 468/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=469/3000, vae_loss=256.8444]
Training: VAE decoder with masked batch labels:  16%|█▌        | 469/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=470/3000, vae_loss=254.9207]
Training: VAE decoder with masked batch labels:  16%|█▌        | 470/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=471/3000, vae_loss=254.9939]
Training: VAE decoder with masked batch labels:  16%|█▌        | 471/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=472/3000, vae_loss=255.2892]
Training: VAE decoder with masked batch labels:  16%|█▌        | 472/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=473/3000, vae_loss=254.5483]
Training: VAE decoder with masked batch labels:  16%|█▌        | 473/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=474/3000, vae_loss=254.9278]
Training: VAE decoder with masked batch labels:  16%|█▌        | 474/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=475/3000, vae_loss=254.5166]
Training: VAE decoder with masked batch labels:  16%|█▌        | 475/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=476/3000, vae_loss=255.4790]
Training: VAE decoder with masked batch labels:  16%|█▌        | 476/3000 [00:05<00:33, 76.11it/s, cycle_loss=0.0000, epoch=477/3000, vae_loss=254.5694]
Training: VAE decoder with masked batch labels:  16%|█▌        | 477/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=477/3000, vae_loss=254.5694]
Training: VAE decoder with masked batch labels:  16%|█▌        | 477/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=478/3000, vae_loss=255.8444]
Training: VAE decoder with masked batch labels:  16%|█▌        | 478/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=479/3000, vae_loss=256.0999]
Training: VAE decoder with masked batch labels:  16%|█▌        | 479/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=480/3000, vae_loss=256.4610]
Training: VAE decoder with masked batch labels:  16%|█▌        | 480/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=481/3000, vae_loss=255.1609]
Training: VAE decoder with masked batch labels:  16%|█▌        | 481/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=482/3000, vae_loss=254.9438]
Training: VAE decoder with masked batch labels:  16%|█▌        | 482/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=483/3000, vae_loss=256.8062]
Training: VAE decoder with masked batch labels:  16%|█▌        | 483/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=484/3000, vae_loss=257.1965]
Training: VAE decoder with masked batch labels:  16%|█▌        | 484/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=485/3000, vae_loss=257.0114]
Training: VAE decoder with masked batch labels:  16%|█▌        | 485/3000 [00:05<00:32, 78.22it/s, cycle_loss=0.0000, epoch=486/3000, vae_loss=254.2260]
Training: VAE decoder with masked batch labels:  16%|█▌        | 486/3000 [00:05<00:31, 79.41it/s, cycle_loss=0.0000, epoch=486/3000, vae_loss=254.2260]
Training: VAE decoder with masked batch labels:  16%|█▌        | 486/3000 [00:05<00:31, 79.41it/s, cycle_loss=0.0000, epoch=487/3000, vae_loss=256.9345]
Training: VAE decoder with masked batch labels:  16%|█▌        | 487/3000 [00:05<00:31, 79.41it/s, cycle_loss=0.0000, epoch=488/3000, vae_loss=256.1190]
Training: VAE decoder with masked batch labels:  16%|█▋        | 488/3000 [00:05<00:31, 79.41it/s, cycle_loss=0.0000, epoch=489/3000, vae_loss=255.5650]
Training: VAE decoder with masked batch labels:  16%|█▋        | 489/3000 [00:05<00:31, 79.41it/s, cycle_loss=0.0000, epoch=490/3000, vae_loss=256.8372]
Training: VAE decoder with masked batch labels:  16%|█▋        | 490/3000 [00:06<00:31, 79.41it/s, cycle_loss=0.0000, epoch=491/3000, vae_loss=253.7227]
Training: VAE decoder with masked batch labels:  16%|█▋        | 491/3000 [00:06<00:31, 79.41it/s, cycle_loss=0.0000, epoch=492/3000, vae_loss=257.1260]
Training: VAE decoder with masked batch labels:  16%|█▋        | 492/3000 [00:06<00:31, 79.41it/s, cycle_loss=0.0000, epoch=493/3000, vae_loss=256.4740]
Training: VAE decoder with masked batch labels:  16%|█▋        | 493/3000 [00:06<00:31, 79.41it/s, cycle_loss=0.0000, epoch=494/3000, vae_loss=256.5129]
Training: VAE decoder with masked batch labels:  16%|█▋        | 494/3000 [00:06<00:31, 79.41it/s, cycle_loss=0.0000, epoch=495/3000, vae_loss=257.8598]
Training: VAE decoder with masked batch labels:  16%|█▋        | 495/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=495/3000, vae_loss=257.8598]
Training: VAE decoder with masked batch labels:  16%|█▋        | 495/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=496/3000, vae_loss=256.1097]
Training: VAE decoder with masked batch labels:  17%|█▋        | 496/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=497/3000, vae_loss=258.5096]
Training: VAE decoder with masked batch labels:  17%|█▋        | 497/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=498/3000, vae_loss=257.4295]
Training: VAE decoder with masked batch labels:  17%|█▋        | 498/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=499/3000, vae_loss=257.9748]
Training: VAE decoder with masked batch labels:  17%|█▋        | 499/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=500/3000, vae_loss=254.7869]
Training: VAE decoder with masked batch labels:  17%|█▋        | 500/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=501/3000, vae_loss=256.5501]
Training: VAE decoder with masked batch labels:  17%|█▋        | 501/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=502/3000, vae_loss=256.4465]
Training: VAE decoder with masked batch labels:  17%|█▋        | 502/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=503/3000, vae_loss=256.5840]
Training: VAE decoder with masked batch labels:  17%|█▋        | 503/3000 [00:06<00:30, 81.62it/s, cycle_loss=0.0000, epoch=504/3000, vae_loss=257.3451]
Training: VAE decoder with masked batch labels:  17%|█▋        | 504/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=504/3000, vae_loss=257.3451]
Training: VAE decoder with masked batch labels:  17%|█▋        | 504/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=505/3000, vae_loss=256.6751]
Training: VAE decoder with masked batch labels:  17%|█▋        | 505/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=506/3000, vae_loss=254.4003]
Training: VAE decoder with masked batch labels:  17%|█▋        | 506/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=507/3000, vae_loss=256.6018]
Training: VAE decoder with masked batch labels:  17%|█▋        | 507/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=508/3000, vae_loss=255.9499]
Training: VAE decoder with masked batch labels:  17%|█▋        | 508/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=509/3000, vae_loss=256.4988]
Training: VAE decoder with masked batch labels:  17%|█▋        | 509/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=510/3000, vae_loss=257.4905]
Training: VAE decoder with masked batch labels:  17%|█▋        | 510/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=511/3000, vae_loss=254.4467]
Training: VAE decoder with masked batch labels:  17%|█▋        | 511/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=512/3000, vae_loss=259.1971]
Training: VAE decoder with masked batch labels:  17%|█▋        | 512/3000 [00:06<00:30, 82.19it/s, cycle_loss=0.0000, epoch=513/3000, vae_loss=257.2571]
Training: VAE decoder with masked batch labels:  17%|█▋        | 513/3000 [00:06<00:30, 82.83it/s, cycle_loss=0.0000, epoch=513/3000, vae_loss=257.2571]
Training: VAE decoder with masked batch labels:  17%|█▋        | 513/3000 [00:06<00:30, 82.83it/s, cycle_loss=0.0000, epoch=514/3000, vae_loss=258.2729]
Training: VAE decoder with masked batch labels:  17%|█▋        | 514/3000 [00:06<00:30, 82.83it/s, cycle_loss=0.0000, epoch=515/3000, vae_loss=255.6647]
Training: VAE decoder with masked batch labels:  17%|█▋        | 515/3000 [00:06<00:29, 82.83it/s, cycle_loss=0.0000, epoch=516/3000, vae_loss=256.9649]
Training: VAE decoder with masked batch labels:  17%|█▋        | 516/3000 [00:06<00:29, 82.83it/s, cycle_loss=0.0000, epoch=517/3000, vae_loss=256.3661]
Training: VAE decoder with masked batch labels:  17%|█▋        | 517/3000 [00:06<00:29, 82.83it/s, cycle_loss=0.0000, epoch=518/3000, vae_loss=254.3453]
Training: VAE decoder with masked batch labels:  17%|█▋        | 518/3000 [00:06<00:29, 82.83it/s, cycle_loss=0.0000, epoch=519/3000, vae_loss=258.7404]
Training: VAE decoder with masked batch labels:  17%|█▋        | 519/3000 [00:06<00:29, 82.83it/s, cycle_loss=0.0000, epoch=520/3000, vae_loss=257.7347]
Training: VAE decoder with masked batch labels:  17%|█▋        | 520/3000 [00:06<00:29, 82.83it/s, cycle_loss=0.0000, epoch=521/3000, vae_loss=256.7788]
Training: VAE decoder with masked batch labels:  17%|█▋        | 521/3000 [00:06<00:29, 82.83it/s, cycle_loss=0.0000, epoch=522/3000, vae_loss=257.6294]
Training: VAE decoder with masked batch labels:  17%|█▋        | 522/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=522/3000, vae_loss=257.6294]
Training: VAE decoder with masked batch labels:  17%|█▋        | 522/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=523/3000, vae_loss=255.9257]
Training: VAE decoder with masked batch labels:  17%|█▋        | 523/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=524/3000, vae_loss=255.5222]
Training: VAE decoder with masked batch labels:  17%|█▋        | 524/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=525/3000, vae_loss=255.9399]
Training: VAE decoder with masked batch labels:  18%|█▊        | 525/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=526/3000, vae_loss=256.8259]
Training: VAE decoder with masked batch labels:  18%|█▊        | 526/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=527/3000, vae_loss=260.6234]
Training: VAE decoder with masked batch labels:  18%|█▊        | 527/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=528/3000, vae_loss=259.2601]
Training: VAE decoder with masked batch labels:  18%|█▊        | 528/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=529/3000, vae_loss=257.9307]
Training: VAE decoder with masked batch labels:  18%|█▊        | 529/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=530/3000, vae_loss=257.1832]
Training: VAE decoder with masked batch labels:  18%|█▊        | 530/3000 [00:06<00:29, 83.38it/s, cycle_loss=0.0000, epoch=531/3000, vae_loss=257.5251]
Training: VAE decoder with masked batch labels:  18%|█▊        | 531/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=531/3000, vae_loss=257.5251]
Training: VAE decoder with masked batch labels:  18%|█▊        | 531/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=532/3000, vae_loss=258.4097]
Training: VAE decoder with masked batch labels:  18%|█▊        | 532/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=533/3000, vae_loss=260.7463]
Training: VAE decoder with masked batch labels:  18%|█▊        | 533/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=534/3000, vae_loss=258.5830]
Training: VAE decoder with masked batch labels:  18%|█▊        | 534/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=535/3000, vae_loss=259.2924]
Training: VAE decoder with masked batch labels:  18%|█▊        | 535/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=536/3000, vae_loss=258.7870]
Training: VAE decoder with masked batch labels:  18%|█▊        | 536/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=537/3000, vae_loss=258.4362]
Training: VAE decoder with masked batch labels:  18%|█▊        | 537/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=538/3000, vae_loss=257.5131]
Training: VAE decoder with masked batch labels:  18%|█▊        | 538/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=539/3000, vae_loss=262.2337]
Training: VAE decoder with masked batch labels:  18%|█▊        | 539/3000 [00:06<00:29, 84.23it/s, cycle_loss=0.0000, epoch=540/3000, vae_loss=259.3524]
Training: VAE decoder with masked batch labels:  18%|█▊        | 540/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=540/3000, vae_loss=259.3524]
Training: VAE decoder with masked batch labels:  18%|█▊        | 540/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=541/3000, vae_loss=261.0479]
Training: VAE decoder with masked batch labels:  18%|█▊        | 541/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=542/3000, vae_loss=259.8563]
Training: VAE decoder with masked batch labels:  18%|█▊        | 542/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=543/3000, vae_loss=256.9656]
Training: VAE decoder with masked batch labels:  18%|█▊        | 543/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=544/3000, vae_loss=259.4125]
Training: VAE decoder with masked batch labels:  18%|█▊        | 544/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=545/3000, vae_loss=259.3909]
Training: VAE decoder with masked batch labels:  18%|█▊        | 545/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=546/3000, vae_loss=255.2927]
Training: VAE decoder with masked batch labels:  18%|█▊        | 546/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=547/3000, vae_loss=259.5844]
Training: VAE decoder with masked batch labels:  18%|█▊        | 547/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=548/3000, vae_loss=258.5432]
Training: VAE decoder with masked batch labels:  18%|█▊        | 548/3000 [00:06<00:29, 84.20it/s, cycle_loss=0.0000, epoch=549/3000, vae_loss=260.8301]
Training: VAE decoder with masked batch labels:  18%|█▊        | 549/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=549/3000, vae_loss=260.8301]
Training: VAE decoder with masked batch labels:  18%|█▊        | 549/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=550/3000, vae_loss=259.1470]
Training: VAE decoder with masked batch labels:  18%|█▊        | 550/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=551/3000, vae_loss=259.7702]
Training: VAE decoder with masked batch labels:  18%|█▊        | 551/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=552/3000, vae_loss=258.2277]
Training: VAE decoder with masked batch labels:  18%|█▊        | 552/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=553/3000, vae_loss=258.6259]
Training: VAE decoder with masked batch labels:  18%|█▊        | 553/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=554/3000, vae_loss=258.8571]
Training: VAE decoder with masked batch labels:  18%|█▊        | 554/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=555/3000, vae_loss=258.0927]
Training: VAE decoder with masked batch labels:  18%|█▊        | 555/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=556/3000, vae_loss=258.7898]
Training: VAE decoder with masked batch labels:  19%|█▊        | 556/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=557/3000, vae_loss=257.9957]
Training: VAE decoder with masked batch labels:  19%|█▊        | 557/3000 [00:06<00:29, 83.61it/s, cycle_loss=0.0000, epoch=558/3000, vae_loss=260.0249]
Training: VAE decoder with masked batch labels:  19%|█▊        | 558/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=558/3000, vae_loss=260.0249]
Training: VAE decoder with masked batch labels:  19%|█▊        | 558/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=559/3000, vae_loss=259.9072]
Training: VAE decoder with masked batch labels:  19%|█▊        | 559/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=560/3000, vae_loss=259.4979]
Training: VAE decoder with masked batch labels:  19%|█▊        | 560/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=561/3000, vae_loss=257.1732]
Training: VAE decoder with masked batch labels:  19%|█▊        | 561/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=562/3000, vae_loss=259.8364]
Training: VAE decoder with masked batch labels:  19%|█▊        | 562/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=563/3000, vae_loss=258.4524]
Training: VAE decoder with masked batch labels:  19%|█▉        | 563/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=564/3000, vae_loss=258.9029]
Training: VAE decoder with masked batch labels:  19%|█▉        | 564/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=565/3000, vae_loss=261.2734]
Training: VAE decoder with masked batch labels:  19%|█▉        | 565/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=566/3000, vae_loss=261.2953]
Training: VAE decoder with masked batch labels:  19%|█▉        | 566/3000 [00:06<00:29, 83.39it/s, cycle_loss=0.0000, epoch=567/3000, vae_loss=257.5914]
Training: VAE decoder with masked batch labels:  19%|█▉        | 567/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=567/3000, vae_loss=257.5914]
Training: VAE decoder with masked batch labels:  19%|█▉        | 567/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=568/3000, vae_loss=259.6223]
Training: VAE decoder with masked batch labels:  19%|█▉        | 568/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=569/3000, vae_loss=260.6569]
Training: VAE decoder with masked batch labels:  19%|█▉        | 569/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=570/3000, vae_loss=259.5268]
Training: VAE decoder with masked batch labels:  19%|█▉        | 570/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=571/3000, vae_loss=259.7493]
Training: VAE decoder with masked batch labels:  19%|█▉        | 571/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=572/3000, vae_loss=261.1127]
Training: VAE decoder with masked batch labels:  19%|█▉        | 572/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=573/3000, vae_loss=265.3545]
Training: VAE decoder with masked batch labels:  19%|█▉        | 573/3000 [00:06<00:29, 83.29it/s, cycle_loss=0.0000, epoch=574/3000, vae_loss=261.1992]
Training: VAE decoder with masked batch labels:  19%|█▉        | 574/3000 [00:07<00:29, 83.29it/s, cycle_loss=0.0000, epoch=575/3000, vae_loss=260.3453]
Training: VAE decoder with masked batch labels:  19%|█▉        | 575/3000 [00:07<00:29, 83.29it/s, cycle_loss=0.0000, epoch=576/3000, vae_loss=260.7418]
Training: VAE decoder with masked batch labels:  19%|█▉        | 576/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=576/3000, vae_loss=260.7418]
Training: VAE decoder with masked batch labels:  19%|█▉        | 576/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=577/3000, vae_loss=260.8322]
Training: VAE decoder with masked batch labels:  19%|█▉        | 577/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=578/3000, vae_loss=260.5257]
Training: VAE decoder with masked batch labels:  19%|█▉        | 578/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=579/3000, vae_loss=261.3257]
Training: VAE decoder with masked batch labels:  19%|█▉        | 579/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=580/3000, vae_loss=263.6616]
Training: VAE decoder with masked batch labels:  19%|█▉        | 580/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=581/3000, vae_loss=259.8235]
Training: VAE decoder with masked batch labels:  19%|█▉        | 581/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=582/3000, vae_loss=260.4940]
Training: VAE decoder with masked batch labels:  19%|█▉        | 582/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=583/3000, vae_loss=261.6605]
Training: VAE decoder with masked batch labels:  19%|█▉        | 583/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=584/3000, vae_loss=260.4312]
Training: VAE decoder with masked batch labels:  19%|█▉        | 584/3000 [00:07<00:29, 83.31it/s, cycle_loss=0.0000, epoch=585/3000, vae_loss=261.3975]
Training: VAE decoder with masked batch labels:  20%|█▉        | 585/3000 [00:07<00:29, 83.10it/s, cycle_loss=0.0000, epoch=585/3000, vae_loss=261.3975]
Training: VAE decoder with masked batch labels:  20%|█▉        | 585/3000 [00:07<00:29, 83.10it/s, cycle_loss=0.0000, epoch=586/3000, vae_loss=263.4982]
Training: VAE decoder with masked batch labels:  20%|█▉        | 586/3000 [00:07<00:29, 83.10it/s, cycle_loss=0.0000, epoch=587/3000, vae_loss=261.2724]
Training: VAE decoder with masked batch labels:  20%|█▉        | 587/3000 [00:07<00:29, 83.10it/s, cycle_loss=0.0000, epoch=588/3000, vae_loss=262.1259]
Training: VAE decoder with masked batch labels:  20%|█▉        | 588/3000 [00:07<00:29, 83.10it/s, cycle_loss=0.0000, epoch=589/3000, vae_loss=260.4286]
Training: VAE decoder with masked batch labels:  20%|█▉        | 589/3000 [00:07<00:29, 83.10it/s, cycle_loss=0.0000, epoch=590/3000, vae_loss=264.9025]
Training: VAE decoder with masked batch labels:  20%|█▉        | 590/3000 [00:07<00:29, 83.10it/s, cycle_loss=0.0000, epoch=591/3000, vae_loss=262.1193]
Training: VAE decoder with masked batch labels:  20%|█▉        | 591/3000 [00:07<00:28, 83.10it/s, cycle_loss=0.0000, epoch=592/3000, vae_loss=259.9600]
Training: VAE decoder with masked batch labels:  20%|█▉        | 592/3000 [00:07<00:28, 83.10it/s, cycle_loss=0.0000, epoch=593/3000, vae_loss=263.0834]
Training: VAE decoder with masked batch labels:  20%|█▉        | 593/3000 [00:07<00:28, 83.10it/s, cycle_loss=0.0000, epoch=594/3000, vae_loss=262.7368]
Training: VAE decoder with masked batch labels:  20%|█▉        | 594/3000 [00:07<00:29, 82.81it/s, cycle_loss=0.0000, epoch=594/3000, vae_loss=262.7368]
Training: VAE decoder with masked batch labels:  20%|█▉        | 594/3000 [00:07<00:29, 82.81it/s, cycle_loss=0.0000, epoch=595/3000, vae_loss=261.8701]
Training: VAE decoder with masked batch labels:  20%|█▉        | 595/3000 [00:07<00:29, 82.81it/s, cycle_loss=0.0000, epoch=596/3000, vae_loss=261.4127]
Training: VAE decoder with masked batch labels:  20%|█▉        | 596/3000 [00:07<00:29, 82.81it/s, cycle_loss=0.0000, epoch=597/3000, vae_loss=263.8295]
Training: VAE decoder with masked batch labels:  20%|█▉        | 597/3000 [00:07<00:29, 82.81it/s, cycle_loss=0.0000, epoch=598/3000, vae_loss=263.3235]
Training: VAE decoder with masked batch labels:  20%|█▉        | 598/3000 [00:07<00:29, 82.81it/s, cycle_loss=0.0000, epoch=599/3000, vae_loss=262.8315]
Training: VAE decoder with masked batch labels:  20%|█▉        | 599/3000 [00:07<00:28, 82.81it/s, cycle_loss=0.0000, epoch=600/3000, vae_loss=260.2049]
Training: VAE decoder with masked batch labels:  20%|██        | 600/3000 [00:07<00:28, 82.81it/s, cycle_loss=0.0000, epoch=601/3000, vae_loss=262.7014]
Training: VAE decoder with masked batch labels:  20%|██        | 601/3000 [00:07<00:28, 82.81it/s, cycle_loss=0.0000, epoch=602/3000, vae_loss=264.9236]
Training: VAE decoder with masked batch labels:  20%|██        | 602/3000 [00:07<00:28, 82.81it/s, cycle_loss=0.0000, epoch=603/3000, vae_loss=261.1413]
Training: VAE decoder with masked batch labels:  20%|██        | 603/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=603/3000, vae_loss=261.1413]
Training: VAE decoder with masked batch labels:  20%|██        | 603/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=604/3000, vae_loss=260.8197]
Training: VAE decoder with masked batch labels:  20%|██        | 604/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=605/3000, vae_loss=261.0243]
Training: VAE decoder with masked batch labels:  20%|██        | 605/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=606/3000, vae_loss=260.5630]
Training: VAE decoder with masked batch labels:  20%|██        | 606/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=607/3000, vae_loss=264.9605]
Training: VAE decoder with masked batch labels:  20%|██        | 607/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=608/3000, vae_loss=261.5895]
Training: VAE decoder with masked batch labels:  20%|██        | 608/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=609/3000, vae_loss=261.7915]
Training: VAE decoder with masked batch labels:  20%|██        | 609/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=610/3000, vae_loss=261.2310]
Training: VAE decoder with masked batch labels:  20%|██        | 610/3000 [00:07<00:29, 82.40it/s, cycle_loss=0.0000, epoch=611/3000, vae_loss=266.0374]
Training: VAE decoder with masked batch labels:  20%|██        | 611/3000 [00:07<00:28, 82.40it/s, cycle_loss=0.0000, epoch=612/3000, vae_loss=268.1454]
Training: VAE decoder with masked batch labels:  20%|██        | 612/3000 [00:07<00:29, 82.16it/s, cycle_loss=0.0000, epoch=612/3000, vae_loss=268.1454]
Training: VAE decoder with masked batch labels:  20%|██        | 612/3000 [00:07<00:29, 82.16it/s, cycle_loss=0.0000, epoch=613/3000, vae_loss=263.0489]
Training: VAE decoder with masked batch labels:  20%|██        | 613/3000 [00:07<00:29, 82.16it/s, cycle_loss=0.0000, epoch=614/3000, vae_loss=260.6820]
Training: VAE decoder with masked batch labels:  20%|██        | 614/3000 [00:07<00:29, 82.16it/s, cycle_loss=0.0000, epoch=615/3000, vae_loss=262.4691]
Training: VAE decoder with masked batch labels:  20%|██        | 615/3000 [00:07<00:29, 82.16it/s, cycle_loss=0.0000, epoch=616/3000, vae_loss=261.5900]
Training: VAE decoder with masked batch labels:  21%|██        | 616/3000 [00:07<00:29, 82.16it/s, cycle_loss=0.0000, epoch=617/3000, vae_loss=262.2510]
Training: VAE decoder with masked batch labels:  21%|██        | 617/3000 [00:07<00:29, 82.16it/s, cycle_loss=0.0000, epoch=618/3000, vae_loss=261.9020]
Training: VAE decoder with masked batch labels:  21%|██        | 618/3000 [00:07<00:28, 82.16it/s, cycle_loss=0.0000, epoch=619/3000, vae_loss=264.8358]
Training: VAE decoder with masked batch labels:  21%|██        | 619/3000 [00:07<00:28, 82.16it/s, cycle_loss=0.0000, epoch=620/3000, vae_loss=264.4333]
Training: VAE decoder with masked batch labels:  21%|██        | 620/3000 [00:07<00:28, 82.16it/s, cycle_loss=0.0000, epoch=621/3000, vae_loss=262.9290]
Training: VAE decoder with masked batch labels:  21%|██        | 621/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=621/3000, vae_loss=262.9290]
Training: VAE decoder with masked batch labels:  21%|██        | 621/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=622/3000, vae_loss=262.6959]
Training: VAE decoder with masked batch labels:  21%|██        | 622/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=623/3000, vae_loss=261.7649]
Training: VAE decoder with masked batch labels:  21%|██        | 623/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=624/3000, vae_loss=262.6002]
Training: VAE decoder with masked batch labels:  21%|██        | 624/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=625/3000, vae_loss=261.5794]
Training: VAE decoder with masked batch labels:  21%|██        | 625/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=626/3000, vae_loss=263.3155]
Training: VAE decoder with masked batch labels:  21%|██        | 626/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=627/3000, vae_loss=262.8892]
Training: VAE decoder with masked batch labels:  21%|██        | 627/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=628/3000, vae_loss=267.4178]
Training: VAE decoder with masked batch labels:  21%|██        | 628/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=629/3000, vae_loss=265.6561]
Training: VAE decoder with masked batch labels:  21%|██        | 629/3000 [00:07<00:29, 80.67it/s, cycle_loss=0.0000, epoch=630/3000, vae_loss=264.6811]
Training: VAE decoder with masked batch labels:  21%|██        | 630/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=630/3000, vae_loss=264.6811]
Training: VAE decoder with masked batch labels:  21%|██        | 630/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=631/3000, vae_loss=266.9870]
Training: VAE decoder with masked batch labels:  21%|██        | 631/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=632/3000, vae_loss=264.3445]
Training: VAE decoder with masked batch labels:  21%|██        | 632/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=633/3000, vae_loss=261.8362]
Training: VAE decoder with masked batch labels:  21%|██        | 633/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=634/3000, vae_loss=265.9687]
Training: VAE decoder with masked batch labels:  21%|██        | 634/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=635/3000, vae_loss=263.2457]
Training: VAE decoder with masked batch labels:  21%|██        | 635/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=636/3000, vae_loss=267.8686]
Training: VAE decoder with masked batch labels:  21%|██        | 636/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=637/3000, vae_loss=265.0403]
Training: VAE decoder with masked batch labels:  21%|██        | 637/3000 [00:07<00:29, 81.47it/s, cycle_loss=0.0000, epoch=638/3000, vae_loss=265.2172]
Training: VAE decoder with masked batch labels:  21%|██▏       | 638/3000 [00:07<00:28, 81.47it/s, cycle_loss=0.0000, epoch=639/3000, vae_loss=265.2435]
Training: VAE decoder with masked batch labels:  21%|██▏       | 639/3000 [00:07<00:29, 81.39it/s, cycle_loss=0.0000, epoch=639/3000, vae_loss=265.2435]
Training: VAE decoder with masked batch labels:  21%|██▏       | 639/3000 [00:07<00:29, 81.39it/s, cycle_loss=0.0000, epoch=640/3000, vae_loss=266.6550]
Training: VAE decoder with masked batch labels:  21%|██▏       | 640/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=641/3000, vae_loss=262.4704]
Training: VAE decoder with masked batch labels:  21%|██▏       | 641/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=642/3000, vae_loss=264.9513]
Training: VAE decoder with masked batch labels:  21%|██▏       | 642/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=643/3000, vae_loss=264.9055]
Training: VAE decoder with masked batch labels:  21%|██▏       | 643/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=644/3000, vae_loss=263.8346]
Training: VAE decoder with masked batch labels:  21%|██▏       | 644/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=645/3000, vae_loss=264.7067]
Training: VAE decoder with masked batch labels:  22%|██▏       | 645/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=646/3000, vae_loss=268.3697]
Training: VAE decoder with masked batch labels:  22%|██▏       | 646/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=647/3000, vae_loss=263.0526]
Training: VAE decoder with masked batch labels:  22%|██▏       | 647/3000 [00:07<00:28, 81.39it/s, cycle_loss=0.0000, epoch=648/3000, vae_loss=269.0477]
Training: VAE decoder with masked batch labels:  22%|██▏       | 648/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=648/3000, vae_loss=269.0477]
Training: VAE decoder with masked batch labels:  22%|██▏       | 648/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=649/3000, vae_loss=266.1760]
Training: VAE decoder with masked batch labels:  22%|██▏       | 649/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=650/3000, vae_loss=265.7564]
Training: VAE decoder with masked batch labels:  22%|██▏       | 650/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=651/3000, vae_loss=265.6979]
Training: VAE decoder with masked batch labels:  22%|██▏       | 651/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=652/3000, vae_loss=264.1063]
Training: VAE decoder with masked batch labels:  22%|██▏       | 652/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=653/3000, vae_loss=266.3459]
Training: VAE decoder with masked batch labels:  22%|██▏       | 653/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=654/3000, vae_loss=266.7705]
Training: VAE decoder with masked batch labels:  22%|██▏       | 654/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=655/3000, vae_loss=266.5842]
Training: VAE decoder with masked batch labels:  22%|██▏       | 655/3000 [00:07<00:28, 81.40it/s, cycle_loss=0.0000, epoch=656/3000, vae_loss=265.2698]
Training: VAE decoder with masked batch labels:  22%|██▏       | 656/3000 [00:08<00:28, 81.40it/s, cycle_loss=0.0000, epoch=657/3000, vae_loss=267.1368]
Training: VAE decoder with masked batch labels:  22%|██▏       | 657/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=657/3000, vae_loss=267.1368]
Training: VAE decoder with masked batch labels:  22%|██▏       | 657/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=658/3000, vae_loss=266.0932]
Training: VAE decoder with masked batch labels:  22%|██▏       | 658/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=659/3000, vae_loss=266.1261]
Training: VAE decoder with masked batch labels:  22%|██▏       | 659/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=660/3000, vae_loss=266.3083]
Training: VAE decoder with masked batch labels:  22%|██▏       | 660/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=661/3000, vae_loss=264.3842]
Training: VAE decoder with masked batch labels:  22%|██▏       | 661/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=662/3000, vae_loss=266.0922]
Training: VAE decoder with masked batch labels:  22%|██▏       | 662/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=663/3000, vae_loss=265.6140]
Training: VAE decoder with masked batch labels:  22%|██▏       | 663/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=664/3000, vae_loss=268.8110]
Training: VAE decoder with masked batch labels:  22%|██▏       | 664/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=665/3000, vae_loss=266.3237]
Training: VAE decoder with masked batch labels:  22%|██▏       | 665/3000 [00:08<00:28, 81.93it/s, cycle_loss=0.0000, epoch=666/3000, vae_loss=265.5266]
Training: VAE decoder with masked batch labels:  22%|██▏       | 666/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=666/3000, vae_loss=265.5266]
Training: VAE decoder with masked batch labels:  22%|██▏       | 666/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=667/3000, vae_loss=266.3329]
Training: VAE decoder with masked batch labels:  22%|██▏       | 667/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=668/3000, vae_loss=266.2092]
Training: VAE decoder with masked batch labels:  22%|██▏       | 668/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=669/3000, vae_loss=266.5872]
Training: VAE decoder with masked batch labels:  22%|██▏       | 669/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=670/3000, vae_loss=267.3345]
Training: VAE decoder with masked batch labels:  22%|██▏       | 670/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=671/3000, vae_loss=265.8451]
Training: VAE decoder with masked batch labels:  22%|██▏       | 671/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=672/3000, vae_loss=267.1522]
Training: VAE decoder with masked batch labels:  22%|██▏       | 672/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=673/3000, vae_loss=266.8242]
Training: VAE decoder with masked batch labels:  22%|██▏       | 673/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=674/3000, vae_loss=266.3285]
Training: VAE decoder with masked batch labels:  22%|██▏       | 674/3000 [00:08<00:28, 81.87it/s, cycle_loss=0.0000, epoch=675/3000, vae_loss=268.6104]
Training: VAE decoder with masked batch labels:  22%|██▎       | 675/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=675/3000, vae_loss=268.6104]
Training: VAE decoder with masked batch labels:  22%|██▎       | 675/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=676/3000, vae_loss=265.5836]
Training: VAE decoder with masked batch labels:  23%|██▎       | 676/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=677/3000, vae_loss=266.9916]
Training: VAE decoder with masked batch labels:  23%|██▎       | 677/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=678/3000, vae_loss=267.6412]
Training: VAE decoder with masked batch labels:  23%|██▎       | 678/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=679/3000, vae_loss=266.5543]
Training: VAE decoder with masked batch labels:  23%|██▎       | 679/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=680/3000, vae_loss=267.4930]
Training: VAE decoder with masked batch labels:  23%|██▎       | 680/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=681/3000, vae_loss=264.6738]
Training: VAE decoder with masked batch labels:  23%|██▎       | 681/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=682/3000, vae_loss=267.0572]
Training: VAE decoder with masked batch labels:  23%|██▎       | 682/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=683/3000, vae_loss=265.5850]
Training: VAE decoder with masked batch labels:  23%|██▎       | 683/3000 [00:08<00:28, 81.64it/s, cycle_loss=0.0000, epoch=684/3000, vae_loss=268.2457]
Training: VAE decoder with masked batch labels:  23%|██▎       | 684/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=684/3000, vae_loss=268.2457]
Training: VAE decoder with masked batch labels:  23%|██▎       | 684/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=685/3000, vae_loss=266.4694]
Training: VAE decoder with masked batch labels:  23%|██▎       | 685/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=686/3000, vae_loss=270.7583]
Training: VAE decoder with masked batch labels:  23%|██▎       | 686/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=687/3000, vae_loss=264.0029]
Training: VAE decoder with masked batch labels:  23%|██▎       | 687/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=688/3000, vae_loss=269.0910]
Training: VAE decoder with masked batch labels:  23%|██▎       | 688/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=689/3000, vae_loss=268.1154]
Training: VAE decoder with masked batch labels:  23%|██▎       | 689/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=690/3000, vae_loss=268.6733]
Training: VAE decoder with masked batch labels:  23%|██▎       | 690/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=691/3000, vae_loss=266.9456]
Training: VAE decoder with masked batch labels:  23%|██▎       | 691/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=692/3000, vae_loss=267.9525]
Training: VAE decoder with masked batch labels:  23%|██▎       | 692/3000 [00:08<00:28, 82.10it/s, cycle_loss=0.0000, epoch=693/3000, vae_loss=270.8177]
Training: VAE decoder with masked batch labels:  23%|██▎       | 693/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=693/3000, vae_loss=270.8177]
Training: VAE decoder with masked batch labels:  23%|██▎       | 693/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=694/3000, vae_loss=270.2514]
Training: VAE decoder with masked batch labels:  23%|██▎       | 694/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=695/3000, vae_loss=270.0569]
Training: VAE decoder with masked batch labels:  23%|██▎       | 695/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=696/3000, vae_loss=269.4978]
Training: VAE decoder with masked batch labels:  23%|██▎       | 696/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=697/3000, vae_loss=266.7489]
Training: VAE decoder with masked batch labels:  23%|██▎       | 697/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=698/3000, vae_loss=269.5083]
Training: VAE decoder with masked batch labels:  23%|██▎       | 698/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=699/3000, vae_loss=268.3655]
Training: VAE decoder with masked batch labels:  23%|██▎       | 699/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=700/3000, vae_loss=267.5361]
Training: VAE decoder with masked batch labels:  23%|██▎       | 700/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=701/3000, vae_loss=266.1485]
Training: VAE decoder with masked batch labels:  23%|██▎       | 701/3000 [00:08<00:28, 81.60it/s, cycle_loss=0.0000, epoch=702/3000, vae_loss=269.2711]
Training: VAE decoder with masked batch labels:  23%|██▎       | 702/3000 [00:08<00:28, 81.88it/s, cycle_loss=0.0000, epoch=702/3000, vae_loss=269.2711]
Training: VAE decoder with masked batch labels:  23%|██▎       | 702/3000 [00:08<00:28, 81.88it/s, cycle_loss=0.0000, epoch=703/3000, vae_loss=270.3436]
Training: VAE decoder with masked batch labels:  23%|██▎       | 703/3000 [00:08<00:28, 81.88it/s, cycle_loss=0.0000, epoch=704/3000, vae_loss=269.0116]
Training: VAE decoder with masked batch labels:  23%|██▎       | 704/3000 [00:08<00:28, 81.88it/s, cycle_loss=0.0000, epoch=705/3000, vae_loss=269.1867]
Training: VAE decoder with masked batch labels:  24%|██▎       | 705/3000 [00:08<00:28, 81.88it/s, cycle_loss=0.0000, epoch=706/3000, vae_loss=270.0470]
Training: VAE decoder with masked batch labels:  24%|██▎       | 706/3000 [00:08<00:28, 81.88it/s, cycle_loss=0.0000, epoch=707/3000, vae_loss=270.0344]
Training: VAE decoder with masked batch labels:  24%|██▎       | 707/3000 [00:08<00:28, 81.88it/s, cycle_loss=0.0000, epoch=708/3000, vae_loss=267.2049]
Training: VAE decoder with masked batch labels:  24%|██▎       | 708/3000 [00:08<00:27, 81.88it/s, cycle_loss=0.0000, epoch=709/3000, vae_loss=270.0781]
Training: VAE decoder with masked batch labels:  24%|██▎       | 709/3000 [00:08<00:27, 81.88it/s, cycle_loss=0.0000, epoch=710/3000, vae_loss=271.0602]
Training: VAE decoder with masked batch labels:  24%|██▎       | 710/3000 [00:08<00:27, 81.88it/s, cycle_loss=0.0000, epoch=711/3000, vae_loss=270.7518]
Training: VAE decoder with masked batch labels:  24%|██▎       | 711/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=711/3000, vae_loss=270.7518]
Training: VAE decoder with masked batch labels:  24%|██▎       | 711/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=712/3000, vae_loss=268.3894]
Training: VAE decoder with masked batch labels:  24%|██▎       | 712/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=713/3000, vae_loss=268.8671]
Training: VAE decoder with masked batch labels:  24%|██▍       | 713/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=714/3000, vae_loss=271.5142]
Training: VAE decoder with masked batch labels:  24%|██▍       | 714/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=715/3000, vae_loss=270.8168]
Training: VAE decoder with masked batch labels:  24%|██▍       | 715/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=716/3000, vae_loss=270.5877]
Training: VAE decoder with masked batch labels:  24%|██▍       | 716/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=717/3000, vae_loss=268.0511]
Training: VAE decoder with masked batch labels:  24%|██▍       | 717/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=718/3000, vae_loss=270.0471]
Training: VAE decoder with masked batch labels:  24%|██▍       | 718/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=719/3000, vae_loss=269.8615]
Training: VAE decoder with masked batch labels:  24%|██▍       | 719/3000 [00:08<00:27, 82.64it/s, cycle_loss=0.0000, epoch=720/3000, vae_loss=273.1923]
Training: VAE decoder with masked batch labels:  24%|██▍       | 720/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=720/3000, vae_loss=273.1923]
Training: VAE decoder with masked batch labels:  24%|██▍       | 720/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=721/3000, vae_loss=273.7633]
Training: VAE decoder with masked batch labels:  24%|██▍       | 721/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=722/3000, vae_loss=269.2753]
Training: VAE decoder with masked batch labels:  24%|██▍       | 722/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=723/3000, vae_loss=274.1533]
Training: VAE decoder with masked batch labels:  24%|██▍       | 723/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=724/3000, vae_loss=275.5526]
Training: VAE decoder with masked batch labels:  24%|██▍       | 724/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=725/3000, vae_loss=268.6205]
Training: VAE decoder with masked batch labels:  24%|██▍       | 725/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=726/3000, vae_loss=273.7548]
Training: VAE decoder with masked batch labels:  24%|██▍       | 726/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=727/3000, vae_loss=269.7296]
Training: VAE decoder with masked batch labels:  24%|██▍       | 727/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=728/3000, vae_loss=271.4543]
Training: VAE decoder with masked batch labels:  24%|██▍       | 728/3000 [00:08<00:27, 81.98it/s, cycle_loss=0.0000, epoch=729/3000, vae_loss=274.8985]
Training: VAE decoder with masked batch labels:  24%|██▍       | 729/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=729/3000, vae_loss=274.8985]
Training: VAE decoder with masked batch labels:  24%|██▍       | 729/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=730/3000, vae_loss=270.2856]
Training: VAE decoder with masked batch labels:  24%|██▍       | 730/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=731/3000, vae_loss=270.7443]
Training: VAE decoder with masked batch labels:  24%|██▍       | 731/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=732/3000, vae_loss=274.3085]
Training: VAE decoder with masked batch labels:  24%|██▍       | 732/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=733/3000, vae_loss=275.7508]
Training: VAE decoder with masked batch labels:  24%|██▍       | 733/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=734/3000, vae_loss=274.8053]
Training: VAE decoder with masked batch labels:  24%|██▍       | 734/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=735/3000, vae_loss=273.2811]
Training: VAE decoder with masked batch labels:  24%|██▍       | 735/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=736/3000, vae_loss=271.6615]
Training: VAE decoder with masked batch labels:  25%|██▍       | 736/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=737/3000, vae_loss=269.8855]
Training: VAE decoder with masked batch labels:  25%|██▍       | 737/3000 [00:08<00:27, 81.60it/s, cycle_loss=0.0000, epoch=738/3000, vae_loss=274.2094]
Training: VAE decoder with masked batch labels:  25%|██▍       | 738/3000 [00:08<00:27, 81.93it/s, cycle_loss=0.0000, epoch=738/3000, vae_loss=274.2094]
Training: VAE decoder with masked batch labels:  25%|██▍       | 738/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=739/3000, vae_loss=271.9874]
Training: VAE decoder with masked batch labels:  25%|██▍       | 739/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=740/3000, vae_loss=276.6023]
Training: VAE decoder with masked batch labels:  25%|██▍       | 740/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=741/3000, vae_loss=276.3240]
Training: VAE decoder with masked batch labels:  25%|██▍       | 741/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=742/3000, vae_loss=270.6724]
Training: VAE decoder with masked batch labels:  25%|██▍       | 742/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=743/3000, vae_loss=273.3768]
Training: VAE decoder with masked batch labels:  25%|██▍       | 743/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=744/3000, vae_loss=274.8115]
Training: VAE decoder with masked batch labels:  25%|██▍       | 744/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=745/3000, vae_loss=272.2628]
Training: VAE decoder with masked batch labels:  25%|██▍       | 745/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=746/3000, vae_loss=277.0133]
Training: VAE decoder with masked batch labels:  25%|██▍       | 746/3000 [00:09<00:27, 81.93it/s, cycle_loss=0.0000, epoch=747/3000, vae_loss=277.5411]
Training: VAE decoder with masked batch labels:  25%|██▍       | 747/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=747/3000, vae_loss=277.5411]
Training: VAE decoder with masked batch labels:  25%|██▍       | 747/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=748/3000, vae_loss=270.4165]
Training: VAE decoder with masked batch labels:  25%|██▍       | 748/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=749/3000, vae_loss=273.2729]
Training: VAE decoder with masked batch labels:  25%|██▍       | 749/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=750/3000, vae_loss=273.9645]
Training: VAE decoder with masked batch labels:  25%|██▌       | 750/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=751/3000, vae_loss=271.0687]
Training: VAE decoder with masked batch labels:  25%|██▌       | 751/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=752/3000, vae_loss=270.6285]
Training: VAE decoder with masked batch labels:  25%|██▌       | 752/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=753/3000, vae_loss=274.1663]
Training: VAE decoder with masked batch labels:  25%|██▌       | 753/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=754/3000, vae_loss=273.5690]
Training: VAE decoder with masked batch labels:  25%|██▌       | 754/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=755/3000, vae_loss=278.0895]
Training: VAE decoder with masked batch labels:  25%|██▌       | 755/3000 [00:09<00:27, 82.18it/s, cycle_loss=0.0000, epoch=756/3000, vae_loss=275.3739]
Training: VAE decoder with masked batch labels:  25%|██▌       | 756/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=756/3000, vae_loss=275.3739]
Training: VAE decoder with masked batch labels:  25%|██▌       | 756/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=757/3000, vae_loss=274.5196]
Training: VAE decoder with masked batch labels:  25%|██▌       | 757/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=758/3000, vae_loss=274.3770]
Training: VAE decoder with masked batch labels:  25%|██▌       | 758/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=759/3000, vae_loss=270.9610]
Training: VAE decoder with masked batch labels:  25%|██▌       | 759/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=760/3000, vae_loss=273.8497]
Training: VAE decoder with masked batch labels:  25%|██▌       | 760/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=761/3000, vae_loss=274.3787]
Training: VAE decoder with masked batch labels:  25%|██▌       | 761/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=762/3000, vae_loss=275.3199]
Training: VAE decoder with masked batch labels:  25%|██▌       | 762/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=763/3000, vae_loss=273.1174]
Training: VAE decoder with masked batch labels:  25%|██▌       | 763/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=764/3000, vae_loss=277.6942]
Training: VAE decoder with masked batch labels:  25%|██▌       | 764/3000 [00:09<00:27, 82.10it/s, cycle_loss=0.0000, epoch=765/3000, vae_loss=277.5354]
Training: VAE decoder with masked batch labels:  26%|██▌       | 765/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=765/3000, vae_loss=277.5354]
Training: VAE decoder with masked batch labels:  26%|██▌       | 765/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=766/3000, vae_loss=276.6339]
Training: VAE decoder with masked batch labels:  26%|██▌       | 766/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=767/3000, vae_loss=273.8759]
Training: VAE decoder with masked batch labels:  26%|██▌       | 767/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=768/3000, vae_loss=276.6123]
Training: VAE decoder with masked batch labels:  26%|██▌       | 768/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=769/3000, vae_loss=273.3703]
Training: VAE decoder with masked batch labels:  26%|██▌       | 769/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=770/3000, vae_loss=276.6160]
Training: VAE decoder with masked batch labels:  26%|██▌       | 770/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=771/3000, vae_loss=277.3737]
Training: VAE decoder with masked batch labels:  26%|██▌       | 771/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=772/3000, vae_loss=275.9892]
Training: VAE decoder with masked batch labels:  26%|██▌       | 772/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=773/3000, vae_loss=279.0055]
Training: VAE decoder with masked batch labels:  26%|██▌       | 773/3000 [00:09<00:27, 81.60it/s, cycle_loss=0.0000, epoch=774/3000, vae_loss=275.6375]
Training: VAE decoder with masked batch labels:  26%|██▌       | 774/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=774/3000, vae_loss=275.6375]
Training: VAE decoder with masked batch labels:  26%|██▌       | 774/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=775/3000, vae_loss=274.7735]
Training: VAE decoder with masked batch labels:  26%|██▌       | 775/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=776/3000, vae_loss=275.7782]
Training: VAE decoder with masked batch labels:  26%|██▌       | 776/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=777/3000, vae_loss=274.4218]
Training: VAE decoder with masked batch labels:  26%|██▌       | 777/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=778/3000, vae_loss=273.1414]
Training: VAE decoder with masked batch labels:  26%|██▌       | 778/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=779/3000, vae_loss=272.0055]
Training: VAE decoder with masked batch labels:  26%|██▌       | 779/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=780/3000, vae_loss=273.5677]
Training: VAE decoder with masked batch labels:  26%|██▌       | 780/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=781/3000, vae_loss=273.6042]
Training: VAE decoder with masked batch labels:  26%|██▌       | 781/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=782/3000, vae_loss=275.7258]
Training: VAE decoder with masked batch labels:  26%|██▌       | 782/3000 [00:09<00:27, 82.08it/s, cycle_loss=0.0000, epoch=783/3000, vae_loss=272.8820]
Training: VAE decoder with masked batch labels:  26%|██▌       | 783/3000 [00:09<00:27, 82.04it/s, cycle_loss=0.0000, epoch=783/3000, vae_loss=272.8820]
Training: VAE decoder with masked batch labels:  26%|██▌       | 783/3000 [00:09<00:27, 82.04it/s, cycle_loss=0.0000, epoch=784/3000, vae_loss=275.2523]
Training: VAE decoder with masked batch labels:  26%|██▌       | 784/3000 [00:09<00:27, 82.04it/s, cycle_loss=0.0000, epoch=785/3000, vae_loss=275.7849]
Training: VAE decoder with masked batch labels:  26%|██▌       | 785/3000 [00:09<00:26, 82.04it/s, cycle_loss=0.0000, epoch=786/3000, vae_loss=277.5846]
Training: VAE decoder with masked batch labels:  26%|██▌       | 786/3000 [00:09<00:26, 82.04it/s, cycle_loss=0.0000, epoch=787/3000, vae_loss=275.8587]
Training: VAE decoder with masked batch labels:  26%|██▌       | 787/3000 [00:09<00:26, 82.04it/s, cycle_loss=0.0000, epoch=788/3000, vae_loss=278.0955]
Training: VAE decoder with masked batch labels:  26%|██▋       | 788/3000 [00:09<00:26, 82.04it/s, cycle_loss=0.0000, epoch=789/3000, vae_loss=276.6834]
Training: VAE decoder with masked batch labels:  26%|██▋       | 789/3000 [00:09<00:26, 82.04it/s, cycle_loss=0.0000, epoch=790/3000, vae_loss=274.2081]
Training: VAE decoder with masked batch labels:  26%|██▋       | 790/3000 [00:09<00:26, 82.04it/s, cycle_loss=0.0000, epoch=791/3000, vae_loss=277.3742]
Training: VAE decoder with masked batch labels:  26%|██▋       | 791/3000 [00:09<00:26, 82.04it/s, cycle_loss=0.0000, epoch=792/3000, vae_loss=275.9838]
Training: VAE decoder with masked batch labels:  26%|██▋       | 792/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=792/3000, vae_loss=275.9838]
Training: VAE decoder with masked batch labels:  26%|██▋       | 792/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=793/3000, vae_loss=277.7476]
Training: VAE decoder with masked batch labels:  26%|██▋       | 793/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=794/3000, vae_loss=281.0818]
Training: VAE decoder with masked batch labels:  26%|██▋       | 794/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=795/3000, vae_loss=280.5231]
Training: VAE decoder with masked batch labels:  26%|██▋       | 795/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=796/3000, vae_loss=279.1394]
Training: VAE decoder with masked batch labels:  27%|██▋       | 796/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=797/3000, vae_loss=278.7416]
Training: VAE decoder with masked batch labels:  27%|██▋       | 797/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=798/3000, vae_loss=282.0782]
Training: VAE decoder with masked batch labels:  27%|██▋       | 798/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=799/3000, vae_loss=275.7783]
Training: VAE decoder with masked batch labels:  27%|██▋       | 799/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=800/3000, vae_loss=280.8630]
Training: VAE decoder with masked batch labels:  27%|██▋       | 800/3000 [00:09<00:26, 82.23it/s, cycle_loss=0.0000, epoch=801/3000, vae_loss=276.6906]
Training: VAE decoder with masked batch labels:  27%|██▋       | 801/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=801/3000, vae_loss=276.6906]
Training: VAE decoder with masked batch labels:  27%|██▋       | 801/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=802/3000, vae_loss=277.5931]
Training: VAE decoder with masked batch labels:  27%|██▋       | 802/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=803/3000, vae_loss=281.3877]
Training: VAE decoder with masked batch labels:  27%|██▋       | 803/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=804/3000, vae_loss=284.9958]
Training: VAE decoder with masked batch labels:  27%|██▋       | 804/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=805/3000, vae_loss=280.4229]
Training: VAE decoder with masked batch labels:  27%|██▋       | 805/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=806/3000, vae_loss=279.8532]
Training: VAE decoder with masked batch labels:  27%|██▋       | 806/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=807/3000, vae_loss=278.9527]
Training: VAE decoder with masked batch labels:  27%|██▋       | 807/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=808/3000, vae_loss=282.1143]
Training: VAE decoder with masked batch labels:  27%|██▋       | 808/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=809/3000, vae_loss=277.2625]
Training: VAE decoder with masked batch labels:  27%|██▋       | 809/3000 [00:09<00:26, 82.34it/s, cycle_loss=0.0000, epoch=810/3000, vae_loss=282.8875]
Training: VAE decoder with masked batch labels:  27%|██▋       | 810/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=810/3000, vae_loss=282.8875]
Training: VAE decoder with masked batch labels:  27%|██▋       | 810/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=811/3000, vae_loss=277.0639]
Training: VAE decoder with masked batch labels:  27%|██▋       | 811/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=812/3000, vae_loss=281.7577]
Training: VAE decoder with masked batch labels:  27%|██▋       | 812/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=813/3000, vae_loss=279.1233]
Training: VAE decoder with masked batch labels:  27%|██▋       | 813/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=814/3000, vae_loss=276.6527]
Training: VAE decoder with masked batch labels:  27%|██▋       | 814/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=815/3000, vae_loss=281.7121]
Training: VAE decoder with masked batch labels:  27%|██▋       | 815/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=816/3000, vae_loss=281.4475]
Training: VAE decoder with masked batch labels:  27%|██▋       | 816/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=817/3000, vae_loss=276.9970]
Training: VAE decoder with masked batch labels:  27%|██▋       | 817/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=818/3000, vae_loss=280.2486]
Training: VAE decoder with masked batch labels:  27%|██▋       | 818/3000 [00:09<00:27, 79.13it/s, cycle_loss=0.0000, epoch=819/3000, vae_loss=281.6715]
Training: VAE decoder with masked batch labels:  27%|██▋       | 819/3000 [00:09<00:27, 80.15it/s, cycle_loss=0.0000, epoch=819/3000, vae_loss=281.6715]
Training: VAE decoder with masked batch labels:  27%|██▋       | 819/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=820/3000, vae_loss=285.8903]
Training: VAE decoder with masked batch labels:  27%|██▋       | 820/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=821/3000, vae_loss=281.5345]
Training: VAE decoder with masked batch labels:  27%|██▋       | 821/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=822/3000, vae_loss=281.9576]
Training: VAE decoder with masked batch labels:  27%|██▋       | 822/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=823/3000, vae_loss=282.5281]
Training: VAE decoder with masked batch labels:  27%|██▋       | 823/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=824/3000, vae_loss=279.6736]
Training: VAE decoder with masked batch labels:  27%|██▋       | 824/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=825/3000, vae_loss=282.2219]
Training: VAE decoder with masked batch labels:  28%|██▊       | 825/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=826/3000, vae_loss=279.7086]
Training: VAE decoder with masked batch labels:  28%|██▊       | 826/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=827/3000, vae_loss=283.1360]
Training: VAE decoder with masked batch labels:  28%|██▊       | 827/3000 [00:10<00:27, 80.15it/s, cycle_loss=0.0000, epoch=828/3000, vae_loss=279.5203]
Training: VAE decoder with masked batch labels:  28%|██▊       | 828/3000 [00:10<00:27, 80.42it/s, cycle_loss=0.0000, epoch=828/3000, vae_loss=279.5203]
Training: VAE decoder with masked batch labels:  28%|██▊       | 828/3000 [00:10<00:27, 80.42it/s, cycle_loss=0.0000, epoch=829/3000, vae_loss=282.0992]
Training: VAE decoder with masked batch labels:  28%|██▊       | 829/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=830/3000, vae_loss=279.3213]
Training: VAE decoder with masked batch labels:  28%|██▊       | 830/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=831/3000, vae_loss=281.2776]
Training: VAE decoder with masked batch labels:  28%|██▊       | 831/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=832/3000, vae_loss=281.0555]
Training: VAE decoder with masked batch labels:  28%|██▊       | 832/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=833/3000, vae_loss=283.7939]
Training: VAE decoder with masked batch labels:  28%|██▊       | 833/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=834/3000, vae_loss=282.1871]
Training: VAE decoder with masked batch labels:  28%|██▊       | 834/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=835/3000, vae_loss=284.7419]
Training: VAE decoder with masked batch labels:  28%|██▊       | 835/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=836/3000, vae_loss=284.7399]
Training: VAE decoder with masked batch labels:  28%|██▊       | 836/3000 [00:10<00:26, 80.42it/s, cycle_loss=0.0000, epoch=837/3000, vae_loss=283.7627]
Training: VAE decoder with masked batch labels:  28%|██▊       | 837/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=837/3000, vae_loss=283.7627]
Training: VAE decoder with masked batch labels:  28%|██▊       | 837/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=838/3000, vae_loss=282.7952]
Training: VAE decoder with masked batch labels:  28%|██▊       | 838/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=839/3000, vae_loss=283.3696]
Training: VAE decoder with masked batch labels:  28%|██▊       | 839/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=840/3000, vae_loss=283.2668]
Training: VAE decoder with masked batch labels:  28%|██▊       | 840/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=841/3000, vae_loss=285.8249]
Training: VAE decoder with masked batch labels:  28%|██▊       | 841/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=842/3000, vae_loss=283.3570]
Training: VAE decoder with masked batch labels:  28%|██▊       | 842/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=843/3000, vae_loss=281.4170]
Training: VAE decoder with masked batch labels:  28%|██▊       | 843/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=844/3000, vae_loss=283.1051]
Training: VAE decoder with masked batch labels:  28%|██▊       | 844/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=845/3000, vae_loss=283.3285]
Training: VAE decoder with masked batch labels:  28%|██▊       | 845/3000 [00:10<00:26, 80.82it/s, cycle_loss=0.0000, epoch=846/3000, vae_loss=282.0342]
Training: VAE decoder with masked batch labels:  28%|██▊       | 846/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=846/3000, vae_loss=282.0342]
Training: VAE decoder with masked batch labels:  28%|██▊       | 846/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=847/3000, vae_loss=284.2670]
Training: VAE decoder with masked batch labels:  28%|██▊       | 847/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=848/3000, vae_loss=285.5941]
Training: VAE decoder with masked batch labels:  28%|██▊       | 848/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=849/3000, vae_loss=287.4138]
Training: VAE decoder with masked batch labels:  28%|██▊       | 849/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=850/3000, vae_loss=283.3965]
Training: VAE decoder with masked batch labels:  28%|██▊       | 850/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=851/3000, vae_loss=284.1121]
Training: VAE decoder with masked batch labels:  28%|██▊       | 851/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=852/3000, vae_loss=284.8653]
Training: VAE decoder with masked batch labels:  28%|██▊       | 852/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=853/3000, vae_loss=283.6993]
Training: VAE decoder with masked batch labels:  28%|██▊       | 853/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=854/3000, vae_loss=287.4578]
Training: VAE decoder with masked batch labels:  28%|██▊       | 854/3000 [00:10<00:26, 80.55it/s, cycle_loss=0.0000, epoch=855/3000, vae_loss=286.2692]
Training: VAE decoder with masked batch labels:  28%|██▊       | 855/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=855/3000, vae_loss=286.2692]
Training: VAE decoder with masked batch labels:  28%|██▊       | 855/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=856/3000, vae_loss=288.1528]
Training: VAE decoder with masked batch labels:  29%|██▊       | 856/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=857/3000, vae_loss=283.3093]
Training: VAE decoder with masked batch labels:  29%|██▊       | 857/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=858/3000, vae_loss=284.7007]
Training: VAE decoder with masked batch labels:  29%|██▊       | 858/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=859/3000, vae_loss=287.5179]
Training: VAE decoder with masked batch labels:  29%|██▊       | 859/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=860/3000, vae_loss=282.8965]
Training: VAE decoder with masked batch labels:  29%|██▊       | 860/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=861/3000, vae_loss=284.2453]
Training: VAE decoder with masked batch labels:  29%|██▊       | 861/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=862/3000, vae_loss=284.7625]
Training: VAE decoder with masked batch labels:  29%|██▊       | 862/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=863/3000, vae_loss=288.0264]
Training: VAE decoder with masked batch labels:  29%|██▉       | 863/3000 [00:10<00:26, 80.47it/s, cycle_loss=0.0000, epoch=864/3000, vae_loss=284.4973]
Training: VAE decoder with masked batch labels:  29%|██▉       | 864/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=864/3000, vae_loss=284.4973]
Training: VAE decoder with masked batch labels:  29%|██▉       | 864/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=865/3000, vae_loss=284.6218]
Training: VAE decoder with masked batch labels:  29%|██▉       | 865/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=866/3000, vae_loss=288.1093]
Training: VAE decoder with masked batch labels:  29%|██▉       | 866/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=867/3000, vae_loss=284.9762]
Training: VAE decoder with masked batch labels:  29%|██▉       | 867/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=868/3000, vae_loss=283.8937]
Training: VAE decoder with masked batch labels:  29%|██▉       | 868/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=869/3000, vae_loss=282.1283]
Training: VAE decoder with masked batch labels:  29%|██▉       | 869/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=870/3000, vae_loss=284.5726]
Training: VAE decoder with masked batch labels:  29%|██▉       | 870/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=871/3000, vae_loss=288.8019]
Training: VAE decoder with masked batch labels:  29%|██▉       | 871/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=872/3000, vae_loss=282.3117]
Training: VAE decoder with masked batch labels:  29%|██▉       | 872/3000 [00:10<00:26, 80.90it/s, cycle_loss=0.0000, epoch=873/3000, vae_loss=285.9079]
Training: VAE decoder with masked batch labels:  29%|██▉       | 873/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=873/3000, vae_loss=285.9079]
Training: VAE decoder with masked batch labels:  29%|██▉       | 873/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=874/3000, vae_loss=289.1996]
Training: VAE decoder with masked batch labels:  29%|██▉       | 874/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=875/3000, vae_loss=284.3771]
Training: VAE decoder with masked batch labels:  29%|██▉       | 875/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=876/3000, vae_loss=289.6599]
Training: VAE decoder with masked batch labels:  29%|██▉       | 876/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=877/3000, vae_loss=291.5961]
Training: VAE decoder with masked batch labels:  29%|██▉       | 877/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=878/3000, vae_loss=287.9848]
Training: VAE decoder with masked batch labels:  29%|██▉       | 878/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=879/3000, vae_loss=291.3198]
Training: VAE decoder with masked batch labels:  29%|██▉       | 879/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=880/3000, vae_loss=291.4786]
Training: VAE decoder with masked batch labels:  29%|██▉       | 880/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=881/3000, vae_loss=288.7743]
Training: VAE decoder with masked batch labels:  29%|██▉       | 881/3000 [00:10<00:25, 81.96it/s, cycle_loss=0.0000, epoch=882/3000, vae_loss=285.6956]
Training: VAE decoder with masked batch labels:  29%|██▉       | 882/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=882/3000, vae_loss=285.6956]
Training: VAE decoder with masked batch labels:  29%|██▉       | 882/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=883/3000, vae_loss=287.0861]
Training: VAE decoder with masked batch labels:  29%|██▉       | 883/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=884/3000, vae_loss=288.5560]
Training: VAE decoder with masked batch labels:  29%|██▉       | 884/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=885/3000, vae_loss=288.6744]
Training: VAE decoder with masked batch labels:  30%|██▉       | 885/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=886/3000, vae_loss=291.0626]
Training: VAE decoder with masked batch labels:  30%|██▉       | 886/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=887/3000, vae_loss=289.2325]
Training: VAE decoder with masked batch labels:  30%|██▉       | 887/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=888/3000, vae_loss=285.0140]
Training: VAE decoder with masked batch labels:  30%|██▉       | 888/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=889/3000, vae_loss=287.9140]
Training: VAE decoder with masked batch labels:  30%|██▉       | 889/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=890/3000, vae_loss=288.1454]
Training: VAE decoder with masked batch labels:  30%|██▉       | 890/3000 [00:10<00:25, 81.73it/s, cycle_loss=0.0000, epoch=891/3000, vae_loss=284.3473]
Training: VAE decoder with masked batch labels:  30%|██▉       | 891/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=891/3000, vae_loss=284.3473]
Training: VAE decoder with masked batch labels:  30%|██▉       | 891/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=892/3000, vae_loss=295.6703]
Training: VAE decoder with masked batch labels:  30%|██▉       | 892/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=893/3000, vae_loss=294.2369]
Training: VAE decoder with masked batch labels:  30%|██▉       | 893/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=894/3000, vae_loss=291.1880]
Training: VAE decoder with masked batch labels:  30%|██▉       | 894/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=895/3000, vae_loss=289.2721]
Training: VAE decoder with masked batch labels:  30%|██▉       | 895/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=896/3000, vae_loss=288.0616]
Training: VAE decoder with masked batch labels:  30%|██▉       | 896/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=897/3000, vae_loss=288.0911]
Training: VAE decoder with masked batch labels:  30%|██▉       | 897/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=898/3000, vae_loss=288.2025]
Training: VAE decoder with masked batch labels:  30%|██▉       | 898/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=899/3000, vae_loss=299.7680]
Training: VAE decoder with masked batch labels:  30%|██▉       | 899/3000 [00:10<00:25, 81.45it/s, cycle_loss=0.0000, epoch=900/3000, vae_loss=289.8621]
Training: VAE decoder with masked batch labels:  30%|███       | 900/3000 [00:10<00:25, 81.77it/s, cycle_loss=0.0000, epoch=900/3000, vae_loss=289.8621]
Training: VAE decoder with masked batch labels:  30%|███       | 900/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=901/3000, vae_loss=291.5784]
Training: VAE decoder with masked batch labels:  30%|███       | 901/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=902/3000, vae_loss=289.8810]
Training: VAE decoder with masked batch labels:  30%|███       | 902/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=903/3000, vae_loss=289.0335]
Training: VAE decoder with masked batch labels:  30%|███       | 903/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=904/3000, vae_loss=287.1631]
Training: VAE decoder with masked batch labels:  30%|███       | 904/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=905/3000, vae_loss=295.2191]
Training: VAE decoder with masked batch labels:  30%|███       | 905/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=906/3000, vae_loss=295.2648]
Training: VAE decoder with masked batch labels:  30%|███       | 906/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=907/3000, vae_loss=287.6336]
Training: VAE decoder with masked batch labels:  30%|███       | 907/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=908/3000, vae_loss=292.9602]
Training: VAE decoder with masked batch labels:  30%|███       | 908/3000 [00:11<00:25, 81.77it/s, cycle_loss=0.0000, epoch=909/3000, vae_loss=297.0178]
Training: VAE decoder with masked batch labels:  30%|███       | 909/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=909/3000, vae_loss=297.0178]
Training: VAE decoder with masked batch labels:  30%|███       | 909/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=910/3000, vae_loss=295.8425]
Training: VAE decoder with masked batch labels:  30%|███       | 910/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=911/3000, vae_loss=290.0269]
Training: VAE decoder with masked batch labels:  30%|███       | 911/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=912/3000, vae_loss=289.7962]
Training: VAE decoder with masked batch labels:  30%|███       | 912/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=913/3000, vae_loss=294.6136]
Training: VAE decoder with masked batch labels:  30%|███       | 913/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=914/3000, vae_loss=296.5970]
Training: VAE decoder with masked batch labels:  30%|███       | 914/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=915/3000, vae_loss=291.3797]
Training: VAE decoder with masked batch labels:  30%|███       | 915/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=916/3000, vae_loss=290.2944]
Training: VAE decoder with masked batch labels:  31%|███       | 916/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=917/3000, vae_loss=288.4439]
Training: VAE decoder with masked batch labels:  31%|███       | 917/3000 [00:11<00:25, 81.98it/s, cycle_loss=0.0000, epoch=918/3000, vae_loss=293.3465]
Training: VAE decoder with masked batch labels:  31%|███       | 918/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=918/3000, vae_loss=293.3465]
Training: VAE decoder with masked batch labels:  31%|███       | 918/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=919/3000, vae_loss=287.5930]
Training: VAE decoder with masked batch labels:  31%|███       | 919/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=920/3000, vae_loss=289.5873]
Training: VAE decoder with masked batch labels:  31%|███       | 920/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=921/3000, vae_loss=293.6244]
Training: VAE decoder with masked batch labels:  31%|███       | 921/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=922/3000, vae_loss=289.9419]
Training: VAE decoder with masked batch labels:  31%|███       | 922/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=923/3000, vae_loss=291.4784]
Training: VAE decoder with masked batch labels:  31%|███       | 923/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=924/3000, vae_loss=304.3131]
Training: VAE decoder with masked batch labels:  31%|███       | 924/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=925/3000, vae_loss=294.4799]
Training: VAE decoder with masked batch labels:  31%|███       | 925/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=926/3000, vae_loss=294.0244]
Training: VAE decoder with masked batch labels:  31%|███       | 926/3000 [00:11<00:25, 82.54it/s, cycle_loss=0.0000, epoch=927/3000, vae_loss=300.8667]
Training: VAE decoder with masked batch labels:  31%|███       | 927/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=927/3000, vae_loss=300.8667]
Training: VAE decoder with masked batch labels:  31%|███       | 927/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=928/3000, vae_loss=293.6617]
Training: VAE decoder with masked batch labels:  31%|███       | 928/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=929/3000, vae_loss=290.8118]
Training: VAE decoder with masked batch labels:  31%|███       | 929/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=930/3000, vae_loss=296.8595]
Training: VAE decoder with masked batch labels:  31%|███       | 930/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=931/3000, vae_loss=296.5024]
Training: VAE decoder with masked batch labels:  31%|███       | 931/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=932/3000, vae_loss=293.3476]
Training: VAE decoder with masked batch labels:  31%|███       | 932/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=933/3000, vae_loss=299.0481]
Training: VAE decoder with masked batch labels:  31%|███       | 933/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=934/3000, vae_loss=294.2329]
Training: VAE decoder with masked batch labels:  31%|███       | 934/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=935/3000, vae_loss=292.1154]
Training: VAE decoder with masked batch labels:  31%|███       | 935/3000 [00:11<00:25, 82.12it/s, cycle_loss=0.0000, epoch=936/3000, vae_loss=294.2170]
Training: VAE decoder with masked batch labels:  31%|███       | 936/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=936/3000, vae_loss=294.2170]
Training: VAE decoder with masked batch labels:  31%|███       | 936/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=937/3000, vae_loss=292.7707]
Training: VAE decoder with masked batch labels:  31%|███       | 937/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=938/3000, vae_loss=297.7209]
Training: VAE decoder with masked batch labels:  31%|███▏      | 938/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=939/3000, vae_loss=293.4055]
Training: VAE decoder with masked batch labels:  31%|███▏      | 939/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=940/3000, vae_loss=294.9897]
Training: VAE decoder with masked batch labels:  31%|███▏      | 940/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=941/3000, vae_loss=298.7767]
Training: VAE decoder with masked batch labels:  31%|███▏      | 941/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=942/3000, vae_loss=293.3255]
Training: VAE decoder with masked batch labels:  31%|███▏      | 942/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=943/3000, vae_loss=296.8517]
Training: VAE decoder with masked batch labels:  31%|███▏      | 943/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=944/3000, vae_loss=295.1148]
Training: VAE decoder with masked batch labels:  31%|███▏      | 944/3000 [00:11<00:25, 81.91it/s, cycle_loss=0.0000, epoch=945/3000, vae_loss=299.2430]
Training: VAE decoder with masked batch labels:  32%|███▏      | 945/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=945/3000, vae_loss=299.2430]
Training: VAE decoder with masked batch labels:  32%|███▏      | 945/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=946/3000, vae_loss=297.6530]
Training: VAE decoder with masked batch labels:  32%|███▏      | 946/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=947/3000, vae_loss=300.1161]
Training: VAE decoder with masked batch labels:  32%|███▏      | 947/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=948/3000, vae_loss=304.6126]
Training: VAE decoder with masked batch labels:  32%|███▏      | 948/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=949/3000, vae_loss=295.8723]
Training: VAE decoder with masked batch labels:  32%|███▏      | 949/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=950/3000, vae_loss=299.9813]
Training: VAE decoder with masked batch labels:  32%|███▏      | 950/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=951/3000, vae_loss=300.3009]
Training: VAE decoder with masked batch labels:  32%|███▏      | 951/3000 [00:11<00:25, 81.95it/s, cycle_loss=0.0000, epoch=952/3000, vae_loss=294.6546]
Training: VAE decoder with masked batch labels:  32%|███▏      | 952/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=953/3000, vae_loss=297.1561]
Training: VAE decoder with masked batch labels:  32%|███▏      | 953/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=954/3000, vae_loss=297.0532]
Training: VAE decoder with masked batch labels:  32%|███▏      | 954/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=954/3000, vae_loss=297.0532]
Training: VAE decoder with masked batch labels:  32%|███▏      | 954/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=955/3000, vae_loss=301.8793]
Training: VAE decoder with masked batch labels:  32%|███▏      | 955/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=956/3000, vae_loss=294.9183]
Training: VAE decoder with masked batch labels:  32%|███▏      | 956/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=957/3000, vae_loss=298.7793]
Training: VAE decoder with masked batch labels:  32%|███▏      | 957/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=958/3000, vae_loss=298.5562]
Training: VAE decoder with masked batch labels:  32%|███▏      | 958/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=959/3000, vae_loss=304.1733]
Training: VAE decoder with masked batch labels:  32%|███▏      | 959/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=960/3000, vae_loss=298.2437]
Training: VAE decoder with masked batch labels:  32%|███▏      | 960/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=961/3000, vae_loss=298.4670]
Training: VAE decoder with masked batch labels:  32%|███▏      | 961/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=962/3000, vae_loss=299.7792]
Training: VAE decoder with masked batch labels:  32%|███▏      | 962/3000 [00:11<00:24, 81.99it/s, cycle_loss=0.0000, epoch=963/3000, vae_loss=298.1754]
Training: VAE decoder with masked batch labels:  32%|███▏      | 963/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=963/3000, vae_loss=298.1754]
Training: VAE decoder with masked batch labels:  32%|███▏      | 963/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=964/3000, vae_loss=307.4229]
Training: VAE decoder with masked batch labels:  32%|███▏      | 964/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=965/3000, vae_loss=304.1753]
Training: VAE decoder with masked batch labels:  32%|███▏      | 965/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=966/3000, vae_loss=298.0243]
Training: VAE decoder with masked batch labels:  32%|███▏      | 966/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=967/3000, vae_loss=298.0297]
Training: VAE decoder with masked batch labels:  32%|███▏      | 967/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=968/3000, vae_loss=300.1887]
Training: VAE decoder with masked batch labels:  32%|███▏      | 968/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=969/3000, vae_loss=301.6320]
Training: VAE decoder with masked batch labels:  32%|███▏      | 969/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=970/3000, vae_loss=297.9979]
Training: VAE decoder with masked batch labels:  32%|███▏      | 970/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=971/3000, vae_loss=305.9000]
Training: VAE decoder with masked batch labels:  32%|███▏      | 971/3000 [00:11<00:24, 81.95it/s, cycle_loss=0.0000, epoch=972/3000, vae_loss=302.2768]
Training: VAE decoder with masked batch labels:  32%|███▏      | 972/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=972/3000, vae_loss=302.2768]
Training: VAE decoder with masked batch labels:  32%|███▏      | 972/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=973/3000, vae_loss=299.2776]
Training: VAE decoder with masked batch labels:  32%|███▏      | 973/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=974/3000, vae_loss=302.7195]
Training: VAE decoder with masked batch labels:  32%|███▏      | 974/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=975/3000, vae_loss=306.6098]
Training: VAE decoder with masked batch labels:  32%|███▎      | 975/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=976/3000, vae_loss=298.7156]
Training: VAE decoder with masked batch labels:  33%|███▎      | 976/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=977/3000, vae_loss=299.5246]
Training: VAE decoder with masked batch labels:  33%|███▎      | 977/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=978/3000, vae_loss=299.5152]
Training: VAE decoder with masked batch labels:  33%|███▎      | 978/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=979/3000, vae_loss=300.4420]
Training: VAE decoder with masked batch labels:  33%|███▎      | 979/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=980/3000, vae_loss=309.0755]
Training: VAE decoder with masked batch labels:  33%|███▎      | 980/3000 [00:11<00:24, 81.34it/s, cycle_loss=0.0000, epoch=981/3000, vae_loss=307.6540]
Training: VAE decoder with masked batch labels:  33%|███▎      | 981/3000 [00:11<00:24, 81.66it/s, cycle_loss=0.0000, epoch=981/3000, vae_loss=307.6540]
Training: VAE decoder with masked batch labels:  33%|███▎      | 981/3000 [00:11<00:24, 81.66it/s, cycle_loss=0.0000, epoch=982/3000, vae_loss=309.5476]
Training: VAE decoder with masked batch labels:  33%|███▎      | 982/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=983/3000, vae_loss=302.2678]
Training: VAE decoder with masked batch labels:  33%|███▎      | 983/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=984/3000, vae_loss=309.4094]
Training: VAE decoder with masked batch labels:  33%|███▎      | 984/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=985/3000, vae_loss=303.8586]
Training: VAE decoder with masked batch labels:  33%|███▎      | 985/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=986/3000, vae_loss=304.4199]
Training: VAE decoder with masked batch labels:  33%|███▎      | 986/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=987/3000, vae_loss=304.2951]
Training: VAE decoder with masked batch labels:  33%|███▎      | 987/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=988/3000, vae_loss=304.1406]
Training: VAE decoder with masked batch labels:  33%|███▎      | 988/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=989/3000, vae_loss=305.2278]
Training: VAE decoder with masked batch labels:  33%|███▎      | 989/3000 [00:12<00:24, 81.66it/s, cycle_loss=0.0000, epoch=990/3000, vae_loss=302.0247]
Training: VAE decoder with masked batch labels:  33%|███▎      | 990/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=990/3000, vae_loss=302.0247]
Training: VAE decoder with masked batch labels:  33%|███▎      | 990/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=991/3000, vae_loss=306.5561]
Training: VAE decoder with masked batch labels:  33%|███▎      | 991/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=992/3000, vae_loss=302.5408]
Training: VAE decoder with masked batch labels:  33%|███▎      | 992/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=993/3000, vae_loss=306.9178]
Training: VAE decoder with masked batch labels:  33%|███▎      | 993/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=994/3000, vae_loss=306.4275]
Training: VAE decoder with masked batch labels:  33%|███▎      | 994/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=995/3000, vae_loss=300.0356]
Training: VAE decoder with masked batch labels:  33%|███▎      | 995/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=996/3000, vae_loss=308.6485]
Training: VAE decoder with masked batch labels:  33%|███▎      | 996/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=997/3000, vae_loss=306.9257]
Training: VAE decoder with masked batch labels:  33%|███▎      | 997/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=998/3000, vae_loss=313.2006]
Training: VAE decoder with masked batch labels:  33%|███▎      | 998/3000 [00:12<00:24, 81.88it/s, cycle_loss=0.0000, epoch=999/3000, vae_loss=305.0477]
Training: VAE decoder with masked batch labels:  33%|███▎      | 999/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=999/3000, vae_loss=305.0477]
Training: VAE decoder with masked batch labels:  33%|███▎      | 999/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1000/3000, vae_loss=305.9508]
Training: VAE decoder with masked batch labels:  33%|███▎      | 1000/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1001/3000, vae_loss=308.7688]
Training: VAE decoder with masked batch labels:  33%|███▎      | 1001/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1002/3000, vae_loss=302.8215]
Training: VAE decoder with masked batch labels:  33%|███▎      | 1002/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1003/3000, vae_loss=303.5388]
Training: VAE decoder with masked batch labels:  33%|███▎      | 1003/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1004/3000, vae_loss=306.2319]
Training: VAE decoder with masked batch labels:  33%|███▎      | 1004/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1005/3000, vae_loss=310.4957]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1005/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1006/3000, vae_loss=309.9857]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1006/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1007/3000, vae_loss=303.0681]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1007/3000 [00:12<00:24, 81.68it/s, cycle_loss=0.0000, epoch=1008/3000, vae_loss=312.1573]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1008/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1008/3000, vae_loss=312.1573]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1008/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1009/3000, vae_loss=306.9019]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1009/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1010/3000, vae_loss=314.4361]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1010/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1011/3000, vae_loss=311.5667]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1011/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1012/3000, vae_loss=311.9998]
Training: VAE decoder with masked batch labels:  34%|███▎      | 1012/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1013/3000, vae_loss=309.4163]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1013/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1014/3000, vae_loss=300.9118]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1014/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1015/3000, vae_loss=308.7355]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1015/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1016/3000, vae_loss=307.0876]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1016/3000 [00:12<00:24, 81.35it/s, cycle_loss=0.0000, epoch=1017/3000, vae_loss=305.4249]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1017/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1017/3000, vae_loss=305.4249]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1017/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1018/3000, vae_loss=310.5609]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1018/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1019/3000, vae_loss=312.8363]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1019/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1020/3000, vae_loss=316.5750]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1020/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1021/3000, vae_loss=306.5184]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1021/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1022/3000, vae_loss=311.8563]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1022/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1023/3000, vae_loss=308.0929]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1023/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1024/3000, vae_loss=313.2309]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1024/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1025/3000, vae_loss=316.4055]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1025/3000 [00:12<00:24, 81.06it/s, cycle_loss=0.0000, epoch=1026/3000, vae_loss=310.8858]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1026/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1026/3000, vae_loss=310.8858]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1026/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1027/3000, vae_loss=313.9718]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1027/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1028/3000, vae_loss=307.9305]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1028/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1029/3000, vae_loss=311.7041]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1029/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1030/3000, vae_loss=317.0250]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1030/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1031/3000, vae_loss=311.2135]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1031/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1032/3000, vae_loss=306.4109]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1032/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1033/3000, vae_loss=319.5841]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1033/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1034/3000, vae_loss=310.5113]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1034/3000 [00:12<00:24, 81.54it/s, cycle_loss=0.0000, epoch=1035/3000, vae_loss=310.6725]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1035/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1035/3000, vae_loss=310.6725]
Training: VAE decoder with masked batch labels:  34%|███▍      | 1035/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1036/3000, vae_loss=318.1927]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1036/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1037/3000, vae_loss=309.9391]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1037/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1038/3000, vae_loss=317.7386]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1038/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1039/3000, vae_loss=308.6612]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1039/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1040/3000, vae_loss=310.9745]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1040/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1041/3000, vae_loss=313.5952]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1041/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1042/3000, vae_loss=319.5710]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1042/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1043/3000, vae_loss=311.7758]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1043/3000 [00:12<00:23, 82.13it/s, cycle_loss=0.0000, epoch=1044/3000, vae_loss=319.0658]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1044/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1044/3000, vae_loss=319.0658]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1044/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1045/3000, vae_loss=316.8564]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1045/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1046/3000, vae_loss=310.9846]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1046/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1047/3000, vae_loss=310.1033]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1047/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1048/3000, vae_loss=310.9198]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1048/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1049/3000, vae_loss=310.8020]
Training: VAE decoder with masked batch labels:  35%|███▍      | 1049/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1050/3000, vae_loss=311.0604]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1050/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1051/3000, vae_loss=312.9797]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1051/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1052/3000, vae_loss=317.9295]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1052/3000 [00:12<00:23, 82.55it/s, cycle_loss=0.0000, epoch=1053/3000, vae_loss=310.5768]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1053/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1053/3000, vae_loss=310.5768]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1053/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1054/3000, vae_loss=313.2724]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1054/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1055/3000, vae_loss=315.1495]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1055/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1056/3000, vae_loss=312.3129]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1056/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1057/3000, vae_loss=310.9647]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1057/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1058/3000, vae_loss=321.6458]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1058/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1059/3000, vae_loss=316.2911]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1059/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1060/3000, vae_loss=318.4304]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1060/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1061/3000, vae_loss=323.1513]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1061/3000 [00:12<00:23, 82.08it/s, cycle_loss=0.0000, epoch=1062/3000, vae_loss=319.4276]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1062/3000 [00:12<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1062/3000, vae_loss=319.4276]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1062/3000 [00:12<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1063/3000, vae_loss=319.4647]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1063/3000 [00:12<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1064/3000, vae_loss=319.5344]
Training: VAE decoder with masked batch labels:  35%|███▌      | 1064/3000 [00:13<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1065/3000, vae_loss=315.2758]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1065/3000 [00:13<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1066/3000, vae_loss=325.7071]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1066/3000 [00:13<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1067/3000, vae_loss=313.8223]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1067/3000 [00:13<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1068/3000, vae_loss=324.0291]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1068/3000 [00:13<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1069/3000, vae_loss=329.3671]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1069/3000 [00:13<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1070/3000, vae_loss=320.7786]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1070/3000 [00:13<00:23, 82.62it/s, cycle_loss=0.0000, epoch=1071/3000, vae_loss=321.9511]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1071/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1071/3000, vae_loss=321.9511]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1071/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1072/3000, vae_loss=318.7351]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1072/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1073/3000, vae_loss=319.7014]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1073/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1074/3000, vae_loss=320.2346]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1074/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1075/3000, vae_loss=325.0835]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1075/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1076/3000, vae_loss=330.2442]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1076/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1077/3000, vae_loss=319.3931]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1077/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1078/3000, vae_loss=318.9411]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1078/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1079/3000, vae_loss=323.5596]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1079/3000 [00:13<00:23, 82.01it/s, cycle_loss=0.0000, epoch=1080/3000, vae_loss=321.3927]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1080/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1080/3000, vae_loss=321.3927]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1080/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1081/3000, vae_loss=321.2047]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1081/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1082/3000, vae_loss=318.5754]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1082/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1083/3000, vae_loss=328.3047]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1083/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1084/3000, vae_loss=322.4932]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1084/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1085/3000, vae_loss=331.4661]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1085/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1086/3000, vae_loss=323.9666]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1086/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1087/3000, vae_loss=324.7361]
Training: VAE decoder with masked batch labels:  36%|███▌      | 1087/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1088/3000, vae_loss=324.9478]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1088/3000 [00:13<00:23, 82.18it/s, cycle_loss=0.0000, epoch=1089/3000, vae_loss=325.5654]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1089/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1089/3000, vae_loss=325.5654]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1089/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1090/3000, vae_loss=320.4740]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1090/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1091/3000, vae_loss=324.5108]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1091/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1092/3000, vae_loss=323.4288]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1092/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1093/3000, vae_loss=318.7594]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1093/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1094/3000, vae_loss=322.8880]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1094/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1095/3000, vae_loss=327.2316]
Training: VAE decoder with masked batch labels:  36%|███▋      | 1095/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1096/3000, vae_loss=329.3254]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1096/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1097/3000, vae_loss=325.8792]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1097/3000 [00:13<00:23, 81.82it/s, cycle_loss=0.0000, epoch=1098/3000, vae_loss=326.3219]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1098/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1098/3000, vae_loss=326.3219]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1098/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1099/3000, vae_loss=321.5951]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1099/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1100/3000, vae_loss=328.3797]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1100/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1101/3000, vae_loss=322.3887]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1101/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1102/3000, vae_loss=328.5005]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1102/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1103/3000, vae_loss=326.1523]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1103/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1104/3000, vae_loss=331.5360]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1104/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1105/3000, vae_loss=325.8692]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1105/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1106/3000, vae_loss=330.7358]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1106/3000 [00:13<00:23, 81.75it/s, cycle_loss=0.0000, epoch=1107/3000, vae_loss=324.7917]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1107/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1107/3000, vae_loss=324.7917]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1107/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1108/3000, vae_loss=336.2013]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1108/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1109/3000, vae_loss=332.0074]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1109/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1110/3000, vae_loss=328.4231]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1110/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1111/3000, vae_loss=331.1975]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1111/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1112/3000, vae_loss=336.2400]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1112/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1113/3000, vae_loss=333.2814]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1113/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1114/3000, vae_loss=333.4017]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1114/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1115/3000, vae_loss=321.3257]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1115/3000 [00:13<00:23, 81.63it/s, cycle_loss=0.0000, epoch=1116/3000, vae_loss=329.2057]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1116/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1116/3000, vae_loss=329.2057]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1116/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1117/3000, vae_loss=334.1929]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1117/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1118/3000, vae_loss=328.7825]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1118/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1119/3000, vae_loss=335.6070]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1119/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1120/3000, vae_loss=326.1842]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1120/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1121/3000, vae_loss=338.8723]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1121/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1122/3000, vae_loss=332.2611]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1122/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1123/3000, vae_loss=334.6100]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1123/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1124/3000, vae_loss=333.3250]
Training: VAE decoder with masked batch labels:  37%|███▋      | 1124/3000 [00:13<00:22, 82.12it/s, cycle_loss=0.0000, epoch=1125/3000, vae_loss=333.2120]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1125/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1125/3000, vae_loss=333.2120]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1125/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1126/3000, vae_loss=331.4696]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1126/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1127/3000, vae_loss=334.2607]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1127/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1128/3000, vae_loss=329.1883]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1128/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1129/3000, vae_loss=331.9759]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1129/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1130/3000, vae_loss=334.6547]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1130/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1131/3000, vae_loss=341.0843]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1131/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1132/3000, vae_loss=339.8612]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1132/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1133/3000, vae_loss=338.6158]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1133/3000 [00:13<00:22, 82.55it/s, cycle_loss=0.0000, epoch=1134/3000, vae_loss=328.2315]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1134/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1134/3000, vae_loss=328.2315]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1134/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1135/3000, vae_loss=344.2532]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1135/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1136/3000, vae_loss=332.7919]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1136/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1137/3000, vae_loss=338.6203]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1137/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1138/3000, vae_loss=341.7657]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1138/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1139/3000, vae_loss=342.5023]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1139/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1140/3000, vae_loss=338.1137]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1140/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1141/3000, vae_loss=339.5775]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1141/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1142/3000, vae_loss=334.7142]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1142/3000 [00:13<00:22, 82.35it/s, cycle_loss=0.0000, epoch=1143/3000, vae_loss=340.0608]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1143/3000 [00:13<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1143/3000, vae_loss=340.0608]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1143/3000 [00:13<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1144/3000, vae_loss=338.1439]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1144/3000 [00:13<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1145/3000, vae_loss=334.1566]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1145/3000 [00:13<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1146/3000, vae_loss=348.7165]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1146/3000 [00:13<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1147/3000, vae_loss=340.3661]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1147/3000 [00:14<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1148/3000, vae_loss=343.2837]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1148/3000 [00:14<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1149/3000, vae_loss=341.3075]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1149/3000 [00:14<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1150/3000, vae_loss=327.4963]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1150/3000 [00:14<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1151/3000, vae_loss=337.7263]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1151/3000 [00:14<00:22, 82.32it/s, cycle_loss=0.0000, epoch=1152/3000, vae_loss=337.4406]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1152/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1152/3000, vae_loss=337.4406]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1152/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1153/3000, vae_loss=356.8196]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1153/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1154/3000, vae_loss=338.2171]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1154/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1155/3000, vae_loss=352.5752]
Training: VAE decoder with masked batch labels:  38%|███▊      | 1155/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1156/3000, vae_loss=336.7694]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1156/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1157/3000, vae_loss=339.0950]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1157/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1158/3000, vae_loss=342.4189]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1158/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1159/3000, vae_loss=334.6996]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1159/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1160/3000, vae_loss=348.8320]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1160/3000 [00:14<00:22, 82.39it/s, cycle_loss=0.0000, epoch=1161/3000, vae_loss=331.8102]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1161/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1161/3000, vae_loss=331.8102]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1161/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1162/3000, vae_loss=345.7418]
Training: VAE decoder with masked batch labels:  39%|███▊      | 1162/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1163/3000, vae_loss=349.1037]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1163/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1164/3000, vae_loss=343.5912]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1164/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1165/3000, vae_loss=340.3361]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1165/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1166/3000, vae_loss=342.8970]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1166/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1167/3000, vae_loss=347.1288]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1167/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1168/3000, vae_loss=346.4236]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1168/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1169/3000, vae_loss=346.1743]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1169/3000 [00:14<00:22, 82.11it/s, cycle_loss=0.0000, epoch=1170/3000, vae_loss=349.7983]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1170/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1170/3000, vae_loss=349.7983]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1170/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1171/3000, vae_loss=344.7921]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1171/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1172/3000, vae_loss=339.0203]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1172/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1173/3000, vae_loss=342.3738]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1173/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1174/3000, vae_loss=341.3207]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1174/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1175/3000, vae_loss=349.3824]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1175/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1176/3000, vae_loss=354.8856]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1176/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1177/3000, vae_loss=354.7234]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1177/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1178/3000, vae_loss=344.4243]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1178/3000 [00:14<00:22, 81.38it/s, cycle_loss=0.0000, epoch=1179/3000, vae_loss=349.6861]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1179/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1179/3000, vae_loss=349.6861]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1179/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1180/3000, vae_loss=356.5542]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1180/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1181/3000, vae_loss=341.1474]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1181/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1182/3000, vae_loss=343.7053]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1182/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1183/3000, vae_loss=346.0022]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1183/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1184/3000, vae_loss=344.8288]
Training: VAE decoder with masked batch labels:  39%|███▉      | 1184/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1185/3000, vae_loss=350.1851]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1185/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1186/3000, vae_loss=350.5543]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1186/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1187/3000, vae_loss=347.5977]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1187/3000 [00:14<00:22, 80.51it/s, cycle_loss=0.0000, epoch=1188/3000, vae_loss=345.6026]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1188/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1188/3000, vae_loss=345.6026]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1188/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1189/3000, vae_loss=356.2999]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1189/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1190/3000, vae_loss=350.7783]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1190/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1191/3000, vae_loss=342.6403]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1191/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1192/3000, vae_loss=356.0241]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1192/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1193/3000, vae_loss=354.1088]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1193/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1194/3000, vae_loss=346.7932]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1194/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1195/3000, vae_loss=352.4936]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1195/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1196/3000, vae_loss=352.6882]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1196/3000 [00:14<00:22, 81.18it/s, cycle_loss=0.0000, epoch=1197/3000, vae_loss=345.3519]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1197/3000 [00:14<00:22, 81.85it/s, cycle_loss=0.0000, epoch=1197/3000, vae_loss=345.3519]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1197/3000 [00:14<00:22, 81.85it/s, cycle_loss=0.0000, epoch=1198/3000, vae_loss=356.0342]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1198/3000 [00:14<00:22, 81.85it/s, cycle_loss=0.0000, epoch=1199/3000, vae_loss=343.1399]
Training: VAE decoder with masked batch labels:  40%|███▉      | 1199/3000 [00:14<00:22, 81.85it/s, cycle_loss=0.0000, epoch=1200/3000, vae_loss=355.2804]
Training: VAE decoder with masked batch labels:  40%|████      | 1200/3000 [00:14<00:21, 81.85it/s, cycle_loss=0.0000, epoch=1201/3000, vae_loss=354.9477]
Training: VAE decoder with masked batch labels:  40%|████      | 1201/3000 [00:14<00:21, 81.85it/s, cycle_loss=0.0000, epoch=1202/3000, vae_loss=352.9048]
Training: VAE decoder with masked batch labels:  40%|████      | 1202/3000 [00:14<00:21, 81.85it/s, cycle_loss=0.0000, epoch=1203/3000, vae_loss=343.1601]
Training: VAE decoder with masked batch labels:  40%|████      | 1203/3000 [00:14<00:21, 81.85it/s, cycle_loss=0.0000, epoch=1204/3000, vae_loss=355.7957]
Training: VAE decoder with masked batch labels:  40%|████      | 1204/3000 [00:14<00:21, 81.85it/s, cycle_loss=0.0000, epoch=1205/3000, vae_loss=353.5757]
Training: VAE decoder with masked batch labels:  40%|████      | 1205/3000 [00:14<00:21, 81.85it/s, cycle_loss=0.0000, epoch=1206/3000, vae_loss=358.0798]
Training: VAE decoder with masked batch labels:  40%|████      | 1206/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1206/3000, vae_loss=358.0798]
Training: VAE decoder with masked batch labels:  40%|████      | 1206/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1207/3000, vae_loss=361.0546]
Training: VAE decoder with masked batch labels:  40%|████      | 1207/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1208/3000, vae_loss=368.4743]
Training: VAE decoder with masked batch labels:  40%|████      | 1208/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1209/3000, vae_loss=359.3897]
Training: VAE decoder with masked batch labels:  40%|████      | 1209/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1210/3000, vae_loss=367.3258]
Training: VAE decoder with masked batch labels:  40%|████      | 1210/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1211/3000, vae_loss=358.0231]
Training: VAE decoder with masked batch labels:  40%|████      | 1211/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1212/3000, vae_loss=363.8957]
Training: VAE decoder with masked batch labels:  40%|████      | 1212/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1213/3000, vae_loss=353.5316]
Training: VAE decoder with masked batch labels:  40%|████      | 1213/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1214/3000, vae_loss=356.1417]
Training: VAE decoder with masked batch labels:  40%|████      | 1214/3000 [00:14<00:21, 82.39it/s, cycle_loss=0.0000, epoch=1215/3000, vae_loss=352.1318]
Training: VAE decoder with masked batch labels:  40%|████      | 1215/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1215/3000, vae_loss=352.1318]
Training: VAE decoder with masked batch labels:  40%|████      | 1215/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1216/3000, vae_loss=346.2966]
Training: VAE decoder with masked batch labels:  41%|████      | 1216/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1217/3000, vae_loss=360.9321]
Training: VAE decoder with masked batch labels:  41%|████      | 1217/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1218/3000, vae_loss=356.7532]
Training: VAE decoder with masked batch labels:  41%|████      | 1218/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1219/3000, vae_loss=362.3181]
Training: VAE decoder with masked batch labels:  41%|████      | 1219/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1220/3000, vae_loss=356.2425]
Training: VAE decoder with masked batch labels:  41%|████      | 1220/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1221/3000, vae_loss=354.3364]
Training: VAE decoder with masked batch labels:  41%|████      | 1221/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1222/3000, vae_loss=355.0544]
Training: VAE decoder with masked batch labels:  41%|████      | 1222/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1223/3000, vae_loss=359.4693]
Training: VAE decoder with masked batch labels:  41%|████      | 1223/3000 [00:14<00:21, 81.30it/s, cycle_loss=0.0000, epoch=1224/3000, vae_loss=369.8448]
Training: VAE decoder with masked batch labels:  41%|████      | 1224/3000 [00:14<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1224/3000, vae_loss=369.8448]
Training: VAE decoder with masked batch labels:  41%|████      | 1224/3000 [00:14<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1225/3000, vae_loss=354.9616]
Training: VAE decoder with masked batch labels:  41%|████      | 1225/3000 [00:14<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1226/3000, vae_loss=354.4207]
Training: VAE decoder with masked batch labels:  41%|████      | 1226/3000 [00:14<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1227/3000, vae_loss=356.7468]
Training: VAE decoder with masked batch labels:  41%|████      | 1227/3000 [00:14<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1228/3000, vae_loss=361.6686]
Training: VAE decoder with masked batch labels:  41%|████      | 1228/3000 [00:15<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1229/3000, vae_loss=366.8885]
Training: VAE decoder with masked batch labels:  41%|████      | 1229/3000 [00:15<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1230/3000, vae_loss=360.3574]
Training: VAE decoder with masked batch labels:  41%|████      | 1230/3000 [00:15<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1231/3000, vae_loss=362.9005]
Training: VAE decoder with masked batch labels:  41%|████      | 1231/3000 [00:15<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1232/3000, vae_loss=354.9830]
Training: VAE decoder with masked batch labels:  41%|████      | 1232/3000 [00:15<00:21, 81.53it/s, cycle_loss=0.0000, epoch=1233/3000, vae_loss=368.4467]
Training: VAE decoder with masked batch labels:  41%|████      | 1233/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1233/3000, vae_loss=368.4467]
Training: VAE decoder with masked batch labels:  41%|████      | 1233/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1234/3000, vae_loss=354.5378]
Training: VAE decoder with masked batch labels:  41%|████      | 1234/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1235/3000, vae_loss=353.3310]
Training: VAE decoder with masked batch labels:  41%|████      | 1235/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1236/3000, vae_loss=369.6369]
Training: VAE decoder with masked batch labels:  41%|████      | 1236/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1237/3000, vae_loss=364.0726]
Training: VAE decoder with masked batch labels:  41%|████      | 1237/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1238/3000, vae_loss=352.3586]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1238/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1239/3000, vae_loss=355.6811]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1239/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1240/3000, vae_loss=365.2717]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1240/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1241/3000, vae_loss=372.4558]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1241/3000 [00:15<00:21, 81.71it/s, cycle_loss=0.0000, epoch=1242/3000, vae_loss=360.1266]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1242/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1242/3000, vae_loss=360.1266]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1242/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1243/3000, vae_loss=365.0341]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1243/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1244/3000, vae_loss=372.0269]
Training: VAE decoder with masked batch labels:  41%|████▏     | 1244/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1245/3000, vae_loss=372.3361]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1245/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1246/3000, vae_loss=366.4619]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1246/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1247/3000, vae_loss=365.0092]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1247/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1248/3000, vae_loss=373.1430]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1248/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1249/3000, vae_loss=360.8523]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1249/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1250/3000, vae_loss=368.7192]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1250/3000 [00:15<00:21, 82.11it/s, cycle_loss=0.0000, epoch=1251/3000, vae_loss=361.4543]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1251/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1251/3000, vae_loss=361.4543]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1251/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1252/3000, vae_loss=361.0323]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1252/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1253/3000, vae_loss=368.3552]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1253/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1254/3000, vae_loss=370.3853]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1254/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1255/3000, vae_loss=370.2632]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1255/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1256/3000, vae_loss=374.4357]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1256/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1257/3000, vae_loss=369.0437]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1257/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1258/3000, vae_loss=381.8799]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1258/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1259/3000, vae_loss=365.2753]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1259/3000 [00:15<00:21, 82.42it/s, cycle_loss=0.0000, epoch=1260/3000, vae_loss=373.6286]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1260/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1260/3000, vae_loss=373.6286]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1260/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1261/3000, vae_loss=368.5215]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1261/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1262/3000, vae_loss=374.5847]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1262/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1263/3000, vae_loss=373.6252]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1263/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1264/3000, vae_loss=385.1710]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1264/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1265/3000, vae_loss=369.0544]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1265/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1266/3000, vae_loss=367.6004]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1266/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1267/3000, vae_loss=372.5803]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1267/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1268/3000, vae_loss=381.4010]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1268/3000 [00:15<00:21, 82.29it/s, cycle_loss=0.0000, epoch=1269/3000, vae_loss=375.0286]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1269/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1269/3000, vae_loss=375.0286]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1269/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1270/3000, vae_loss=372.8264]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1270/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1271/3000, vae_loss=374.6878]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1271/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1272/3000, vae_loss=375.5544]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1272/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1273/3000, vae_loss=374.8627]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1273/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1274/3000, vae_loss=368.5865]
Training: VAE decoder with masked batch labels:  42%|████▏     | 1274/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1275/3000, vae_loss=373.3048]
Training: VAE decoder with masked batch labels:  42%|████▎     | 1275/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1276/3000, vae_loss=381.0347]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1276/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1277/3000, vae_loss=368.6291]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1277/3000 [00:15<00:21, 81.80it/s, cycle_loss=0.0000, epoch=1278/3000, vae_loss=380.6306]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1278/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1278/3000, vae_loss=380.6306]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1278/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1279/3000, vae_loss=370.2556]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1279/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1280/3000, vae_loss=379.8863]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1280/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1281/3000, vae_loss=374.5708]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1281/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1282/3000, vae_loss=374.3888]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1282/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1283/3000, vae_loss=380.0289]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1283/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1284/3000, vae_loss=379.8795]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1284/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1285/3000, vae_loss=379.5623]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1285/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1286/3000, vae_loss=377.0690]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1286/3000 [00:15<00:20, 82.34it/s, cycle_loss=0.0000, epoch=1287/3000, vae_loss=385.3334]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1287/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1287/3000, vae_loss=385.3334]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1287/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1288/3000, vae_loss=371.0782]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1288/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1289/3000, vae_loss=385.2133]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1289/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1290/3000, vae_loss=376.1248]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1290/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1291/3000, vae_loss=392.3851]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1291/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1292/3000, vae_loss=378.1258]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1292/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1293/3000, vae_loss=381.2354]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1293/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1294/3000, vae_loss=381.2532]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1294/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1295/3000, vae_loss=378.7961]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1295/3000 [00:15<00:20, 82.57it/s, cycle_loss=0.0000, epoch=1296/3000, vae_loss=371.3385]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1296/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1296/3000, vae_loss=371.3385]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1296/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1297/3000, vae_loss=382.6043]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1297/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1298/3000, vae_loss=385.4014]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1298/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1299/3000, vae_loss=378.5367]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1299/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1300/3000, vae_loss=386.3914]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1300/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1301/3000, vae_loss=389.8117]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1301/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1302/3000, vae_loss=382.4036]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1302/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1303/3000, vae_loss=395.0577]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1303/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1304/3000, vae_loss=395.9881]
Training: VAE decoder with masked batch labels:  43%|████▎     | 1304/3000 [00:15<00:20, 82.27it/s, cycle_loss=0.0000, epoch=1305/3000, vae_loss=382.4271]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1305/3000 [00:15<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1305/3000, vae_loss=382.4271]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1305/3000 [00:15<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1306/3000, vae_loss=386.2410]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1306/3000 [00:15<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1307/3000, vae_loss=383.4747]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1307/3000 [00:15<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1308/3000, vae_loss=384.7786]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1308/3000 [00:15<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1309/3000, vae_loss=376.2190]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1309/3000 [00:15<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1310/3000, vae_loss=391.5682]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1310/3000 [00:16<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1311/3000, vae_loss=372.1428]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1311/3000 [00:16<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1312/3000, vae_loss=384.5030]
Training: VAE decoder with masked batch labels:  44%|████▎     | 1312/3000 [00:16<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1313/3000, vae_loss=378.7534]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1313/3000 [00:16<00:20, 81.27it/s, cycle_loss=0.0000, epoch=1314/3000, vae_loss=388.1140]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1314/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1314/3000, vae_loss=388.1140]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1314/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1315/3000, vae_loss=381.9322]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1315/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1316/3000, vae_loss=381.0138]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1316/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1317/3000, vae_loss=381.5319]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1317/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1318/3000, vae_loss=376.6902]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1318/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1319/3000, vae_loss=383.7209]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1319/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1320/3000, vae_loss=390.9983]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1320/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1321/3000, vae_loss=375.8799]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1321/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1322/3000, vae_loss=381.5551]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1322/3000 [00:16<00:20, 81.34it/s, cycle_loss=0.0000, epoch=1323/3000, vae_loss=381.8083]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1323/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1323/3000, vae_loss=381.8083]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1323/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1324/3000, vae_loss=390.2197]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1324/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1325/3000, vae_loss=393.2272]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1325/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1326/3000, vae_loss=387.7774]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1326/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1327/3000, vae_loss=384.2943]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1327/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1328/3000, vae_loss=382.4865]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1328/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1329/3000, vae_loss=388.1133]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1329/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1330/3000, vae_loss=401.8618]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1330/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1331/3000, vae_loss=385.2911]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1331/3000 [00:16<00:20, 81.55it/s, cycle_loss=0.0000, epoch=1332/3000, vae_loss=402.4965]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1332/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1332/3000, vae_loss=402.4965]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1332/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1333/3000, vae_loss=380.1288]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1333/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1334/3000, vae_loss=383.5602]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1334/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1335/3000, vae_loss=390.7034]
Training: VAE decoder with masked batch labels:  44%|████▍     | 1335/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1336/3000, vae_loss=390.8543]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1336/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1337/3000, vae_loss=391.0199]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1337/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1338/3000, vae_loss=410.1222]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1338/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1339/3000, vae_loss=388.4303]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1339/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1340/3000, vae_loss=390.1999]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1340/3000 [00:16<00:20, 81.79it/s, cycle_loss=0.0000, epoch=1341/3000, vae_loss=397.2126]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1341/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1341/3000, vae_loss=397.2126]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1341/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1342/3000, vae_loss=393.0989]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1342/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1343/3000, vae_loss=391.3099]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1343/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1344/3000, vae_loss=399.6230]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1344/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1345/3000, vae_loss=390.1714]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1345/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1346/3000, vae_loss=401.5487]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1346/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1347/3000, vae_loss=401.3852]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1347/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1348/3000, vae_loss=399.1757]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1348/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1349/3000, vae_loss=390.1262]
Training: VAE decoder with masked batch labels:  45%|████▍     | 1349/3000 [00:16<00:20, 81.46it/s, cycle_loss=0.0000, epoch=1350/3000, vae_loss=393.7449]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1350/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1350/3000, vae_loss=393.7449]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1350/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1351/3000, vae_loss=404.3741]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1351/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1352/3000, vae_loss=388.9084]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1352/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1353/3000, vae_loss=394.9249]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1353/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1354/3000, vae_loss=396.0640]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1354/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1355/3000, vae_loss=402.7839]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1355/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1356/3000, vae_loss=389.8516]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1356/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1357/3000, vae_loss=399.1114]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1357/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1358/3000, vae_loss=393.4460]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1358/3000 [00:16<00:20, 81.47it/s, cycle_loss=0.0000, epoch=1359/3000, vae_loss=412.0955]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1359/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1359/3000, vae_loss=412.0955]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1359/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1360/3000, vae_loss=405.8638]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1360/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1361/3000, vae_loss=404.3830]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1361/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1362/3000, vae_loss=399.3586]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1362/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1363/3000, vae_loss=397.0842]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1363/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1364/3000, vae_loss=411.1813]
Training: VAE decoder with masked batch labels:  45%|████▌     | 1364/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1365/3000, vae_loss=399.3322]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1365/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1366/3000, vae_loss=403.3743]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1366/3000 [00:16<00:20, 81.68it/s, cycle_loss=0.0000, epoch=1367/3000, vae_loss=411.1364]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1367/3000 [00:16<00:19, 81.68it/s, cycle_loss=0.0000, epoch=1368/3000, vae_loss=409.9563]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1368/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1368/3000, vae_loss=409.9563]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1368/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1369/3000, vae_loss=403.0598]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1369/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1370/3000, vae_loss=409.5515]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1370/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1371/3000, vae_loss=411.5879]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1371/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1372/3000, vae_loss=418.6180]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1372/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1373/3000, vae_loss=399.9766]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1373/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1374/3000, vae_loss=405.8472]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1374/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1375/3000, vae_loss=418.6026]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1375/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1376/3000, vae_loss=398.9112]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1376/3000 [00:16<00:19, 82.23it/s, cycle_loss=0.0000, epoch=1377/3000, vae_loss=406.4987]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1377/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1377/3000, vae_loss=406.4987]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1377/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1378/3000, vae_loss=410.5566]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1378/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1379/3000, vae_loss=414.8129]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1379/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1380/3000, vae_loss=399.6741]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1380/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1381/3000, vae_loss=408.1196]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1381/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1382/3000, vae_loss=406.7782]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1382/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1383/3000, vae_loss=411.1757]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1383/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1384/3000, vae_loss=425.4614]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1384/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1385/3000, vae_loss=412.7319]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1385/3000 [00:16<00:19, 82.18it/s, cycle_loss=0.0000, epoch=1386/3000, vae_loss=413.1003]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1386/3000 [00:16<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1386/3000, vae_loss=413.1003]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1386/3000 [00:16<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1387/3000, vae_loss=406.9708]
Training: VAE decoder with masked batch labels:  46%|████▌     | 1387/3000 [00:16<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1388/3000, vae_loss=405.7361]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1388/3000 [00:16<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1389/3000, vae_loss=419.3258]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1389/3000 [00:16<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1390/3000, vae_loss=421.6413]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1390/3000 [00:16<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1391/3000, vae_loss=414.9238]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1391/3000 [00:16<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1392/3000, vae_loss=398.3051]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1392/3000 [00:17<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1393/3000, vae_loss=405.9764]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1393/3000 [00:17<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1394/3000, vae_loss=411.5103]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1394/3000 [00:17<00:19, 81.87it/s, cycle_loss=0.0000, epoch=1395/3000, vae_loss=418.0354]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1395/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1395/3000, vae_loss=418.0354]
Training: VAE decoder with masked batch labels:  46%|████▋     | 1395/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1396/3000, vae_loss=405.5999]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1396/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1397/3000, vae_loss=392.3451]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1397/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1398/3000, vae_loss=423.7577]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1398/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1399/3000, vae_loss=414.0540]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1399/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1400/3000, vae_loss=409.8425]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1400/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1401/3000, vae_loss=422.6974]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1401/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1402/3000, vae_loss=408.5126]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1402/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1403/3000, vae_loss=411.6947]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1403/3000 [00:17<00:19, 81.76it/s, cycle_loss=0.0000, epoch=1404/3000, vae_loss=404.1545]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1404/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1404/3000, vae_loss=404.1545]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1404/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1405/3000, vae_loss=417.1030]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1405/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1406/3000, vae_loss=424.6844]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1406/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1407/3000, vae_loss=411.5868]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1407/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1408/3000, vae_loss=418.4363]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1408/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1409/3000, vae_loss=417.8386]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1409/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1410/3000, vae_loss=419.3532]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1410/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1411/3000, vae_loss=420.1155]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1411/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1412/3000, vae_loss=426.2789]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1412/3000 [00:17<00:19, 81.99it/s, cycle_loss=0.0000, epoch=1413/3000, vae_loss=419.8683]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1413/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1413/3000, vae_loss=419.8683]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1413/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1414/3000, vae_loss=409.3052]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1414/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1415/3000, vae_loss=417.5550]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1415/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1416/3000, vae_loss=411.8868]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1416/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1417/3000, vae_loss=418.8035]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1417/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1418/3000, vae_loss=417.4251]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1418/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1419/3000, vae_loss=423.8419]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1419/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1420/3000, vae_loss=422.3768]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1420/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1421/3000, vae_loss=419.4639]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1421/3000 [00:17<00:19, 81.89it/s, cycle_loss=0.0000, epoch=1422/3000, vae_loss=434.0092]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1422/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1422/3000, vae_loss=434.0092]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1422/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1423/3000, vae_loss=430.5869]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1423/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1424/3000, vae_loss=426.8402]
Training: VAE decoder with masked batch labels:  47%|████▋     | 1424/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1425/3000, vae_loss=420.2876]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1425/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1426/3000, vae_loss=427.5612]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1426/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1427/3000, vae_loss=418.9172]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1427/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1428/3000, vae_loss=419.3933]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1428/3000 [00:17<00:19, 82.69it/s, cycle_loss=0.0000, epoch=1429/3000, vae_loss=417.5752]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1429/3000 [00:17<00:18, 82.69it/s, cycle_loss=0.0000, epoch=1430/3000, vae_loss=436.8056]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1430/3000 [00:17<00:18, 82.69it/s, cycle_loss=0.0000, epoch=1431/3000, vae_loss=426.0250]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1431/3000 [00:17<00:19, 82.55it/s, cycle_loss=0.0000, epoch=1431/3000, vae_loss=426.0250]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1431/3000 [00:17<00:19, 82.55it/s, cycle_loss=0.0000, epoch=1432/3000, vae_loss=427.6149]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1432/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1433/3000, vae_loss=411.5410]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1433/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1434/3000, vae_loss=420.2307]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1434/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1435/3000, vae_loss=414.2455]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1435/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1436/3000, vae_loss=427.0025]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1436/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1437/3000, vae_loss=433.3276]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1437/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1438/3000, vae_loss=434.7167]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1438/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1439/3000, vae_loss=435.6203]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1439/3000 [00:17<00:18, 82.55it/s, cycle_loss=0.0000, epoch=1440/3000, vae_loss=429.9649]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1440/3000 [00:17<00:19, 82.11it/s, cycle_loss=0.0000, epoch=1440/3000, vae_loss=429.9649]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1440/3000 [00:17<00:19, 82.11it/s, cycle_loss=0.0000, epoch=1441/3000, vae_loss=428.7426]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1441/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1442/3000, vae_loss=433.9430]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1442/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1443/3000, vae_loss=425.6284]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1443/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1444/3000, vae_loss=436.3914]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1444/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1445/3000, vae_loss=429.7246]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1445/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1446/3000, vae_loss=431.1043]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1446/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1447/3000, vae_loss=431.3959]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1447/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1448/3000, vae_loss=431.8072]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1448/3000 [00:17<00:18, 82.11it/s, cycle_loss=0.0000, epoch=1449/3000, vae_loss=427.4527]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1449/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1449/3000, vae_loss=427.4527]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1449/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1450/3000, vae_loss=421.8964]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1450/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1451/3000, vae_loss=417.6459]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1451/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1452/3000, vae_loss=439.0704]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1452/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1453/3000, vae_loss=442.5511]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1453/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1454/3000, vae_loss=430.6828]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1454/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1455/3000, vae_loss=427.9276]
Training: VAE decoder with masked batch labels:  48%|████▊     | 1455/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1456/3000, vae_loss=439.3770]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1456/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1457/3000, vae_loss=433.9882]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1457/3000 [00:17<00:18, 83.45it/s, cycle_loss=0.0000, epoch=1458/3000, vae_loss=435.9854]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1458/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1458/3000, vae_loss=435.9854]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1458/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1459/3000, vae_loss=424.6660]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1459/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1460/3000, vae_loss=434.6895]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1460/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1461/3000, vae_loss=436.6931]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1461/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1462/3000, vae_loss=444.2423]
Training: VAE decoder with masked batch labels:  49%|████▊     | 1462/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1463/3000, vae_loss=440.3221]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1463/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1464/3000, vae_loss=446.1554]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1464/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1465/3000, vae_loss=447.9765]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1465/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1466/3000, vae_loss=432.2652]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1466/3000 [00:17<00:18, 83.23it/s, cycle_loss=0.0000, epoch=1467/3000, vae_loss=456.7357]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1467/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1467/3000, vae_loss=456.7357]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1467/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1468/3000, vae_loss=435.5255]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1468/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1469/3000, vae_loss=426.0466]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1469/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1470/3000, vae_loss=439.7371]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1470/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1471/3000, vae_loss=444.7399]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1471/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1472/3000, vae_loss=436.4451]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1472/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1473/3000, vae_loss=449.3915]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1473/3000 [00:17<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1474/3000, vae_loss=457.9073]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1474/3000 [00:18<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1475/3000, vae_loss=436.1455]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1475/3000 [00:18<00:18, 81.71it/s, cycle_loss=0.0000, epoch=1476/3000, vae_loss=443.2797]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1476/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1476/3000, vae_loss=443.2797]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1476/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1477/3000, vae_loss=438.0905]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1477/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1478/3000, vae_loss=461.5616]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1478/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1479/3000, vae_loss=439.6459]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1479/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1480/3000, vae_loss=433.8817]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1480/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1481/3000, vae_loss=447.1520]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1481/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1482/3000, vae_loss=434.7717]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1482/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1483/3000, vae_loss=458.6259]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1483/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1484/3000, vae_loss=439.0940]
Training: VAE decoder with masked batch labels:  49%|████▉     | 1484/3000 [00:18<00:18, 82.17it/s, cycle_loss=0.0000, epoch=1485/3000, vae_loss=445.2214]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1485/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1485/3000, vae_loss=445.2214]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1485/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1486/3000, vae_loss=451.7750]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1486/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1487/3000, vae_loss=448.2455]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1487/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1488/3000, vae_loss=453.5169]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1488/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1489/3000, vae_loss=445.7400]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1489/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1490/3000, vae_loss=455.9195]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1490/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1491/3000, vae_loss=443.9157]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1491/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1492/3000, vae_loss=450.2163]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1492/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1493/3000, vae_loss=445.2933]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1493/3000 [00:18<00:18, 81.31it/s, cycle_loss=0.0000, epoch=1494/3000, vae_loss=446.0850]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1494/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1494/3000, vae_loss=446.0850]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1494/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1495/3000, vae_loss=451.2447]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1495/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1496/3000, vae_loss=454.5181]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1496/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1497/3000, vae_loss=444.9726]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1497/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1498/3000, vae_loss=444.7670]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1498/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1499/3000, vae_loss=457.7203]
Training: VAE decoder with masked batch labels:  50%|████▉     | 1499/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1500/3000, vae_loss=447.9698]
Training: VAE decoder with masked batch labels:  50%|█████     | 1500/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1501/3000, vae_loss=456.7332]
Training: VAE decoder with masked batch labels:  50%|█████     | 1501/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1502/3000, vae_loss=450.8254]
Training: VAE decoder with masked batch labels:  50%|█████     | 1502/3000 [00:18<00:18, 81.21it/s, cycle_loss=0.0000, epoch=1503/3000, vae_loss=452.2704]
Training: VAE decoder with masked batch labels:  50%|█████     | 1503/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1503/3000, vae_loss=452.2704]
Training: VAE decoder with masked batch labels:  50%|█████     | 1503/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1504/3000, vae_loss=441.6390]
Training: VAE decoder with masked batch labels:  50%|█████     | 1504/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1505/3000, vae_loss=433.6609]
Training: VAE decoder with masked batch labels:  50%|█████     | 1505/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1506/3000, vae_loss=459.6820]
Training: VAE decoder with masked batch labels:  50%|█████     | 1506/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1507/3000, vae_loss=455.2080]
Training: VAE decoder with masked batch labels:  50%|█████     | 1507/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1508/3000, vae_loss=449.8064]
Training: VAE decoder with masked batch labels:  50%|█████     | 1508/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1509/3000, vae_loss=449.6922]
Training: VAE decoder with masked batch labels:  50%|█████     | 1509/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1510/3000, vae_loss=439.0418]
Training: VAE decoder with masked batch labels:  50%|█████     | 1510/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1511/3000, vae_loss=447.3188]
Training: VAE decoder with masked batch labels:  50%|█████     | 1511/3000 [00:18<00:18, 82.48it/s, cycle_loss=0.0000, epoch=1512/3000, vae_loss=439.1930]
Training: VAE decoder with masked batch labels:  50%|█████     | 1512/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1512/3000, vae_loss=439.1930]
Training: VAE decoder with masked batch labels:  50%|█████     | 1512/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1513/3000, vae_loss=453.0350]
Training: VAE decoder with masked batch labels:  50%|█████     | 1513/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1514/3000, vae_loss=446.3795]
Training: VAE decoder with masked batch labels:  50%|█████     | 1514/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1515/3000, vae_loss=448.3840]
Training: VAE decoder with masked batch labels:  50%|█████     | 1515/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1516/3000, vae_loss=447.8118]
Training: VAE decoder with masked batch labels:  51%|█████     | 1516/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1517/3000, vae_loss=443.9136]
Training: VAE decoder with masked batch labels:  51%|█████     | 1517/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1518/3000, vae_loss=456.5815]
Training: VAE decoder with masked batch labels:  51%|█████     | 1518/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1519/3000, vae_loss=447.6389]
Training: VAE decoder with masked batch labels:  51%|█████     | 1519/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1520/3000, vae_loss=444.5376]
Training: VAE decoder with masked batch labels:  51%|█████     | 1520/3000 [00:18<00:18, 82.06it/s, cycle_loss=0.0000, epoch=1521/3000, vae_loss=450.1875]
Training: VAE decoder with masked batch labels:  51%|█████     | 1521/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1521/3000, vae_loss=450.1875]
Training: VAE decoder with masked batch labels:  51%|█████     | 1521/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1522/3000, vae_loss=459.0677]
Training: VAE decoder with masked batch labels:  51%|█████     | 1522/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1523/3000, vae_loss=442.6315]
Training: VAE decoder with masked batch labels:  51%|█████     | 1523/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1524/3000, vae_loss=446.7546]
Training: VAE decoder with masked batch labels:  51%|█████     | 1524/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1525/3000, vae_loss=440.9045]
Training: VAE decoder with masked batch labels:  51%|█████     | 1525/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1526/3000, vae_loss=449.4170]
Training: VAE decoder with masked batch labels:  51%|█████     | 1526/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1527/3000, vae_loss=445.9947]
Training: VAE decoder with masked batch labels:  51%|█████     | 1527/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1528/3000, vae_loss=437.0626]
Training: VAE decoder with masked batch labels:  51%|█████     | 1528/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1529/3000, vae_loss=438.9340]
Training: VAE decoder with masked batch labels:  51%|█████     | 1529/3000 [00:18<00:17, 83.28it/s, cycle_loss=0.0000, epoch=1530/3000, vae_loss=452.2349]
Training: VAE decoder with masked batch labels:  51%|█████     | 1530/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1530/3000, vae_loss=452.2349]
Training: VAE decoder with masked batch labels:  51%|█████     | 1530/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1531/3000, vae_loss=440.9564]
Training: VAE decoder with masked batch labels:  51%|█████     | 1531/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1532/3000, vae_loss=441.9022]
Training: VAE decoder with masked batch labels:  51%|█████     | 1532/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1533/3000, vae_loss=444.2375]
Training: VAE decoder with masked batch labels:  51%|█████     | 1533/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1534/3000, vae_loss=449.4395]
Training: VAE decoder with masked batch labels:  51%|█████     | 1534/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1535/3000, vae_loss=444.0155]
Training: VAE decoder with masked batch labels:  51%|█████     | 1535/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1536/3000, vae_loss=452.3226]
Training: VAE decoder with masked batch labels:  51%|█████     | 1536/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1537/3000, vae_loss=435.2961]
Training: VAE decoder with masked batch labels:  51%|█████     | 1537/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1538/3000, vae_loss=438.5637]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1538/3000 [00:18<00:17, 84.26it/s, cycle_loss=0.0000, epoch=1539/3000, vae_loss=434.6642]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1539/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1539/3000, vae_loss=434.6642]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1539/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1540/3000, vae_loss=445.1347]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1540/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1541/3000, vae_loss=459.1246]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1541/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1542/3000, vae_loss=442.4389]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1542/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1543/3000, vae_loss=437.4902]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1543/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1544/3000, vae_loss=446.2351]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1544/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1545/3000, vae_loss=450.3444]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1545/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1546/3000, vae_loss=443.9937]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1546/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1547/3000, vae_loss=433.7075]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1547/3000 [00:18<00:17, 85.42it/s, cycle_loss=0.0000, epoch=1548/3000, vae_loss=437.3924]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1548/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1548/3000, vae_loss=437.3924]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1548/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1549/3000, vae_loss=429.7682]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1549/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1550/3000, vae_loss=441.6383]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1550/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1551/3000, vae_loss=452.1413]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1551/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1552/3000, vae_loss=431.7919]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1552/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1553/3000, vae_loss=442.4695]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1553/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1554/3000, vae_loss=436.9734]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1554/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1555/3000, vae_loss=447.5064]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1555/3000 [00:18<00:17, 84.97it/s, cycle_loss=0.0000, epoch=1556/3000, vae_loss=440.8469]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1556/3000 [00:18<00:16, 84.97it/s, cycle_loss=0.0000, epoch=1557/3000, vae_loss=429.3232]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1557/3000 [00:18<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1557/3000, vae_loss=429.3232]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1557/3000 [00:18<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1558/3000, vae_loss=449.3714]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1558/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1559/3000, vae_loss=429.5108]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1559/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1560/3000, vae_loss=436.5750]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1560/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1561/3000, vae_loss=448.4912]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1561/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1562/3000, vae_loss=443.3240]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1562/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1563/3000, vae_loss=444.0872]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1563/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1564/3000, vae_loss=430.3485]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1564/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1565/3000, vae_loss=436.9250]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1565/3000 [00:19<00:16, 85.31it/s, cycle_loss=0.0000, epoch=1566/3000, vae_loss=451.4145]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1566/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1566/3000, vae_loss=451.4145]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1566/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1567/3000, vae_loss=436.9505]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1567/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1568/3000, vae_loss=427.3726]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1568/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1569/3000, vae_loss=442.9594]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1569/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1570/3000, vae_loss=435.7191]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1570/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1571/3000, vae_loss=431.2276]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1571/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1572/3000, vae_loss=435.6546]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1572/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1573/3000, vae_loss=433.7492]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1573/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1574/3000, vae_loss=437.9539]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1574/3000 [00:19<00:16, 85.30it/s, cycle_loss=0.0000, epoch=1575/3000, vae_loss=442.7560]
Training: VAE decoder with masked batch labels:  52%|█████▎    | 1575/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1575/3000, vae_loss=442.7560]
Training: VAE decoder with masked batch labels:  52%|█████▎    | 1575/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1576/3000, vae_loss=423.0563]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1576/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1577/3000, vae_loss=438.6993]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1577/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1578/3000, vae_loss=431.5097]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1578/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1579/3000, vae_loss=427.6752]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1579/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1580/3000, vae_loss=442.7888]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1580/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1581/3000, vae_loss=430.8166]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1581/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1582/3000, vae_loss=437.7057]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1582/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1583/3000, vae_loss=448.3265]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1583/3000 [00:19<00:16, 85.93it/s, cycle_loss=0.0000, epoch=1584/3000, vae_loss=433.1200]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1584/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1584/3000, vae_loss=433.1200]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1584/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1585/3000, vae_loss=421.1458]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1585/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1586/3000, vae_loss=445.2199]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1586/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1587/3000, vae_loss=432.9392]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1587/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1588/3000, vae_loss=432.2032]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1588/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1589/3000, vae_loss=427.1213]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1589/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1590/3000, vae_loss=430.0168]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1590/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1591/3000, vae_loss=427.3441]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1591/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1592/3000, vae_loss=436.8745]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1592/3000 [00:19<00:16, 86.23it/s, cycle_loss=0.0000, epoch=1593/3000, vae_loss=433.5043]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1593/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1593/3000, vae_loss=433.5043]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1593/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1594/3000, vae_loss=444.5050]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1594/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1595/3000, vae_loss=438.8269]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1595/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1596/3000, vae_loss=426.4344]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1596/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1597/3000, vae_loss=434.1195]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1597/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1598/3000, vae_loss=432.6929]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1598/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1599/3000, vae_loss=430.8406]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1599/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1600/3000, vae_loss=440.4680]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1600/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1601/3000, vae_loss=420.5114]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1601/3000 [00:19<00:16, 86.49it/s, cycle_loss=0.0000, epoch=1602/3000, vae_loss=441.0632]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1602/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1602/3000, vae_loss=441.0632]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1602/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1603/3000, vae_loss=427.0247]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1603/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1604/3000, vae_loss=433.9299]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1604/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1605/3000, vae_loss=439.7821]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1605/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1606/3000, vae_loss=422.3679]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1606/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1607/3000, vae_loss=421.4249]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1607/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1608/3000, vae_loss=440.7561]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1608/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1609/3000, vae_loss=426.1992]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1609/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1610/3000, vae_loss=437.3893]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1610/3000 [00:19<00:16, 86.09it/s, cycle_loss=0.0000, epoch=1611/3000, vae_loss=422.8879]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1611/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1611/3000, vae_loss=422.8879]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1611/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1612/3000, vae_loss=440.2539]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1612/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1613/3000, vae_loss=426.7387]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1613/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1614/3000, vae_loss=440.3440]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1614/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1615/3000, vae_loss=427.1715]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1615/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1616/3000, vae_loss=440.8493]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1616/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1617/3000, vae_loss=418.7952]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1617/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1618/3000, vae_loss=442.2480]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1618/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1619/3000, vae_loss=430.7075]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1619/3000 [00:19<00:16, 86.11it/s, cycle_loss=0.0000, epoch=1620/3000, vae_loss=429.1406]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1620/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1620/3000, vae_loss=429.1406]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1620/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1621/3000, vae_loss=439.8536]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1621/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1622/3000, vae_loss=435.5107]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1622/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1623/3000, vae_loss=422.6608]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1623/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1624/3000, vae_loss=426.9460]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1624/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1625/3000, vae_loss=430.6585]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1625/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1626/3000, vae_loss=424.8088]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1626/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1627/3000, vae_loss=432.3701]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1627/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1628/3000, vae_loss=432.8817]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1628/3000 [00:19<00:16, 85.60it/s, cycle_loss=0.0000, epoch=1629/3000, vae_loss=432.9291]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1629/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1629/3000, vae_loss=432.9291]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1629/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1630/3000, vae_loss=425.6979]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1630/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1631/3000, vae_loss=437.8295]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1631/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1632/3000, vae_loss=419.1589]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1632/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1633/3000, vae_loss=436.8946]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1633/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1634/3000, vae_loss=434.2710]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1634/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1635/3000, vae_loss=424.5126]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1635/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1636/3000, vae_loss=433.1648]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1636/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1637/3000, vae_loss=427.1281]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1637/3000 [00:19<00:16, 85.18it/s, cycle_loss=0.0000, epoch=1638/3000, vae_loss=429.8624]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1638/3000 [00:19<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1638/3000, vae_loss=429.8624]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1638/3000 [00:19<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1639/3000, vae_loss=430.9252]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1639/3000 [00:19<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1640/3000, vae_loss=432.0627]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1640/3000 [00:19<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1641/3000, vae_loss=428.8449]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1641/3000 [00:19<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1642/3000, vae_loss=418.7403]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1642/3000 [00:19<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1643/3000, vae_loss=433.8459]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1643/3000 [00:19<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1644/3000, vae_loss=427.1197]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1644/3000 [00:20<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1645/3000, vae_loss=416.5468]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1645/3000 [00:20<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1646/3000, vae_loss=435.7263]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1646/3000 [00:20<00:16, 83.61it/s, cycle_loss=0.0000, epoch=1647/3000, vae_loss=428.5411]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1647/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1647/3000, vae_loss=428.5411]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1647/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1648/3000, vae_loss=431.7409]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1648/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1649/3000, vae_loss=424.7728]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1649/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1650/3000, vae_loss=431.1147]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1650/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1651/3000, vae_loss=421.9501]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1651/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1652/3000, vae_loss=425.6460]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1652/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1653/3000, vae_loss=428.9905]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1653/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1654/3000, vae_loss=434.0640]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1654/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1655/3000, vae_loss=430.1608]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1655/3000 [00:20<00:16, 84.04it/s, cycle_loss=0.0000, epoch=1656/3000, vae_loss=417.8289]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1656/3000 [00:20<00:16, 83.88it/s, cycle_loss=0.0000, epoch=1656/3000, vae_loss=417.8289]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1656/3000 [00:20<00:16, 83.88it/s, cycle_loss=0.0000, epoch=1657/3000, vae_loss=431.2368]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1657/3000 [00:20<00:16, 83.88it/s, cycle_loss=0.0000, epoch=1658/3000, vae_loss=428.3135]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1658/3000 [00:20<00:15, 83.88it/s, cycle_loss=0.0000, epoch=1659/3000, vae_loss=424.9705]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1659/3000 [00:20<00:15, 83.88it/s, cycle_loss=0.0000, epoch=1660/3000, vae_loss=439.9625]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1660/3000 [00:20<00:15, 83.88it/s, cycle_loss=0.0000, epoch=1661/3000, vae_loss=415.4232]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1661/3000 [00:20<00:15, 83.88it/s, cycle_loss=0.0000, epoch=1662/3000, vae_loss=423.4194]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1662/3000 [00:20<00:15, 83.88it/s, cycle_loss=0.0000, epoch=1663/3000, vae_loss=428.1891]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1663/3000 [00:20<00:15, 83.88it/s, cycle_loss=0.0000, epoch=1664/3000, vae_loss=420.9168]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1664/3000 [00:20<00:15, 83.88it/s, cycle_loss=0.0000, epoch=1665/3000, vae_loss=426.7635]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1665/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1665/3000, vae_loss=426.7635]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1665/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1666/3000, vae_loss=416.4973]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1666/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1667/3000, vae_loss=426.4154]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1667/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1668/3000, vae_loss=422.5167]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1668/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1669/3000, vae_loss=415.0612]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1669/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1670/3000, vae_loss=412.9158]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1670/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1671/3000, vae_loss=421.2132]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1671/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1672/3000, vae_loss=433.4039]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1672/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1673/3000, vae_loss=424.6274]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1673/3000 [00:20<00:15, 83.61it/s, cycle_loss=0.0000, epoch=1674/3000, vae_loss=421.4650]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1674/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1674/3000, vae_loss=421.4650]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1674/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1675/3000, vae_loss=419.6833]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1675/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1676/3000, vae_loss=427.0445]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1676/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1677/3000, vae_loss=433.5231]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1677/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1678/3000, vae_loss=430.3568]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1678/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1679/3000, vae_loss=426.0024]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1679/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1680/3000, vae_loss=422.6643]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1680/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1681/3000, vae_loss=424.4882]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1681/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1682/3000, vae_loss=432.3352]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1682/3000 [00:20<00:15, 84.02it/s, cycle_loss=0.0000, epoch=1683/3000, vae_loss=432.0110]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1683/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1683/3000, vae_loss=432.0110]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1683/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1684/3000, vae_loss=421.4055]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1684/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1685/3000, vae_loss=426.4543]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1685/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1686/3000, vae_loss=426.5837]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1686/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1687/3000, vae_loss=424.8558]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1687/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1688/3000, vae_loss=415.9102]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1688/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1689/3000, vae_loss=420.3399]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1689/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1690/3000, vae_loss=410.7117]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1690/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1691/3000, vae_loss=424.4699]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1691/3000 [00:20<00:15, 82.98it/s, cycle_loss=0.0000, epoch=1692/3000, vae_loss=429.4074]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1692/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1692/3000, vae_loss=429.4074]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1692/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1693/3000, vae_loss=422.0364]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1693/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1694/3000, vae_loss=426.9324]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1694/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1695/3000, vae_loss=423.0496]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1695/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1696/3000, vae_loss=416.9315]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1696/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1697/3000, vae_loss=414.3904]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1697/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1698/3000, vae_loss=412.1356]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1698/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1699/3000, vae_loss=418.6537]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1699/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1700/3000, vae_loss=418.5224]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1700/3000 [00:20<00:15, 83.75it/s, cycle_loss=0.0000, epoch=1701/3000, vae_loss=416.4788]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1701/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1701/3000, vae_loss=416.4788]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1701/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1702/3000, vae_loss=411.3779]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1702/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1703/3000, vae_loss=422.6889]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1703/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1704/3000, vae_loss=415.6128]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1704/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1705/3000, vae_loss=426.7602]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1705/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1706/3000, vae_loss=433.5933]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1706/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1707/3000, vae_loss=415.7208]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1707/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1708/3000, vae_loss=422.5193]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1708/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1709/3000, vae_loss=419.4922]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1709/3000 [00:20<00:15, 84.75it/s, cycle_loss=0.0000, epoch=1710/3000, vae_loss=424.0919]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1710/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1710/3000, vae_loss=424.0919]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1710/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1711/3000, vae_loss=418.9805]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1711/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1712/3000, vae_loss=419.0214]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1712/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1713/3000, vae_loss=419.8067]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1713/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1714/3000, vae_loss=414.8679]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1714/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1715/3000, vae_loss=419.0631]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1715/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1716/3000, vae_loss=417.6499]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1716/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1717/3000, vae_loss=424.8000]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1717/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1718/3000, vae_loss=421.7721]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1718/3000 [00:20<00:15, 84.85it/s, cycle_loss=0.0000, epoch=1719/3000, vae_loss=419.2520]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1719/3000 [00:20<00:15, 85.26it/s, cycle_loss=0.0000, epoch=1719/3000, vae_loss=419.2520]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1719/3000 [00:20<00:15, 85.26it/s, cycle_loss=0.0000, epoch=1720/3000, vae_loss=420.9106]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1720/3000 [00:20<00:15, 85.26it/s, cycle_loss=0.0000, epoch=1721/3000, vae_loss=424.7771]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1721/3000 [00:20<00:15, 85.26it/s, cycle_loss=0.0000, epoch=1722/3000, vae_loss=412.6414]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1722/3000 [00:20<00:14, 85.26it/s, cycle_loss=0.0000, epoch=1723/3000, vae_loss=409.2983]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1723/3000 [00:20<00:14, 85.26it/s, cycle_loss=0.0000, epoch=1724/3000, vae_loss=424.9614]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1724/3000 [00:20<00:14, 85.26it/s, cycle_loss=0.0000, epoch=1725/3000, vae_loss=432.5622]
Training: VAE decoder with masked batch labels:  57%|█████▊    | 1725/3000 [00:20<00:14, 85.26it/s, cycle_loss=0.0000, epoch=1726/3000, vae_loss=417.7112]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1726/3000 [00:20<00:14, 85.26it/s, cycle_loss=0.0000, epoch=1727/3000, vae_loss=415.1367]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1727/3000 [00:20<00:14, 85.26it/s, cycle_loss=0.0000, epoch=1728/3000, vae_loss=423.1473]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1728/3000 [00:20<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1728/3000, vae_loss=423.1473]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1728/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1729/3000, vae_loss=434.3684]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1729/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1730/3000, vae_loss=414.9789]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1730/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1731/3000, vae_loss=416.2268]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1731/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1732/3000, vae_loss=414.8236]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1732/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1733/3000, vae_loss=422.8096]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1733/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1734/3000, vae_loss=415.1702]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1734/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1735/3000, vae_loss=421.5584]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1735/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1736/3000, vae_loss=414.5064]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1736/3000 [00:21<00:14, 85.20it/s, cycle_loss=0.0000, epoch=1737/3000, vae_loss=420.6831]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1737/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1737/3000, vae_loss=420.6831]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1737/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1738/3000, vae_loss=417.3378]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1738/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1739/3000, vae_loss=413.0411]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1739/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1740/3000, vae_loss=406.9270]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1740/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1741/3000, vae_loss=414.9487]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1741/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1742/3000, vae_loss=420.8718]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1742/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1743/3000, vae_loss=415.8609]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1743/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1744/3000, vae_loss=430.4493]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1744/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1745/3000, vae_loss=412.6012]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1745/3000 [00:21<00:14, 84.99it/s, cycle_loss=0.0000, epoch=1746/3000, vae_loss=414.1153]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1746/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1746/3000, vae_loss=414.1153]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1746/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1747/3000, vae_loss=416.9739]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1747/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1748/3000, vae_loss=420.8075]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1748/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1749/3000, vae_loss=416.9547]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1749/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1750/3000, vae_loss=417.7698]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1750/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1751/3000, vae_loss=412.8591]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1751/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1752/3000, vae_loss=407.9807]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1752/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1753/3000, vae_loss=419.4992]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1753/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1754/3000, vae_loss=422.4689]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1754/3000 [00:21<00:14, 85.10it/s, cycle_loss=0.0000, epoch=1755/3000, vae_loss=416.5813]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1755/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1755/3000, vae_loss=416.5813]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1755/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1756/3000, vae_loss=421.8723]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1756/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1757/3000, vae_loss=416.9704]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1757/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1758/3000, vae_loss=416.6322]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1758/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1759/3000, vae_loss=410.4608]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1759/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1760/3000, vae_loss=410.8000]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1760/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1761/3000, vae_loss=415.0131]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1761/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1762/3000, vae_loss=410.6152]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1762/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1763/3000, vae_loss=416.8543]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1763/3000 [00:21<00:14, 85.11it/s, cycle_loss=0.0000, epoch=1764/3000, vae_loss=415.8460]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1764/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1764/3000, vae_loss=415.8460]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1764/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1765/3000, vae_loss=419.7052]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1765/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1766/3000, vae_loss=409.0671]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1766/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1767/3000, vae_loss=416.9203]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1767/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1768/3000, vae_loss=413.5670]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1768/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1769/3000, vae_loss=413.5408]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1769/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1770/3000, vae_loss=419.4295]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1770/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1771/3000, vae_loss=421.7444]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1771/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1772/3000, vae_loss=410.1001]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1772/3000 [00:21<00:14, 84.96it/s, cycle_loss=0.0000, epoch=1773/3000, vae_loss=415.4849]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1773/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1773/3000, vae_loss=415.4849]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1773/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1774/3000, vae_loss=418.5800]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1774/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1775/3000, vae_loss=407.2142]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1775/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1776/3000, vae_loss=412.2293]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1776/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1777/3000, vae_loss=413.7935]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1777/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1778/3000, vae_loss=420.5188]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1778/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1779/3000, vae_loss=414.3881]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1779/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1780/3000, vae_loss=407.2157]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1780/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1781/3000, vae_loss=410.8947]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1781/3000 [00:21<00:14, 84.86it/s, cycle_loss=0.0000, epoch=1782/3000, vae_loss=413.0349]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1782/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1782/3000, vae_loss=413.0349]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1782/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1783/3000, vae_loss=418.7416]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1783/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1784/3000, vae_loss=416.1834]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1784/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1785/3000, vae_loss=409.9822]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1785/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1786/3000, vae_loss=402.7773]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1786/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1787/3000, vae_loss=414.5009]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1787/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1788/3000, vae_loss=412.6607]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1788/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1789/3000, vae_loss=414.6434]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1789/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1790/3000, vae_loss=409.6261]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1790/3000 [00:21<00:14, 84.43it/s, cycle_loss=0.0000, epoch=1791/3000, vae_loss=412.9477]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1791/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1791/3000, vae_loss=412.9477]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1791/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1792/3000, vae_loss=412.6841]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1792/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1793/3000, vae_loss=410.1545]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1793/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1794/3000, vae_loss=412.6032]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1794/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1795/3000, vae_loss=419.2494]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1795/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1796/3000, vae_loss=416.9493]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1796/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1797/3000, vae_loss=413.9991]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1797/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1798/3000, vae_loss=418.1960]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1798/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1799/3000, vae_loss=412.1829]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1799/3000 [00:21<00:14, 84.57it/s, cycle_loss=0.0000, epoch=1800/3000, vae_loss=413.5751]
Training: VAE decoder with masked batch labels:  60%|██████    | 1800/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1800/3000, vae_loss=413.5751]
Training: VAE decoder with masked batch labels:  60%|██████    | 1800/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1801/3000, vae_loss=416.2497]
Training: VAE decoder with masked batch labels:  60%|██████    | 1801/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1802/3000, vae_loss=410.2892]
Training: VAE decoder with masked batch labels:  60%|██████    | 1802/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1803/3000, vae_loss=408.9610]
Training: VAE decoder with masked batch labels:  60%|██████    | 1803/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1804/3000, vae_loss=415.6375]
Training: VAE decoder with masked batch labels:  60%|██████    | 1804/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1805/3000, vae_loss=415.6862]
Training: VAE decoder with masked batch labels:  60%|██████    | 1805/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1806/3000, vae_loss=412.9471]
Training: VAE decoder with masked batch labels:  60%|██████    | 1806/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1807/3000, vae_loss=413.6175]
Training: VAE decoder with masked batch labels:  60%|██████    | 1807/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1808/3000, vae_loss=409.2452]
Training: VAE decoder with masked batch labels:  60%|██████    | 1808/3000 [00:21<00:14, 84.29it/s, cycle_loss=0.0000, epoch=1809/3000, vae_loss=409.9181]
Training: VAE decoder with masked batch labels:  60%|██████    | 1809/3000 [00:21<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1809/3000, vae_loss=409.9181]
Training: VAE decoder with masked batch labels:  60%|██████    | 1809/3000 [00:21<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1810/3000, vae_loss=414.7417]
Training: VAE decoder with masked batch labels:  60%|██████    | 1810/3000 [00:21<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1811/3000, vae_loss=415.2523]
Training: VAE decoder with masked batch labels:  60%|██████    | 1811/3000 [00:21<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1812/3000, vae_loss=417.9019]
Training: VAE decoder with masked batch labels:  60%|██████    | 1812/3000 [00:22<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1813/3000, vae_loss=413.3981]
Training: VAE decoder with masked batch labels:  60%|██████    | 1813/3000 [00:22<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1814/3000, vae_loss=422.1363]
Training: VAE decoder with masked batch labels:  60%|██████    | 1814/3000 [00:22<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1815/3000, vae_loss=408.3629]
Training: VAE decoder with masked batch labels:  60%|██████    | 1815/3000 [00:22<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1816/3000, vae_loss=411.7563]
Training: VAE decoder with masked batch labels:  61%|██████    | 1816/3000 [00:22<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1817/3000, vae_loss=415.4288]
Training: VAE decoder with masked batch labels:  61%|██████    | 1817/3000 [00:22<00:14, 82.85it/s, cycle_loss=0.0000, epoch=1818/3000, vae_loss=416.9565]
Training: VAE decoder with masked batch labels:  61%|██████    | 1818/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1818/3000, vae_loss=416.9565]
Training: VAE decoder with masked batch labels:  61%|██████    | 1818/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1819/3000, vae_loss=410.9877]
Training: VAE decoder with masked batch labels:  61%|██████    | 1819/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1820/3000, vae_loss=407.7869]
Training: VAE decoder with masked batch labels:  61%|██████    | 1820/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1821/3000, vae_loss=412.6468]
Training: VAE decoder with masked batch labels:  61%|██████    | 1821/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1822/3000, vae_loss=408.7868]
Training: VAE decoder with masked batch labels:  61%|██████    | 1822/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1823/3000, vae_loss=407.8950]
Training: VAE decoder with masked batch labels:  61%|██████    | 1823/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1824/3000, vae_loss=414.2702]
Training: VAE decoder with masked batch labels:  61%|██████    | 1824/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1825/3000, vae_loss=421.0700]
Training: VAE decoder with masked batch labels:  61%|██████    | 1825/3000 [00:22<00:14, 83.86it/s, cycle_loss=0.0000, epoch=1826/3000, vae_loss=415.1555]
Training: VAE decoder with masked batch labels:  61%|██████    | 1826/3000 [00:22<00:13, 83.86it/s, cycle_loss=0.0000, epoch=1827/3000, vae_loss=419.8194]
Training: VAE decoder with masked batch labels:  61%|██████    | 1827/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1827/3000, vae_loss=419.8194]
Training: VAE decoder with masked batch labels:  61%|██████    | 1827/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1828/3000, vae_loss=415.2125]
Training: VAE decoder with masked batch labels:  61%|██████    | 1828/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1829/3000, vae_loss=424.1033]
Training: VAE decoder with masked batch labels:  61%|██████    | 1829/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1830/3000, vae_loss=405.2698]
Training: VAE decoder with masked batch labels:  61%|██████    | 1830/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1831/3000, vae_loss=411.0626]
Training: VAE decoder with masked batch labels:  61%|██████    | 1831/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1832/3000, vae_loss=408.5676]
Training: VAE decoder with masked batch labels:  61%|██████    | 1832/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1833/3000, vae_loss=410.3470]
Training: VAE decoder with masked batch labels:  61%|██████    | 1833/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1834/3000, vae_loss=411.2657]
Training: VAE decoder with masked batch labels:  61%|██████    | 1834/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1835/3000, vae_loss=413.0936]
Training: VAE decoder with masked batch labels:  61%|██████    | 1835/3000 [00:22<00:14, 83.19it/s, cycle_loss=0.0000, epoch=1836/3000, vae_loss=411.8044]
Training: VAE decoder with masked batch labels:  61%|██████    | 1836/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1836/3000, vae_loss=411.8044]
Training: VAE decoder with masked batch labels:  61%|██████    | 1836/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1837/3000, vae_loss=409.6272]
Training: VAE decoder with masked batch labels:  61%|██████    | 1837/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1838/3000, vae_loss=411.9497]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1838/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1839/3000, vae_loss=409.1858]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1839/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1840/3000, vae_loss=408.4584]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1840/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1841/3000, vae_loss=409.4119]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1841/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1842/3000, vae_loss=414.1462]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1842/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1843/3000, vae_loss=417.1847]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1843/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1844/3000, vae_loss=404.6058]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1844/3000 [00:22<00:13, 83.50it/s, cycle_loss=0.0000, epoch=1845/3000, vae_loss=407.9705]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1845/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1845/3000, vae_loss=407.9705]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1845/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1846/3000, vae_loss=418.1938]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1846/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1847/3000, vae_loss=408.7907]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1847/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1848/3000, vae_loss=401.0504]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1848/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1849/3000, vae_loss=413.4622]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1849/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1850/3000, vae_loss=414.7424]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1850/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1851/3000, vae_loss=410.3160]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1851/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1852/3000, vae_loss=408.2759]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1852/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1853/3000, vae_loss=414.7455]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1853/3000 [00:22<00:13, 83.07it/s, cycle_loss=0.0000, epoch=1854/3000, vae_loss=405.5258]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1854/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1854/3000, vae_loss=405.5258]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1854/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1855/3000, vae_loss=409.4503]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1855/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1856/3000, vae_loss=408.4521]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1856/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1857/3000, vae_loss=417.5648]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1857/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1858/3000, vae_loss=404.7237]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1858/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1859/3000, vae_loss=411.3796]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1859/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1860/3000, vae_loss=407.0866]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1860/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1861/3000, vae_loss=399.3085]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1861/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1862/3000, vae_loss=406.7565]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1862/3000 [00:22<00:13, 83.05it/s, cycle_loss=0.0000, epoch=1863/3000, vae_loss=399.6946]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1863/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1863/3000, vae_loss=399.6946]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1863/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1864/3000, vae_loss=410.2906]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1864/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1865/3000, vae_loss=409.6710]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1865/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1866/3000, vae_loss=411.4737]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1866/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1867/3000, vae_loss=403.6897]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1867/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1868/3000, vae_loss=407.3016]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1868/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1869/3000, vae_loss=410.8959]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1869/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1870/3000, vae_loss=404.6575]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1870/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1871/3000, vae_loss=410.4813]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1871/3000 [00:22<00:13, 83.96it/s, cycle_loss=0.0000, epoch=1872/3000, vae_loss=421.7274]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1872/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1872/3000, vae_loss=421.7274]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1872/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1873/3000, vae_loss=403.5189]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1873/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1874/3000, vae_loss=413.9223]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1874/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1875/3000, vae_loss=409.5861]
Training: VAE decoder with masked batch labels:  62%|██████▎   | 1875/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1876/3000, vae_loss=403.7599]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1876/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1877/3000, vae_loss=402.0898]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1877/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1878/3000, vae_loss=410.9869]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1878/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1879/3000, vae_loss=412.3541]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1879/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1880/3000, vae_loss=409.4970]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1880/3000 [00:22<00:13, 85.02it/s, cycle_loss=0.0000, epoch=1881/3000, vae_loss=407.4563]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1881/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1881/3000, vae_loss=407.4563]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1881/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1882/3000, vae_loss=398.3557]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1882/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1883/3000, vae_loss=406.5818]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1883/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1884/3000, vae_loss=400.5302]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1884/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1885/3000, vae_loss=400.6657]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1885/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1886/3000, vae_loss=408.1513]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1886/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1887/3000, vae_loss=420.0273]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1887/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1888/3000, vae_loss=405.7364]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1888/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1889/3000, vae_loss=417.1946]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1889/3000 [00:22<00:13, 84.28it/s, cycle_loss=0.0000, epoch=1890/3000, vae_loss=409.6024]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1890/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1890/3000, vae_loss=409.6024]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1890/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1891/3000, vae_loss=400.2324]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1891/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1892/3000, vae_loss=408.2438]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1892/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1893/3000, vae_loss=405.9999]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1893/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1894/3000, vae_loss=407.8132]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1894/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1895/3000, vae_loss=409.3889]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1895/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1896/3000, vae_loss=412.6260]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1896/3000 [00:22<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1897/3000, vae_loss=405.7782]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1897/3000 [00:23<00:13, 84.81it/s, cycle_loss=0.0000, epoch=1898/3000, vae_loss=401.1562]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1898/3000 [00:23<00:12, 84.81it/s, cycle_loss=0.0000, epoch=1899/3000, vae_loss=409.1345]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1899/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1899/3000, vae_loss=409.1345]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1899/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1900/3000, vae_loss=410.9225]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1900/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1901/3000, vae_loss=409.4571]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1901/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1902/3000, vae_loss=403.1770]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1902/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1903/3000, vae_loss=408.7876]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1903/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1904/3000, vae_loss=410.3094]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1904/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1905/3000, vae_loss=404.2250]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1905/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1906/3000, vae_loss=402.5863]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1906/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1907/3000, vae_loss=406.9330]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1907/3000 [00:23<00:12, 84.76it/s, cycle_loss=0.0000, epoch=1908/3000, vae_loss=403.8086]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1908/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1908/3000, vae_loss=403.8086]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1908/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1909/3000, vae_loss=403.7883]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1909/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1910/3000, vae_loss=405.2452]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1910/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1911/3000, vae_loss=408.2858]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1911/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1912/3000, vae_loss=397.7087]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1912/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1913/3000, vae_loss=404.2720]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1913/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1914/3000, vae_loss=407.6962]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1914/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1915/3000, vae_loss=406.8312]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1915/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1916/3000, vae_loss=408.0471]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1916/3000 [00:23<00:12, 85.30it/s, cycle_loss=0.0000, epoch=1917/3000, vae_loss=402.5867]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1917/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1917/3000, vae_loss=402.5867]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1917/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1918/3000, vae_loss=404.1632]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1918/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1919/3000, vae_loss=413.8740]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1919/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1920/3000, vae_loss=405.6414]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1920/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1921/3000, vae_loss=413.2701]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1921/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1922/3000, vae_loss=403.0042]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1922/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1923/3000, vae_loss=398.1047]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1923/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1924/3000, vae_loss=405.3142]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1924/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1925/3000, vae_loss=401.3663]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1925/3000 [00:23<00:12, 85.44it/s, cycle_loss=0.0000, epoch=1926/3000, vae_loss=401.6336]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1926/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1926/3000, vae_loss=401.6336]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1926/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1927/3000, vae_loss=399.9435]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1927/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1928/3000, vae_loss=402.0545]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1928/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1929/3000, vae_loss=401.6104]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1929/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1930/3000, vae_loss=405.5930]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1930/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1931/3000, vae_loss=406.9588]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1931/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1932/3000, vae_loss=408.3815]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1932/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1933/3000, vae_loss=410.0128]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1933/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1934/3000, vae_loss=407.4566]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1934/3000 [00:23<00:12, 83.72it/s, cycle_loss=0.0000, epoch=1935/3000, vae_loss=403.4230]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1935/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1935/3000, vae_loss=403.4230]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1935/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1936/3000, vae_loss=393.9196]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1936/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1937/3000, vae_loss=397.5664]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1937/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1938/3000, vae_loss=414.8158]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1938/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1939/3000, vae_loss=405.3792]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1939/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1940/3000, vae_loss=406.9067]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1940/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1941/3000, vae_loss=406.4951]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1941/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1942/3000, vae_loss=413.3185]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1942/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1943/3000, vae_loss=412.2126]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1943/3000 [00:23<00:12, 84.26it/s, cycle_loss=0.0000, epoch=1944/3000, vae_loss=398.3270]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1944/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1944/3000, vae_loss=398.3270]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1944/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1945/3000, vae_loss=403.6433]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1945/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1946/3000, vae_loss=404.8596]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1946/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1947/3000, vae_loss=402.5545]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1947/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1948/3000, vae_loss=413.9622]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1948/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1949/3000, vae_loss=405.2996]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1949/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1950/3000, vae_loss=414.2095]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1950/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1951/3000, vae_loss=403.6124]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1951/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1952/3000, vae_loss=397.9952]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1952/3000 [00:23<00:12, 84.25it/s, cycle_loss=0.0000, epoch=1953/3000, vae_loss=409.0372]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1953/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1953/3000, vae_loss=409.0372]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1953/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1954/3000, vae_loss=405.5167]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1954/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1955/3000, vae_loss=398.7334]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1955/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1956/3000, vae_loss=405.5029]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1956/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1957/3000, vae_loss=406.5861]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1957/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1958/3000, vae_loss=401.4294]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1958/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1959/3000, vae_loss=406.7383]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1959/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1960/3000, vae_loss=396.5057]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1960/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1961/3000, vae_loss=400.5181]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1961/3000 [00:23<00:12, 84.84it/s, cycle_loss=0.0000, epoch=1962/3000, vae_loss=399.5529]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1962/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1962/3000, vae_loss=399.5529]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1962/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1963/3000, vae_loss=410.7361]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1963/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1964/3000, vae_loss=398.6810]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1964/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1965/3000, vae_loss=401.5455]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1965/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1966/3000, vae_loss=405.9117]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1966/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1967/3000, vae_loss=403.6287]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1967/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1968/3000, vae_loss=390.9509]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1968/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1969/3000, vae_loss=401.9918]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1969/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1970/3000, vae_loss=403.4862]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1970/3000 [00:23<00:12, 84.70it/s, cycle_loss=0.0000, epoch=1971/3000, vae_loss=408.1083]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1971/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1971/3000, vae_loss=408.1083]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1971/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1972/3000, vae_loss=410.1519]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1972/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1973/3000, vae_loss=405.5298]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1973/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1974/3000, vae_loss=402.7452]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1974/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1975/3000, vae_loss=402.5389]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1975/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1976/3000, vae_loss=401.4910]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1976/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1977/3000, vae_loss=401.3357]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1977/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1978/3000, vae_loss=404.4689]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1978/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1979/3000, vae_loss=398.8121]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1979/3000 [00:23<00:12, 84.12it/s, cycle_loss=0.0000, epoch=1980/3000, vae_loss=397.5879]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1980/3000 [00:23<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1980/3000, vae_loss=397.5879]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1980/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1981/3000, vae_loss=398.1161]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1981/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1982/3000, vae_loss=408.1637]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1982/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1983/3000, vae_loss=398.5896]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1983/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1984/3000, vae_loss=399.9278]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1984/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1985/3000, vae_loss=402.2622]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1985/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1986/3000, vae_loss=408.1744]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1986/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1987/3000, vae_loss=410.9009]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1987/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1988/3000, vae_loss=402.3192]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1988/3000 [00:24<00:12, 82.84it/s, cycle_loss=0.0000, epoch=1989/3000, vae_loss=398.2220]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1989/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1989/3000, vae_loss=398.2220]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1989/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1990/3000, vae_loss=399.6295]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1990/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1991/3000, vae_loss=402.0791]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1991/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1992/3000, vae_loss=404.6358]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1992/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1993/3000, vae_loss=404.1101]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1993/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1994/3000, vae_loss=409.0866]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1994/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1995/3000, vae_loss=392.6571]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1995/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1996/3000, vae_loss=403.9270]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1996/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1997/3000, vae_loss=397.5349]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1997/3000 [00:24<00:12, 83.25it/s, cycle_loss=0.0000, epoch=1998/3000, vae_loss=401.7447]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1998/3000 [00:24<00:12, 83.26it/s, cycle_loss=0.0000, epoch=1998/3000, vae_loss=401.7447]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1998/3000 [00:24<00:12, 83.26it/s, cycle_loss=0.0000, epoch=1999/3000, vae_loss=395.1635]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1999/3000 [00:24<00:12, 83.26it/s, cycle_loss=0.0000, epoch=2000/3000, vae_loss=399.7089]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2000/3000 [00:24<00:12, 83.26it/s, cycle_loss=0.0000, epoch=2001/3000, vae_loss=396.0952]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2001/3000 [00:24<00:11, 83.26it/s, cycle_loss=0.0000, epoch=2002/3000, vae_loss=407.0203]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2002/3000 [00:24<00:11, 83.26it/s, cycle_loss=0.0000, epoch=2003/3000, vae_loss=404.3743]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2003/3000 [00:24<00:11, 83.26it/s, cycle_loss=0.0000, epoch=2004/3000, vae_loss=395.8445]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2004/3000 [00:24<00:11, 83.26it/s, cycle_loss=0.0000, epoch=2005/3000, vae_loss=404.2726]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2005/3000 [00:24<00:11, 83.26it/s, cycle_loss=0.0000, epoch=2006/3000, vae_loss=392.0147]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2006/3000 [00:24<00:11, 83.26it/s, cycle_loss=0.0000, epoch=2007/3000, vae_loss=402.5547]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2007/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2007/3000, vae_loss=402.5547]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2007/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2008/3000, vae_loss=399.4839]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2008/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2009/3000, vae_loss=402.5907]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2009/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2010/3000, vae_loss=403.9639]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2010/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2011/3000, vae_loss=404.9745]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2011/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2012/3000, vae_loss=403.6820]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2012/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2013/3000, vae_loss=403.9563]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2013/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2014/3000, vae_loss=404.0449]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2014/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2015/3000, vae_loss=401.6664]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2015/3000 [00:24<00:11, 83.65it/s, cycle_loss=0.0000, epoch=2016/3000, vae_loss=399.4758]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2016/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2016/3000, vae_loss=399.4758]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2016/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2017/3000, vae_loss=398.7749]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2017/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2018/3000, vae_loss=408.2993]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2018/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2019/3000, vae_loss=401.4524]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2019/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2020/3000, vae_loss=400.4501]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2020/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2021/3000, vae_loss=394.5056]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2021/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2022/3000, vae_loss=399.9047]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2022/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2023/3000, vae_loss=402.3324]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2023/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2024/3000, vae_loss=399.7065]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 2024/3000 [00:24<00:11, 83.34it/s, cycle_loss=0.0000, epoch=2025/3000, vae_loss=402.1023]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2025/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2025/3000, vae_loss=402.1023]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2025/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2026/3000, vae_loss=398.4235]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2026/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2027/3000, vae_loss=397.2711]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2027/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2028/3000, vae_loss=401.5070]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2028/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2029/3000, vae_loss=397.1062]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2029/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2030/3000, vae_loss=402.0673]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2030/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2031/3000, vae_loss=393.7425]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2031/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2032/3000, vae_loss=408.3375]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2032/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2033/3000, vae_loss=394.4302]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2033/3000 [00:24<00:11, 83.78it/s, cycle_loss=0.0000, epoch=2034/3000, vae_loss=401.1046]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2034/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2034/3000, vae_loss=401.1046]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2034/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2035/3000, vae_loss=398.6458]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2035/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2036/3000, vae_loss=393.7898]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2036/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2037/3000, vae_loss=399.9265]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2037/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2038/3000, vae_loss=399.5813]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2038/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2039/3000, vae_loss=394.9262]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2039/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2040/3000, vae_loss=402.3344]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2040/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2041/3000, vae_loss=397.2279]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2041/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2042/3000, vae_loss=397.1925]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2042/3000 [00:24<00:11, 84.85it/s, cycle_loss=0.0000, epoch=2043/3000, vae_loss=400.5538]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2043/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2043/3000, vae_loss=400.5538]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2043/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2044/3000, vae_loss=394.7348]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2044/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2045/3000, vae_loss=398.6934]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2045/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2046/3000, vae_loss=392.7742]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2046/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2047/3000, vae_loss=403.2498]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2047/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2048/3000, vae_loss=406.6891]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2048/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2049/3000, vae_loss=396.1358]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2049/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2050/3000, vae_loss=401.2933]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2050/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2051/3000, vae_loss=406.3149]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2051/3000 [00:24<00:11, 84.62it/s, cycle_loss=0.0000, epoch=2052/3000, vae_loss=392.5076]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2052/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2052/3000, vae_loss=392.5076]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2052/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2053/3000, vae_loss=399.8667]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2053/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2054/3000, vae_loss=399.0196]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2054/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2055/3000, vae_loss=392.7628]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 2055/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2056/3000, vae_loss=396.8372]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2056/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2057/3000, vae_loss=402.4497]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2057/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2058/3000, vae_loss=387.9597]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2058/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2059/3000, vae_loss=400.4993]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2059/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2060/3000, vae_loss=399.0749]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2060/3000 [00:24<00:11, 82.88it/s, cycle_loss=0.0000, epoch=2061/3000, vae_loss=390.6002]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2061/3000 [00:24<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2061/3000, vae_loss=390.6002]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2061/3000 [00:24<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2062/3000, vae_loss=396.4380]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 2062/3000 [00:24<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2063/3000, vae_loss=399.2564]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2063/3000 [00:25<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2064/3000, vae_loss=394.1721]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2064/3000 [00:25<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2065/3000, vae_loss=389.4302]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2065/3000 [00:25<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2066/3000, vae_loss=393.6709]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2066/3000 [00:25<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2067/3000, vae_loss=402.7421]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2067/3000 [00:25<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2068/3000, vae_loss=399.5808]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2068/3000 [00:25<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2069/3000, vae_loss=399.7746]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2069/3000 [00:25<00:11, 79.88it/s, cycle_loss=0.0000, epoch=2070/3000, vae_loss=403.2103]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2070/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2070/3000, vae_loss=403.2103]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2070/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2071/3000, vae_loss=404.9864]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2071/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2072/3000, vae_loss=400.5880]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2072/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2073/3000, vae_loss=400.3320]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2073/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2074/3000, vae_loss=392.3148]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2074/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2075/3000, vae_loss=392.0225]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2075/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2076/3000, vae_loss=402.5352]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2076/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2077/3000, vae_loss=396.3245]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2077/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2078/3000, vae_loss=398.4496]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2078/3000 [00:25<00:11, 78.89it/s, cycle_loss=0.0000, epoch=2079/3000, vae_loss=394.7295]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2079/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2079/3000, vae_loss=394.7295]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2079/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2080/3000, vae_loss=390.9066]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2080/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2081/3000, vae_loss=393.2717]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2081/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2082/3000, vae_loss=393.3994]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2082/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2083/3000, vae_loss=400.9302]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2083/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2084/3000, vae_loss=393.5699]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 2084/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2085/3000, vae_loss=394.8793]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2085/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2086/3000, vae_loss=394.1923]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2086/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2087/3000, vae_loss=405.9698]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2087/3000 [00:25<00:11, 79.86it/s, cycle_loss=0.0000, epoch=2088/3000, vae_loss=395.8734]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2088/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2088/3000, vae_loss=395.8734]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2088/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2089/3000, vae_loss=404.2541]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2089/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2090/3000, vae_loss=390.8644]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2090/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2091/3000, vae_loss=398.6604]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2091/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2092/3000, vae_loss=400.0159]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2092/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2093/3000, vae_loss=394.6799]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2093/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2094/3000, vae_loss=401.9868]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2094/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2095/3000, vae_loss=398.2791]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2095/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2096/3000, vae_loss=395.6070]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2096/3000 [00:25<00:11, 80.73it/s, cycle_loss=0.0000, epoch=2097/3000, vae_loss=398.9154]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2097/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2097/3000, vae_loss=398.9154]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2097/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2098/3000, vae_loss=400.2253]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2098/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2099/3000, vae_loss=399.5653]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 2099/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2100/3000, vae_loss=398.9827]
Training: VAE decoder with masked batch labels:  70%|███████   | 2100/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2101/3000, vae_loss=397.4210]
Training: VAE decoder with masked batch labels:  70%|███████   | 2101/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2102/3000, vae_loss=396.6155]
Training: VAE decoder with masked batch labels:  70%|███████   | 2102/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2103/3000, vae_loss=409.2521]
Training: VAE decoder with masked batch labels:  70%|███████   | 2103/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2104/3000, vae_loss=400.5444]
Training: VAE decoder with masked batch labels:  70%|███████   | 2104/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2105/3000, vae_loss=397.6450]
Training: VAE decoder with masked batch labels:  70%|███████   | 2105/3000 [00:25<00:11, 81.14it/s, cycle_loss=0.0000, epoch=2106/3000, vae_loss=390.0841]
Training: VAE decoder with masked batch labels:  70%|███████   | 2106/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2106/3000, vae_loss=390.0841]
Training: VAE decoder with masked batch labels:  70%|███████   | 2106/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2107/3000, vae_loss=389.6631]
Training: VAE decoder with masked batch labels:  70%|███████   | 2107/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2108/3000, vae_loss=401.2908]
Training: VAE decoder with masked batch labels:  70%|███████   | 2108/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2109/3000, vae_loss=398.9613]
Training: VAE decoder with masked batch labels:  70%|███████   | 2109/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2110/3000, vae_loss=391.3311]
Training: VAE decoder with masked batch labels:  70%|███████   | 2110/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2111/3000, vae_loss=390.8203]
Training: VAE decoder with masked batch labels:  70%|███████   | 2111/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2112/3000, vae_loss=400.6945]
Training: VAE decoder with masked batch labels:  70%|███████   | 2112/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2113/3000, vae_loss=397.1861]
Training: VAE decoder with masked batch labels:  70%|███████   | 2113/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2114/3000, vae_loss=393.2337]
Training: VAE decoder with masked batch labels:  70%|███████   | 2114/3000 [00:25<00:11, 80.48it/s, cycle_loss=0.0000, epoch=2115/3000, vae_loss=389.3097]
Training: VAE decoder with masked batch labels:  70%|███████   | 2115/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2115/3000, vae_loss=389.3097]
Training: VAE decoder with masked batch labels:  70%|███████   | 2115/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2116/3000, vae_loss=398.6464]
Training: VAE decoder with masked batch labels:  71%|███████   | 2116/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2117/3000, vae_loss=394.2006]
Training: VAE decoder with masked batch labels:  71%|███████   | 2117/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2118/3000, vae_loss=393.3420]
Training: VAE decoder with masked batch labels:  71%|███████   | 2118/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2119/3000, vae_loss=388.8401]
Training: VAE decoder with masked batch labels:  71%|███████   | 2119/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2120/3000, vae_loss=396.8673]
Training: VAE decoder with masked batch labels:  71%|███████   | 2120/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2121/3000, vae_loss=393.3590]
Training: VAE decoder with masked batch labels:  71%|███████   | 2121/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2122/3000, vae_loss=402.9024]
Training: VAE decoder with masked batch labels:  71%|███████   | 2122/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2123/3000, vae_loss=395.4509]
Training: VAE decoder with masked batch labels:  71%|███████   | 2123/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2124/3000, vae_loss=401.2991]
Training: VAE decoder with masked batch labels:  71%|███████   | 2124/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2124/3000, vae_loss=401.2991]
Training: VAE decoder with masked batch labels:  71%|███████   | 2124/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2125/3000, vae_loss=394.4558]
Training: VAE decoder with masked batch labels:  71%|███████   | 2125/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2126/3000, vae_loss=392.6873]
Training: VAE decoder with masked batch labels:  71%|███████   | 2126/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2127/3000, vae_loss=390.8358]
Training: VAE decoder with masked batch labels:  71%|███████   | 2127/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2128/3000, vae_loss=391.2345]
Training: VAE decoder with masked batch labels:  71%|███████   | 2128/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2129/3000, vae_loss=395.5149]
Training: VAE decoder with masked batch labels:  71%|███████   | 2129/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2130/3000, vae_loss=395.5335]
Training: VAE decoder with masked batch labels:  71%|███████   | 2130/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2131/3000, vae_loss=396.0894]
Training: VAE decoder with masked batch labels:  71%|███████   | 2131/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2132/3000, vae_loss=396.0333]
Training: VAE decoder with masked batch labels:  71%|███████   | 2132/3000 [00:25<00:10, 81.81it/s, cycle_loss=0.0000, epoch=2133/3000, vae_loss=393.7804]
Training: VAE decoder with masked batch labels:  71%|███████   | 2133/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2133/3000, vae_loss=393.7804]
Training: VAE decoder with masked batch labels:  71%|███████   | 2133/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2134/3000, vae_loss=392.8144]
Training: VAE decoder with masked batch labels:  71%|███████   | 2134/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2135/3000, vae_loss=395.9248]
Training: VAE decoder with masked batch labels:  71%|███████   | 2135/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2136/3000, vae_loss=392.5307]
Training: VAE decoder with masked batch labels:  71%|███████   | 2136/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2137/3000, vae_loss=399.8548]
Training: VAE decoder with masked batch labels:  71%|███████   | 2137/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2138/3000, vae_loss=388.7756]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2138/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2139/3000, vae_loss=389.7511]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2139/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2140/3000, vae_loss=400.1349]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2140/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2141/3000, vae_loss=401.0568]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2141/3000 [00:25<00:10, 81.05it/s, cycle_loss=0.0000, epoch=2142/3000, vae_loss=396.7656]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2142/3000 [00:25<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2142/3000, vae_loss=396.7656]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2142/3000 [00:25<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2143/3000, vae_loss=396.1435]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2143/3000 [00:25<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2144/3000, vae_loss=398.0948]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 2144/3000 [00:26<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2145/3000, vae_loss=401.2024]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2145/3000 [00:26<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2146/3000, vae_loss=385.4939]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2146/3000 [00:26<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2147/3000, vae_loss=391.1224]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2147/3000 [00:26<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2148/3000, vae_loss=390.2756]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2148/3000 [00:26<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2149/3000, vae_loss=389.5577]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2149/3000 [00:26<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2150/3000, vae_loss=393.8581]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2150/3000 [00:26<00:10, 80.65it/s, cycle_loss=0.0000, epoch=2151/3000, vae_loss=395.3454]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2151/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2151/3000, vae_loss=395.3454]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2151/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2152/3000, vae_loss=394.6495]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2152/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2153/3000, vae_loss=395.3535]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2153/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2154/3000, vae_loss=395.1303]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2154/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2155/3000, vae_loss=401.7873]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2155/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2156/3000, vae_loss=394.9789]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2156/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2157/3000, vae_loss=400.7785]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2157/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2158/3000, vae_loss=391.9020]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2158/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2159/3000, vae_loss=392.6970]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2159/3000 [00:26<00:10, 81.33it/s, cycle_loss=0.0000, epoch=2160/3000, vae_loss=397.0979]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2160/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2160/3000, vae_loss=397.0979]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2160/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2161/3000, vae_loss=396.2708]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2161/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2162/3000, vae_loss=401.1695]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2162/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2163/3000, vae_loss=388.1778]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2163/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2164/3000, vae_loss=392.3495]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2164/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2165/3000, vae_loss=394.8083]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2165/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2166/3000, vae_loss=387.1078]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2166/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2167/3000, vae_loss=396.2783]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2167/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2168/3000, vae_loss=401.5886]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2168/3000 [00:26<00:10, 81.27it/s, cycle_loss=0.0000, epoch=2169/3000, vae_loss=391.7721]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2169/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2169/3000, vae_loss=391.7721]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2169/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2170/3000, vae_loss=388.8190]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2170/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2171/3000, vae_loss=391.7691]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2171/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2172/3000, vae_loss=394.8279]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2172/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2173/3000, vae_loss=396.0575]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2173/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2174/3000, vae_loss=388.5884]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 2174/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2175/3000, vae_loss=396.5349]
Training: VAE decoder with masked batch labels:  72%|███████▎  | 2175/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2176/3000, vae_loss=393.5869]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2176/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2177/3000, vae_loss=392.3484]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2177/3000 [00:26<00:10, 81.82it/s, cycle_loss=0.0000, epoch=2178/3000, vae_loss=397.1299]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2178/3000 [00:26<00:10, 81.73it/s, cycle_loss=0.0000, epoch=2178/3000, vae_loss=397.1299]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2178/3000 [00:26<00:10, 81.73it/s, cycle_loss=0.0000, epoch=2179/3000, vae_loss=394.9769]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2179/3000 [00:26<00:10, 81.73it/s, cycle_loss=0.0000, epoch=2180/3000, vae_loss=388.9941]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2180/3000 [00:26<00:10, 81.73it/s, cycle_loss=0.0000, epoch=2181/3000, vae_loss=397.1713]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2181/3000 [00:26<00:10, 81.73it/s, cycle_loss=0.0000, epoch=2182/3000, vae_loss=403.0048]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2182/3000 [00:26<00:10, 81.73it/s, cycle_loss=0.0000, epoch=2183/3000, vae_loss=399.9384]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2183/3000 [00:26<00:09, 81.73it/s, cycle_loss=0.0000, epoch=2184/3000, vae_loss=391.8012]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2184/3000 [00:26<00:09, 81.73it/s, cycle_loss=0.0000, epoch=2185/3000, vae_loss=395.6382]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2185/3000 [00:26<00:09, 81.73it/s, cycle_loss=0.0000, epoch=2186/3000, vae_loss=400.9552]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2186/3000 [00:26<00:09, 81.73it/s, cycle_loss=0.0000, epoch=2187/3000, vae_loss=393.1474]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2187/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2187/3000, vae_loss=393.1474]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2187/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2188/3000, vae_loss=393.8368]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2188/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2189/3000, vae_loss=391.6250]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2189/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2190/3000, vae_loss=395.0395]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2190/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2191/3000, vae_loss=389.9885]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2191/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2192/3000, vae_loss=392.9950]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2192/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2193/3000, vae_loss=397.6658]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2193/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2194/3000, vae_loss=397.7699]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2194/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2195/3000, vae_loss=401.8793]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2195/3000 [00:26<00:09, 81.76it/s, cycle_loss=0.0000, epoch=2196/3000, vae_loss=390.9041]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2196/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2196/3000, vae_loss=390.9041]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2196/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2197/3000, vae_loss=387.9871]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2197/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2198/3000, vae_loss=394.3121]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2198/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2199/3000, vae_loss=400.8350]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2199/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2200/3000, vae_loss=388.4941]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2200/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2201/3000, vae_loss=385.6731]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2201/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2202/3000, vae_loss=394.2206]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2202/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2203/3000, vae_loss=397.5125]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2203/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2204/3000, vae_loss=388.3033]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 2204/3000 [00:26<00:09, 83.12it/s, cycle_loss=0.0000, epoch=2205/3000, vae_loss=386.9528]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2205/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2205/3000, vae_loss=386.9528]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2205/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2206/3000, vae_loss=406.7060]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2206/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2207/3000, vae_loss=389.0554]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2207/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2208/3000, vae_loss=382.9885]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2208/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2209/3000, vae_loss=390.4035]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2209/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2210/3000, vae_loss=395.3705]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2210/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2211/3000, vae_loss=392.1486]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2211/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2212/3000, vae_loss=387.5215]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 2212/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2213/3000, vae_loss=394.4110]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2213/3000 [00:26<00:09, 83.31it/s, cycle_loss=0.0000, epoch=2214/3000, vae_loss=387.8123]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2214/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2214/3000, vae_loss=387.8123]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2214/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2215/3000, vae_loss=395.3626]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2215/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2216/3000, vae_loss=394.4838]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2216/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2217/3000, vae_loss=393.7472]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2217/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2218/3000, vae_loss=385.5214]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2218/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2219/3000, vae_loss=390.9629]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2219/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2220/3000, vae_loss=398.1218]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2220/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2221/3000, vae_loss=404.1116]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2221/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2222/3000, vae_loss=386.9754]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2222/3000 [00:26<00:09, 83.02it/s, cycle_loss=0.0000, epoch=2223/3000, vae_loss=386.4276]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2223/3000 [00:26<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2223/3000, vae_loss=386.4276]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2223/3000 [00:26<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2224/3000, vae_loss=389.1410]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2224/3000 [00:26<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2225/3000, vae_loss=390.4117]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2225/3000 [00:26<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2226/3000, vae_loss=391.4804]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2226/3000 [00:26<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2227/3000, vae_loss=389.6689]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2227/3000 [00:27<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2228/3000, vae_loss=395.8596]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2228/3000 [00:27<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2229/3000, vae_loss=394.3326]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2229/3000 [00:27<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2230/3000, vae_loss=387.7554]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2230/3000 [00:27<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2231/3000, vae_loss=392.4936]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2231/3000 [00:27<00:09, 82.89it/s, cycle_loss=0.0000, epoch=2232/3000, vae_loss=388.0021]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2232/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2232/3000, vae_loss=388.0021]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2232/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2233/3000, vae_loss=388.7340]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2233/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2234/3000, vae_loss=396.7580]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2234/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2235/3000, vae_loss=398.5942]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 2235/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2236/3000, vae_loss=391.7767]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2236/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2237/3000, vae_loss=393.5830]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2237/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2238/3000, vae_loss=396.6107]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2238/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2239/3000, vae_loss=388.7613]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2239/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2240/3000, vae_loss=392.2077]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2240/3000 [00:27<00:09, 81.87it/s, cycle_loss=0.0000, epoch=2241/3000, vae_loss=398.0044]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2241/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2241/3000, vae_loss=398.0044]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2241/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2242/3000, vae_loss=394.4970]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2242/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2243/3000, vae_loss=393.8336]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2243/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2244/3000, vae_loss=389.0764]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2244/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2245/3000, vae_loss=389.1922]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2245/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2246/3000, vae_loss=400.5500]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2246/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2247/3000, vae_loss=401.8780]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2247/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2248/3000, vae_loss=387.0795]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2248/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2249/3000, vae_loss=387.7158]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 2249/3000 [00:27<00:09, 82.03it/s, cycle_loss=0.0000, epoch=2250/3000, vae_loss=387.9465]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2250/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2250/3000, vae_loss=387.9465]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2250/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2251/3000, vae_loss=394.7747]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2251/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2252/3000, vae_loss=390.4819]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2252/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2253/3000, vae_loss=385.5901]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2253/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2254/3000, vae_loss=396.2275]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2254/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2255/3000, vae_loss=394.2273]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2255/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2256/3000, vae_loss=390.9182]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2256/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2257/3000, vae_loss=393.8682]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2257/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2258/3000, vae_loss=384.0512]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2258/3000 [00:27<00:09, 82.29it/s, cycle_loss=0.0000, epoch=2259/3000, vae_loss=395.7808]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2259/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2259/3000, vae_loss=395.7808]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2259/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2260/3000, vae_loss=390.8023]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2260/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2261/3000, vae_loss=391.6649]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2261/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2262/3000, vae_loss=388.2656]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2262/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2263/3000, vae_loss=392.0149]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2263/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2264/3000, vae_loss=388.8528]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 2264/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2265/3000, vae_loss=390.4775]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2265/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2266/3000, vae_loss=395.5953]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2266/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2267/3000, vae_loss=389.4409]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2267/3000 [00:27<00:08, 82.43it/s, cycle_loss=0.0000, epoch=2268/3000, vae_loss=391.1464]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2268/3000 [00:27<00:09, 81.30it/s, cycle_loss=0.0000, epoch=2268/3000, vae_loss=391.1464]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2268/3000 [00:27<00:09, 81.30it/s, cycle_loss=0.0000, epoch=2269/3000, vae_loss=388.4608]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2269/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2270/3000, vae_loss=387.8751]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2270/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2271/3000, vae_loss=387.1362]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2271/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2272/3000, vae_loss=394.4088]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2272/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2273/3000, vae_loss=397.4106]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2273/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2274/3000, vae_loss=385.9424]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2274/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2275/3000, vae_loss=389.4440]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2275/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2276/3000, vae_loss=390.8080]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2276/3000 [00:27<00:08, 81.30it/s, cycle_loss=0.0000, epoch=2277/3000, vae_loss=392.6134]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2277/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2277/3000, vae_loss=392.6134]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2277/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2278/3000, vae_loss=387.2810]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2278/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2279/3000, vae_loss=383.4757]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2279/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2280/3000, vae_loss=389.2286]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2280/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2281/3000, vae_loss=384.4789]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2281/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2282/3000, vae_loss=388.5880]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2282/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2283/3000, vae_loss=385.9951]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2283/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2284/3000, vae_loss=394.7152]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2284/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2285/3000, vae_loss=390.3547]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2285/3000 [00:27<00:08, 81.74it/s, cycle_loss=0.0000, epoch=2286/3000, vae_loss=390.3661]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2286/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2286/3000, vae_loss=390.3661]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2286/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2287/3000, vae_loss=392.3103]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 2287/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2288/3000, vae_loss=392.4019]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2288/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2289/3000, vae_loss=397.1443]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2289/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2290/3000, vae_loss=390.9441]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2290/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2291/3000, vae_loss=391.9756]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2291/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2292/3000, vae_loss=386.6745]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2292/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2293/3000, vae_loss=387.4364]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2293/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2294/3000, vae_loss=389.2928]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2294/3000 [00:27<00:08, 83.00it/s, cycle_loss=0.0000, epoch=2295/3000, vae_loss=386.0891]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2295/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2295/3000, vae_loss=386.0891]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 2295/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2296/3000, vae_loss=385.3784]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2296/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2297/3000, vae_loss=380.8553]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2297/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2298/3000, vae_loss=390.1067]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2298/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2299/3000, vae_loss=387.1277]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2299/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2300/3000, vae_loss=386.0556]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2300/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2301/3000, vae_loss=392.1802]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2301/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2302/3000, vae_loss=389.5817]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2302/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2303/3000, vae_loss=389.2122]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2303/3000 [00:27<00:08, 83.74it/s, cycle_loss=0.0000, epoch=2304/3000, vae_loss=390.6666]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2304/3000 [00:27<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2304/3000, vae_loss=390.6666]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2304/3000 [00:27<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2305/3000, vae_loss=396.2700]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2305/3000 [00:27<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2306/3000, vae_loss=392.2864]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2306/3000 [00:27<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2307/3000, vae_loss=395.0427]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2307/3000 [00:27<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2308/3000, vae_loss=389.0796]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2308/3000 [00:27<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2309/3000, vae_loss=389.9420]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2309/3000 [00:28<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2310/3000, vae_loss=392.0437]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2310/3000 [00:28<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2311/3000, vae_loss=395.0511]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2311/3000 [00:28<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2312/3000, vae_loss=387.2582]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2312/3000 [00:28<00:08, 83.39it/s, cycle_loss=0.0000, epoch=2313/3000, vae_loss=390.1018]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2313/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2313/3000, vae_loss=390.1018]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2313/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2314/3000, vae_loss=382.8255]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2314/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2315/3000, vae_loss=391.7996]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2315/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2316/3000, vae_loss=387.4836]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2316/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2317/3000, vae_loss=386.4309]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2317/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2318/3000, vae_loss=385.8839]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2318/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2319/3000, vae_loss=388.5022]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2319/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2320/3000, vae_loss=387.2206]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2320/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2321/3000, vae_loss=388.0347]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2321/3000 [00:28<00:08, 84.32it/s, cycle_loss=0.0000, epoch=2322/3000, vae_loss=388.6371]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2322/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2322/3000, vae_loss=388.6371]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2322/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2323/3000, vae_loss=385.5170]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2323/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2324/3000, vae_loss=394.7792]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 2324/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2325/3000, vae_loss=386.3709]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2325/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2326/3000, vae_loss=395.0021]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2326/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2327/3000, vae_loss=384.4519]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2327/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2328/3000, vae_loss=390.1351]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2328/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2329/3000, vae_loss=386.9737]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2329/3000 [00:28<00:08, 83.85it/s, cycle_loss=0.0000, epoch=2330/3000, vae_loss=385.1678]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2330/3000 [00:28<00:07, 83.85it/s, cycle_loss=0.0000, epoch=2331/3000, vae_loss=386.8967]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2331/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2331/3000, vae_loss=386.8967]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2331/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2332/3000, vae_loss=386.4977]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2332/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2333/3000, vae_loss=394.0625]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2333/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2334/3000, vae_loss=383.8768]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2334/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2335/3000, vae_loss=389.0457]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2335/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2336/3000, vae_loss=394.0015]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2336/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2337/3000, vae_loss=390.9256]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2337/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2338/3000, vae_loss=380.5852]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2338/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2339/3000, vae_loss=383.3151]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2339/3000 [00:28<00:07, 84.36it/s, cycle_loss=0.0000, epoch=2340/3000, vae_loss=382.1881]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2340/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2340/3000, vae_loss=382.1881]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2340/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2341/3000, vae_loss=385.1409]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2341/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2342/3000, vae_loss=386.7827]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2342/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2343/3000, vae_loss=391.5739]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2343/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2344/3000, vae_loss=382.3071]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2344/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2345/3000, vae_loss=384.6092]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2345/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2346/3000, vae_loss=392.0915]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2346/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2347/3000, vae_loss=388.8876]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2347/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2348/3000, vae_loss=388.8485]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2348/3000 [00:28<00:07, 84.58it/s, cycle_loss=0.0000, epoch=2349/3000, vae_loss=385.6428]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2349/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2349/3000, vae_loss=385.6428]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2349/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2350/3000, vae_loss=386.2819]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2350/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2351/3000, vae_loss=385.7156]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2351/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2352/3000, vae_loss=390.7571]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2352/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2353/3000, vae_loss=392.9771]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2353/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2354/3000, vae_loss=392.1066]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2354/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2355/3000, vae_loss=389.0378]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 2355/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2356/3000, vae_loss=387.9304]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2356/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2357/3000, vae_loss=390.5406]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2357/3000 [00:28<00:12, 53.26it/s, cycle_loss=0.0000, epoch=2358/3000, vae_loss=385.8309]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2358/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2358/3000, vae_loss=385.8309]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2358/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2359/3000, vae_loss=393.8712]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2359/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2360/3000, vae_loss=385.5955]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2360/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2361/3000, vae_loss=389.7124]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2361/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2362/3000, vae_loss=386.3538]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 2362/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2363/3000, vae_loss=386.4973]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2363/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2364/3000, vae_loss=391.6243]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2364/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2365/3000, vae_loss=390.8711]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2365/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2366/3000, vae_loss=391.0971]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2366/3000 [00:28<00:10, 59.78it/s, cycle_loss=0.0000, epoch=2367/3000, vae_loss=383.5410]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2367/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2367/3000, vae_loss=383.5410]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2367/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2368/3000, vae_loss=387.8382]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2368/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2369/3000, vae_loss=381.2596]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2369/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2370/3000, vae_loss=384.7844]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2370/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2371/3000, vae_loss=392.0755]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2371/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2372/3000, vae_loss=387.3931]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2372/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2373/3000, vae_loss=391.8312]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2373/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2374/3000, vae_loss=388.5971]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2374/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2375/3000, vae_loss=387.3422]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2375/3000 [00:28<00:09, 65.06it/s, cycle_loss=0.0000, epoch=2376/3000, vae_loss=386.5123]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2376/3000 [00:28<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2376/3000, vae_loss=386.5123]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2376/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2377/3000, vae_loss=388.0499]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2377/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2378/3000, vae_loss=381.1383]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2378/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2379/3000, vae_loss=391.6025]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2379/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2380/3000, vae_loss=382.1622]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2380/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2381/3000, vae_loss=393.1115]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2381/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2382/3000, vae_loss=390.3416]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2382/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2383/3000, vae_loss=388.6521]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2383/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2384/3000, vae_loss=382.3568]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 2384/3000 [00:29<00:08, 69.90it/s, cycle_loss=0.0000, epoch=2385/3000, vae_loss=385.0144]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2385/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2385/3000, vae_loss=385.0144]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2385/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2386/3000, vae_loss=383.2341]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2386/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2387/3000, vae_loss=385.9814]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2387/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2388/3000, vae_loss=384.1710]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2388/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2389/3000, vae_loss=391.1140]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2389/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2390/3000, vae_loss=393.4874]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2390/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2391/3000, vae_loss=382.3004]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2391/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2392/3000, vae_loss=390.7181]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2392/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2393/3000, vae_loss=387.3802]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2393/3000 [00:29<00:08, 73.90it/s, cycle_loss=0.0000, epoch=2394/3000, vae_loss=390.5160]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2394/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2394/3000, vae_loss=390.5160]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2394/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2395/3000, vae_loss=387.5077]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2395/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2396/3000, vae_loss=380.9740]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2396/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2397/3000, vae_loss=391.0717]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2397/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2398/3000, vae_loss=387.7697]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2398/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2399/3000, vae_loss=389.6045]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 2399/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2400/3000, vae_loss=392.2629]
Training: VAE decoder with masked batch labels:  80%|████████  | 2400/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2401/3000, vae_loss=379.4207]
Training: VAE decoder with masked batch labels:  80%|████████  | 2401/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2402/3000, vae_loss=387.8738]
Training: VAE decoder with masked batch labels:  80%|████████  | 2402/3000 [00:29<00:07, 76.98it/s, cycle_loss=0.0000, epoch=2403/3000, vae_loss=385.4073]
Training: VAE decoder with masked batch labels:  80%|████████  | 2403/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2403/3000, vae_loss=385.4073]
Training: VAE decoder with masked batch labels:  80%|████████  | 2403/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2404/3000, vae_loss=382.1515]
Training: VAE decoder with masked batch labels:  80%|████████  | 2404/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2405/3000, vae_loss=382.8752]
Training: VAE decoder with masked batch labels:  80%|████████  | 2405/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2406/3000, vae_loss=383.1607]
Training: VAE decoder with masked batch labels:  80%|████████  | 2406/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2407/3000, vae_loss=386.9489]
Training: VAE decoder with masked batch labels:  80%|████████  | 2407/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2408/3000, vae_loss=381.9246]
Training: VAE decoder with masked batch labels:  80%|████████  | 2408/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2409/3000, vae_loss=384.1188]
Training: VAE decoder with masked batch labels:  80%|████████  | 2409/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2410/3000, vae_loss=386.6631]
Training: VAE decoder with masked batch labels:  80%|████████  | 2410/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2411/3000, vae_loss=388.9828]
Training: VAE decoder with masked batch labels:  80%|████████  | 2411/3000 [00:29<00:07, 79.21it/s, cycle_loss=0.0000, epoch=2412/3000, vae_loss=386.4911]
Training: VAE decoder with masked batch labels:  80%|████████  | 2412/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2412/3000, vae_loss=386.4911]
Training: VAE decoder with masked batch labels:  80%|████████  | 2412/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2413/3000, vae_loss=386.9232]
Training: VAE decoder with masked batch labels:  80%|████████  | 2413/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2414/3000, vae_loss=393.3601]
Training: VAE decoder with masked batch labels:  80%|████████  | 2414/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2415/3000, vae_loss=384.9130]
Training: VAE decoder with masked batch labels:  80%|████████  | 2415/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2416/3000, vae_loss=379.7962]
Training: VAE decoder with masked batch labels:  81%|████████  | 2416/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2417/3000, vae_loss=389.9485]
Training: VAE decoder with masked batch labels:  81%|████████  | 2417/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2418/3000, vae_loss=377.8890]
Training: VAE decoder with masked batch labels:  81%|████████  | 2418/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2419/3000, vae_loss=388.5804]
Training: VAE decoder with masked batch labels:  81%|████████  | 2419/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2420/3000, vae_loss=380.2970]
Training: VAE decoder with masked batch labels:  81%|████████  | 2420/3000 [00:29<00:07, 79.89it/s, cycle_loss=0.0000, epoch=2421/3000, vae_loss=389.2557]
Training: VAE decoder with masked batch labels:  81%|████████  | 2421/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2421/3000, vae_loss=389.2557]
Training: VAE decoder with masked batch labels:  81%|████████  | 2421/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2422/3000, vae_loss=393.2639]
Training: VAE decoder with masked batch labels:  81%|████████  | 2422/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2423/3000, vae_loss=386.2107]
Training: VAE decoder with masked batch labels:  81%|████████  | 2423/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2424/3000, vae_loss=388.3183]
Training: VAE decoder with masked batch labels:  81%|████████  | 2424/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2425/3000, vae_loss=381.2198]
Training: VAE decoder with masked batch labels:  81%|████████  | 2425/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2426/3000, vae_loss=384.3805]
Training: VAE decoder with masked batch labels:  81%|████████  | 2426/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2427/3000, vae_loss=387.8704]
Training: VAE decoder with masked batch labels:  81%|████████  | 2427/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2428/3000, vae_loss=389.2419]
Training: VAE decoder with masked batch labels:  81%|████████  | 2428/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2429/3000, vae_loss=384.3914]
Training: VAE decoder with masked batch labels:  81%|████████  | 2429/3000 [00:29<00:07, 80.68it/s, cycle_loss=0.0000, epoch=2430/3000, vae_loss=384.8477]
Training: VAE decoder with masked batch labels:  81%|████████  | 2430/3000 [00:29<00:07, 80.92it/s, cycle_loss=0.0000, epoch=2430/3000, vae_loss=384.8477]
Training: VAE decoder with masked batch labels:  81%|████████  | 2430/3000 [00:29<00:07, 80.92it/s, cycle_loss=0.0000, epoch=2431/3000, vae_loss=387.2881]
Training: VAE decoder with masked batch labels:  81%|████████  | 2431/3000 [00:29<00:07, 80.92it/s, cycle_loss=0.0000, epoch=2432/3000, vae_loss=384.4920]
Training: VAE decoder with masked batch labels:  81%|████████  | 2432/3000 [00:29<00:07, 80.92it/s, cycle_loss=0.0000, epoch=2433/3000, vae_loss=387.5654]
Training: VAE decoder with masked batch labels:  81%|████████  | 2433/3000 [00:29<00:07, 80.92it/s, cycle_loss=0.0000, epoch=2434/3000, vae_loss=376.5581]
Training: VAE decoder with masked batch labels:  81%|████████  | 2434/3000 [00:29<00:06, 80.92it/s, cycle_loss=0.0000, epoch=2435/3000, vae_loss=379.5317]
Training: VAE decoder with masked batch labels:  81%|████████  | 2435/3000 [00:29<00:06, 80.92it/s, cycle_loss=0.0000, epoch=2436/3000, vae_loss=394.7442]
Training: VAE decoder with masked batch labels:  81%|████████  | 2436/3000 [00:29<00:06, 80.92it/s, cycle_loss=0.0000, epoch=2437/3000, vae_loss=386.4428]
Training: VAE decoder with masked batch labels:  81%|████████  | 2437/3000 [00:29<00:06, 80.92it/s, cycle_loss=0.0000, epoch=2438/3000, vae_loss=386.1804]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2438/3000 [00:29<00:06, 80.92it/s, cycle_loss=0.0000, epoch=2439/3000, vae_loss=382.8878]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2439/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2439/3000, vae_loss=382.8878]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2439/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2440/3000, vae_loss=390.0245]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2440/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2441/3000, vae_loss=381.0728]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2441/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2442/3000, vae_loss=388.5061]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2442/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2443/3000, vae_loss=384.9859]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2443/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2444/3000, vae_loss=385.1726]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 2444/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2445/3000, vae_loss=383.2156]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2445/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2446/3000, vae_loss=388.2110]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2446/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2447/3000, vae_loss=386.5837]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2447/3000 [00:29<00:06, 81.88it/s, cycle_loss=0.0000, epoch=2448/3000, vae_loss=384.1976]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2448/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2448/3000, vae_loss=384.1976]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2448/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2449/3000, vae_loss=376.0833]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2449/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2450/3000, vae_loss=383.6934]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2450/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2451/3000, vae_loss=386.9926]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2451/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2452/3000, vae_loss=381.4757]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2452/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2453/3000, vae_loss=385.1969]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2453/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2454/3000, vae_loss=389.9114]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2454/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2455/3000, vae_loss=385.7584]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2455/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2456/3000, vae_loss=381.2352]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2456/3000 [00:29<00:06, 81.95it/s, cycle_loss=0.0000, epoch=2457/3000, vae_loss=379.9523]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2457/3000 [00:29<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2457/3000, vae_loss=379.9523]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2457/3000 [00:29<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2458/3000, vae_loss=387.1875]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2458/3000 [00:29<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2459/3000, vae_loss=381.1611]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2459/3000 [00:30<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2460/3000, vae_loss=385.2792]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2460/3000 [00:30<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2461/3000, vae_loss=391.8680]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2461/3000 [00:30<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2462/3000, vae_loss=383.2410]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2462/3000 [00:30<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2463/3000, vae_loss=391.6583]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2463/3000 [00:30<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2464/3000, vae_loss=386.1042]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2464/3000 [00:30<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2465/3000, vae_loss=384.2576]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2465/3000 [00:30<00:06, 81.06it/s, cycle_loss=0.0000, epoch=2466/3000, vae_loss=380.3737]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2466/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2466/3000, vae_loss=380.3737]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2466/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2467/3000, vae_loss=380.0424]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2467/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2468/3000, vae_loss=379.7269]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2468/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2469/3000, vae_loss=380.8721]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2469/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2470/3000, vae_loss=385.9438]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2470/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2471/3000, vae_loss=380.2940]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2471/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2472/3000, vae_loss=385.3420]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2472/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2473/3000, vae_loss=378.9647]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2473/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2474/3000, vae_loss=384.1487]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 2474/3000 [00:30<00:06, 82.19it/s, cycle_loss=0.0000, epoch=2475/3000, vae_loss=384.6133]
Training: VAE decoder with masked batch labels:  82%|████████▎ | 2475/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2475/3000, vae_loss=384.6133]
Training: VAE decoder with masked batch labels:  82%|████████▎ | 2475/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2476/3000, vae_loss=386.4931]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2476/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2477/3000, vae_loss=376.5421]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2477/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2478/3000, vae_loss=386.5439]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2478/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2479/3000, vae_loss=383.9335]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2479/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2480/3000, vae_loss=384.7581]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2480/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2481/3000, vae_loss=385.1065]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2481/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2482/3000, vae_loss=384.8682]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2482/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2483/3000, vae_loss=388.0831]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2483/3000 [00:30<00:06, 82.26it/s, cycle_loss=0.0000, epoch=2484/3000, vae_loss=382.3638]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2484/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2484/3000, vae_loss=382.3638]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2484/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2485/3000, vae_loss=383.0261]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2485/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2486/3000, vae_loss=383.7719]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2486/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2487/3000, vae_loss=382.0540]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2487/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2488/3000, vae_loss=387.0294]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2488/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2489/3000, vae_loss=384.4529]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2489/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2490/3000, vae_loss=382.4989]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2490/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2491/3000, vae_loss=389.9572]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2491/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2492/3000, vae_loss=379.6724]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2492/3000 [00:30<00:06, 82.90it/s, cycle_loss=0.0000, epoch=2493/3000, vae_loss=386.5701]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2493/3000 [00:30<00:06, 83.53it/s, cycle_loss=0.0000, epoch=2493/3000, vae_loss=386.5701]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2493/3000 [00:30<00:06, 83.53it/s, cycle_loss=0.0000, epoch=2494/3000, vae_loss=383.9716]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2494/3000 [00:30<00:06, 83.53it/s, cycle_loss=0.0000, epoch=2495/3000, vae_loss=388.5920]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2495/3000 [00:30<00:06, 83.53it/s, cycle_loss=0.0000, epoch=2496/3000, vae_loss=386.6882]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2496/3000 [00:30<00:06, 83.53it/s, cycle_loss=0.0000, epoch=2497/3000, vae_loss=385.9599]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2497/3000 [00:30<00:06, 83.53it/s, cycle_loss=0.0000, epoch=2498/3000, vae_loss=384.8328]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2498/3000 [00:30<00:06, 83.53it/s, cycle_loss=0.0000, epoch=2499/3000, vae_loss=380.7788]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2499/3000 [00:30<00:05, 83.53it/s, cycle_loss=0.0000, epoch=2500/3000, vae_loss=388.3196]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2500/3000 [00:30<00:05, 83.53it/s, cycle_loss=0.0000, epoch=2501/3000, vae_loss=381.9299]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2501/3000 [00:30<00:05, 83.53it/s, cycle_loss=0.0000, epoch=2502/3000, vae_loss=381.5862]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2502/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2502/3000, vae_loss=381.5862]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2502/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2503/3000, vae_loss=384.1028]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2503/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2504/3000, vae_loss=378.7389]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 2504/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2505/3000, vae_loss=382.3755]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2505/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2506/3000, vae_loss=385.5745]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2506/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2507/3000, vae_loss=384.4704]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2507/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2508/3000, vae_loss=379.2113]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2508/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2509/3000, vae_loss=388.0246]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2509/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2510/3000, vae_loss=382.1794]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2510/3000 [00:30<00:05, 84.00it/s, cycle_loss=0.0000, epoch=2511/3000, vae_loss=379.9103]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2511/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2511/3000, vae_loss=379.9103]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2511/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2512/3000, vae_loss=388.8547]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 2512/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2513/3000, vae_loss=387.0816]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2513/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2514/3000, vae_loss=381.4706]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2514/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2515/3000, vae_loss=379.9232]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2515/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2516/3000, vae_loss=386.2330]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2516/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2517/3000, vae_loss=378.7749]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2517/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2518/3000, vae_loss=387.3864]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2518/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2519/3000, vae_loss=379.0616]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2519/3000 [00:30<00:05, 84.47it/s, cycle_loss=0.0000, epoch=2520/3000, vae_loss=387.1562]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2520/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2520/3000, vae_loss=387.1562]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2520/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2521/3000, vae_loss=382.8353]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2521/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2522/3000, vae_loss=388.4373]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2522/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2523/3000, vae_loss=379.4978]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2523/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2524/3000, vae_loss=382.6556]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2524/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2525/3000, vae_loss=376.0609]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2525/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2526/3000, vae_loss=381.7596]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2526/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2527/3000, vae_loss=386.0152]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2527/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2528/3000, vae_loss=382.7921]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2528/3000 [00:30<00:05, 84.89it/s, cycle_loss=0.0000, epoch=2529/3000, vae_loss=386.1871]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2529/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2529/3000, vae_loss=386.1871]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2529/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2530/3000, vae_loss=390.7834]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2530/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2531/3000, vae_loss=381.2968]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2531/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2532/3000, vae_loss=383.8355]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2532/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2533/3000, vae_loss=383.4776]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2533/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2534/3000, vae_loss=379.8483]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2534/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2535/3000, vae_loss=382.9231]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 2535/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2536/3000, vae_loss=382.7565]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2536/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2537/3000, vae_loss=386.2179]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2537/3000 [00:30<00:05, 84.97it/s, cycle_loss=0.0000, epoch=2538/3000, vae_loss=382.0482]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2538/3000 [00:30<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2538/3000, vae_loss=382.0482]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2538/3000 [00:30<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2539/3000, vae_loss=383.3047]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2539/3000 [00:30<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2540/3000, vae_loss=384.6766]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2540/3000 [00:30<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2541/3000, vae_loss=386.6965]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2541/3000 [00:30<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2542/3000, vae_loss=387.0436]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2542/3000 [00:30<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2543/3000, vae_loss=387.5487]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2543/3000 [00:30<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2544/3000, vae_loss=380.2611]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2544/3000 [00:31<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2545/3000, vae_loss=380.3723]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2545/3000 [00:31<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2546/3000, vae_loss=385.7350]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2546/3000 [00:31<00:05, 85.40it/s, cycle_loss=0.0000, epoch=2547/3000, vae_loss=384.3752]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2547/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2547/3000, vae_loss=384.3752]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2547/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2548/3000, vae_loss=382.4048]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2548/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2549/3000, vae_loss=377.5325]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 2549/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2550/3000, vae_loss=380.8110]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2550/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2551/3000, vae_loss=383.9812]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2551/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2552/3000, vae_loss=385.3710]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2552/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2553/3000, vae_loss=384.0071]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2553/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2554/3000, vae_loss=382.5918]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2554/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2555/3000, vae_loss=397.0934]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2555/3000 [00:31<00:05, 85.33it/s, cycle_loss=0.0000, epoch=2556/3000, vae_loss=379.1924]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2556/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2556/3000, vae_loss=379.1924]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2556/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2557/3000, vae_loss=378.9001]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2557/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2558/3000, vae_loss=382.5505]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2558/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2559/3000, vae_loss=381.1668]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2559/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2560/3000, vae_loss=382.0227]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2560/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2561/3000, vae_loss=378.4511]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2561/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2562/3000, vae_loss=378.0658]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2562/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2563/3000, vae_loss=382.1577]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2563/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2564/3000, vae_loss=386.3787]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 2564/3000 [00:31<00:05, 85.29it/s, cycle_loss=0.0000, epoch=2565/3000, vae_loss=383.9713]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2565/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2565/3000, vae_loss=383.9713]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2565/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2566/3000, vae_loss=383.1651]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2566/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2567/3000, vae_loss=378.5365]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2567/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2568/3000, vae_loss=382.0098]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2568/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2569/3000, vae_loss=381.2817]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2569/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2570/3000, vae_loss=385.9367]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2570/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2571/3000, vae_loss=382.3538]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2571/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2572/3000, vae_loss=376.2033]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2572/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2573/3000, vae_loss=384.7998]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2573/3000 [00:31<00:05, 85.28it/s, cycle_loss=0.0000, epoch=2574/3000, vae_loss=380.7300]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2574/3000 [00:31<00:05, 84.99it/s, cycle_loss=0.0000, epoch=2574/3000, vae_loss=380.7300]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2574/3000 [00:31<00:05, 84.99it/s, cycle_loss=0.0000, epoch=2575/3000, vae_loss=381.5393]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2575/3000 [00:31<00:05, 84.99it/s, cycle_loss=0.0000, epoch=2576/3000, vae_loss=384.4673]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2576/3000 [00:31<00:04, 84.99it/s, cycle_loss=0.0000, epoch=2577/3000, vae_loss=387.2590]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2577/3000 [00:31<00:04, 84.99it/s, cycle_loss=0.0000, epoch=2578/3000, vae_loss=385.1813]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2578/3000 [00:31<00:04, 84.99it/s, cycle_loss=0.0000, epoch=2579/3000, vae_loss=379.2205]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2579/3000 [00:31<00:04, 84.99it/s, cycle_loss=0.0000, epoch=2580/3000, vae_loss=377.9590]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2580/3000 [00:31<00:04, 84.99it/s, cycle_loss=0.0000, epoch=2581/3000, vae_loss=388.1349]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2581/3000 [00:31<00:04, 84.99it/s, cycle_loss=0.0000, epoch=2582/3000, vae_loss=377.2111]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2582/3000 [00:31<00:04, 84.99it/s, cycle_loss=0.0000, epoch=2583/3000, vae_loss=377.6787]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2583/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2583/3000, vae_loss=377.6787]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2583/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2584/3000, vae_loss=383.5918]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2584/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2585/3000, vae_loss=385.9097]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2585/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2586/3000, vae_loss=387.4890]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2586/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2587/3000, vae_loss=382.9540]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 2587/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2588/3000, vae_loss=383.5486]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2588/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2589/3000, vae_loss=380.9808]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2589/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2590/3000, vae_loss=380.4474]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2590/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2591/3000, vae_loss=379.3445]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2591/3000 [00:31<00:04, 85.06it/s, cycle_loss=0.0000, epoch=2592/3000, vae_loss=385.5299]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2592/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2592/3000, vae_loss=385.5299]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2592/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2593/3000, vae_loss=383.8152]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2593/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2594/3000, vae_loss=384.2173]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2594/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2595/3000, vae_loss=388.9323]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 2595/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2596/3000, vae_loss=385.0787]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2596/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2597/3000, vae_loss=384.5126]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2597/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2598/3000, vae_loss=379.6163]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2598/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2599/3000, vae_loss=388.7927]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2599/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2600/3000, vae_loss=379.8781]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2600/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2601/3000, vae_loss=374.6458]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2601/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2601/3000, vae_loss=374.6458]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2601/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2602/3000, vae_loss=380.2664]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2602/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2603/3000, vae_loss=384.9118]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2603/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2604/3000, vae_loss=378.1642]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2604/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2605/3000, vae_loss=379.7153]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2605/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2606/3000, vae_loss=380.9934]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2606/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2607/3000, vae_loss=381.7294]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2607/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2608/3000, vae_loss=378.0615]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2608/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2609/3000, vae_loss=381.3306]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2609/3000 [00:31<00:04, 85.20it/s, cycle_loss=0.0000, epoch=2610/3000, vae_loss=381.7555]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2610/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2610/3000, vae_loss=381.7555]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2610/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2611/3000, vae_loss=378.7730]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2611/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2612/3000, vae_loss=379.2722]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2612/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2613/3000, vae_loss=385.7928]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2613/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2614/3000, vae_loss=378.7317]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2614/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2615/3000, vae_loss=376.9934]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2615/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2616/3000, vae_loss=386.3846]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2616/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2617/3000, vae_loss=376.4862]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2617/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2618/3000, vae_loss=381.7950]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2618/3000 [00:31<00:04, 85.45it/s, cycle_loss=0.0000, epoch=2619/3000, vae_loss=374.5016]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2619/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2619/3000, vae_loss=374.5016]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2619/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2620/3000, vae_loss=377.5291]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2620/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2621/3000, vae_loss=380.0407]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2621/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2622/3000, vae_loss=377.8732]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2622/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2623/3000, vae_loss=381.5191]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2623/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2624/3000, vae_loss=380.7386]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 2624/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2625/3000, vae_loss=385.1630]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2625/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2626/3000, vae_loss=387.6640]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2626/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2627/3000, vae_loss=376.4900]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2627/3000 [00:31<00:04, 85.38it/s, cycle_loss=0.0000, epoch=2628/3000, vae_loss=381.6208]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2628/3000 [00:31<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2628/3000, vae_loss=381.6208]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2628/3000 [00:31<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2629/3000, vae_loss=379.4104]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2629/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2630/3000, vae_loss=381.6983]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2630/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2631/3000, vae_loss=376.7952]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2631/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2632/3000, vae_loss=379.1419]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2632/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2633/3000, vae_loss=385.8099]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2633/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2634/3000, vae_loss=382.1012]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2634/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2635/3000, vae_loss=376.7552]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2635/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2636/3000, vae_loss=374.4197]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2636/3000 [00:32<00:04, 85.32it/s, cycle_loss=0.0000, epoch=2637/3000, vae_loss=382.5180]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2637/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2637/3000, vae_loss=382.5180]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2637/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2638/3000, vae_loss=380.0955]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2638/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2639/3000, vae_loss=381.6051]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2639/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2640/3000, vae_loss=371.5280]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2640/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2641/3000, vae_loss=386.8029]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2641/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2642/3000, vae_loss=381.2407]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2642/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2643/3000, vae_loss=383.1230]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2643/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2644/3000, vae_loss=382.7695]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2644/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2645/3000, vae_loss=377.5279]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2645/3000 [00:32<00:04, 85.36it/s, cycle_loss=0.0000, epoch=2646/3000, vae_loss=380.0601]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2646/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2646/3000, vae_loss=380.0601]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2646/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2647/3000, vae_loss=378.6947]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2647/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2648/3000, vae_loss=381.6199]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2648/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2649/3000, vae_loss=379.1971]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2649/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2650/3000, vae_loss=382.6133]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2650/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2651/3000, vae_loss=379.6191]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2651/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2652/3000, vae_loss=384.0606]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2652/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2653/3000, vae_loss=375.6807]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2653/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2654/3000, vae_loss=377.4360]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2654/3000 [00:32<00:04, 84.86it/s, cycle_loss=0.0000, epoch=2655/3000, vae_loss=382.7648]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2655/3000 [00:32<00:04, 84.78it/s, cycle_loss=0.0000, epoch=2655/3000, vae_loss=382.7648]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 2655/3000 [00:32<00:04, 84.78it/s, cycle_loss=0.0000, epoch=2656/3000, vae_loss=382.1930]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 2656/3000 [00:32<00:04, 84.78it/s, cycle_loss=0.0000, epoch=2657/3000, vae_loss=381.1496]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 2657/3000 [00:32<00:04, 84.78it/s, cycle_loss=0.0000, epoch=2658/3000, vae_loss=379.4429]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 2658/3000 [00:32<00:04, 84.78it/s, cycle_loss=0.0000, epoch=2659/3000, vae_loss=378.6111]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 2659/3000 [00:32<00:04, 84.78it/s, cycle_loss=0.0000, epoch=2660/3000, vae_loss=378.7690]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 2660/3000 [00:32<00:04, 84.78it/s, cycle_loss=0.0000, epoch=2661/3000, vae_loss=382.8866]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 2661/3000 [00:32<00:03, 84.78it/s, cycle_loss=0.0000, epoch=2662/3000, vae_loss=381.5706]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 2662/3000 [00:32<00:03, 84.78it/s, cycle_loss=0.0000, epoch=2663/3000, vae_loss=381.8311]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2663/3000 [00:32<00:03, 84.78it/s, cycle_loss=0.0000, epoch=2664/3000, vae_loss=381.0561]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2664/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2664/3000, vae_loss=381.0561]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2664/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2665/3000, vae_loss=378.6316]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2665/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2666/3000, vae_loss=376.7065]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2666/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2667/3000, vae_loss=381.6251]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2667/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2668/3000, vae_loss=379.1589]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2668/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2669/3000, vae_loss=382.5210]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2669/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2670/3000, vae_loss=381.3193]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2670/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2671/3000, vae_loss=380.0361]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2671/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2672/3000, vae_loss=377.6869]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2672/3000 [00:32<00:03, 84.37it/s, cycle_loss=0.0000, epoch=2673/3000, vae_loss=371.5109]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2673/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2673/3000, vae_loss=371.5109]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2673/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2674/3000, vae_loss=381.8338]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2674/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2675/3000, vae_loss=374.3227]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2675/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2676/3000, vae_loss=382.6887]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2676/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2677/3000, vae_loss=380.5383]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2677/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2678/3000, vae_loss=378.0755]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2678/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2679/3000, vae_loss=376.6627]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2679/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2680/3000, vae_loss=378.6179]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2680/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2681/3000, vae_loss=378.3049]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2681/3000 [00:32<00:03, 84.68it/s, cycle_loss=0.0000, epoch=2682/3000, vae_loss=377.9110]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2682/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2682/3000, vae_loss=377.9110]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2682/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2683/3000, vae_loss=380.8925]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2683/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2684/3000, vae_loss=374.4346]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 2684/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2685/3000, vae_loss=378.4291]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2685/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2686/3000, vae_loss=381.1675]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2686/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2687/3000, vae_loss=375.4859]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2687/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2688/3000, vae_loss=385.4125]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2688/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2689/3000, vae_loss=374.9634]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2689/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2690/3000, vae_loss=384.9413]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2690/3000 [00:32<00:03, 85.10it/s, cycle_loss=0.0000, epoch=2691/3000, vae_loss=379.1096]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2691/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2691/3000, vae_loss=379.1096]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2691/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2692/3000, vae_loss=382.1737]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2692/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2693/3000, vae_loss=380.8191]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2693/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2694/3000, vae_loss=382.5388]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2694/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2695/3000, vae_loss=384.5924]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2695/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2696/3000, vae_loss=384.9319]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2696/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2697/3000, vae_loss=384.8085]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2697/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2698/3000, vae_loss=379.8260]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2698/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2699/3000, vae_loss=371.4114]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 2699/3000 [00:32<00:03, 84.30it/s, cycle_loss=0.0000, epoch=2700/3000, vae_loss=377.3386]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2700/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2700/3000, vae_loss=377.3386]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2700/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2701/3000, vae_loss=385.1343]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2701/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2702/3000, vae_loss=380.6381]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2702/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2703/3000, vae_loss=379.0274]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2703/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2704/3000, vae_loss=375.8040]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2704/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2705/3000, vae_loss=372.9221]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2705/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2706/3000, vae_loss=375.5478]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2706/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2707/3000, vae_loss=383.1343]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2707/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2708/3000, vae_loss=379.3413]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2708/3000 [00:32<00:03, 82.76it/s, cycle_loss=0.0000, epoch=2709/3000, vae_loss=373.1288]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2709/3000 [00:32<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2709/3000, vae_loss=373.1288]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2709/3000 [00:32<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2710/3000, vae_loss=376.6200]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2710/3000 [00:32<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2711/3000, vae_loss=377.1570]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2711/3000 [00:32<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2712/3000, vae_loss=380.2898]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2712/3000 [00:32<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2713/3000, vae_loss=378.1738]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2713/3000 [00:33<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2714/3000, vae_loss=372.1217]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2714/3000 [00:33<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2715/3000, vae_loss=377.7188]
Training: VAE decoder with masked batch labels:  90%|█████████ | 2715/3000 [00:33<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2716/3000, vae_loss=375.6114]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2716/3000 [00:33<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2717/3000, vae_loss=383.1060]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2717/3000 [00:33<00:03, 82.50it/s, cycle_loss=0.0000, epoch=2718/3000, vae_loss=379.4445]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2718/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2718/3000, vae_loss=379.4445]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2718/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2719/3000, vae_loss=382.2990]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2719/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2720/3000, vae_loss=375.6253]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2720/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2721/3000, vae_loss=389.1266]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2721/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2722/3000, vae_loss=376.3535]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2722/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2723/3000, vae_loss=381.7406]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2723/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2724/3000, vae_loss=378.1119]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2724/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2725/3000, vae_loss=383.0782]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2725/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2726/3000, vae_loss=381.2904]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2726/3000 [00:33<00:03, 83.44it/s, cycle_loss=0.0000, epoch=2727/3000, vae_loss=377.8920]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2727/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2727/3000, vae_loss=377.8920]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2727/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2728/3000, vae_loss=379.2557]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2728/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2729/3000, vae_loss=382.7027]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2729/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2730/3000, vae_loss=376.5664]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2730/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2731/3000, vae_loss=375.5715]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2731/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2732/3000, vae_loss=382.8699]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2732/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2733/3000, vae_loss=380.8835]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2733/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2734/3000, vae_loss=381.3121]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2734/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2735/3000, vae_loss=381.3116]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2735/3000 [00:33<00:03, 84.03it/s, cycle_loss=0.0000, epoch=2736/3000, vae_loss=375.9413]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2736/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2736/3000, vae_loss=375.9413]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2736/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2737/3000, vae_loss=380.7080]
Training: VAE decoder with masked batch labels:  91%|█████████ | 2737/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2738/3000, vae_loss=377.6467]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 2738/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2739/3000, vae_loss=377.1862]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 2739/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2740/3000, vae_loss=374.9684]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 2740/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2741/3000, vae_loss=378.2046]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 2741/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2742/3000, vae_loss=379.8396]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 2742/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2743/3000, vae_loss=383.3284]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 2743/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2744/3000, vae_loss=382.9215]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 2744/3000 [00:33<00:03, 84.34it/s, cycle_loss=0.0000, epoch=2745/3000, vae_loss=378.7979]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2745/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2745/3000, vae_loss=378.7979]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2745/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2746/3000, vae_loss=371.9774]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2746/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2747/3000, vae_loss=380.2032]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2747/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2748/3000, vae_loss=377.6035]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2748/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2749/3000, vae_loss=374.2093]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2749/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2750/3000, vae_loss=376.8972]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2750/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2751/3000, vae_loss=372.3566]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2751/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2752/3000, vae_loss=382.7018]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2752/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2753/3000, vae_loss=378.2715]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2753/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2754/3000, vae_loss=382.7344]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2754/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2754/3000, vae_loss=382.7344]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2754/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2755/3000, vae_loss=371.3695]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2755/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2756/3000, vae_loss=380.0642]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2756/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2757/3000, vae_loss=377.5929]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2757/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2758/3000, vae_loss=376.1492]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2758/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2759/3000, vae_loss=378.4762]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2759/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2760/3000, vae_loss=370.9850]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2760/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2761/3000, vae_loss=381.6666]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2761/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2762/3000, vae_loss=377.0969]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2762/3000 [00:33<00:02, 85.12it/s, cycle_loss=0.0000, epoch=2763/3000, vae_loss=371.7000]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2763/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2763/3000, vae_loss=371.7000]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2763/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2764/3000, vae_loss=378.7560]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2764/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2765/3000, vae_loss=375.2095]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2765/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2766/3000, vae_loss=378.0281]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2766/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2767/3000, vae_loss=378.5359]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2767/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2768/3000, vae_loss=377.1903]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2768/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2769/3000, vae_loss=377.4056]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2769/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2770/3000, vae_loss=376.4889]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2770/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2771/3000, vae_loss=372.0943]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2771/3000 [00:33<00:02, 85.42it/s, cycle_loss=0.0000, epoch=2772/3000, vae_loss=382.1619]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2772/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2772/3000, vae_loss=382.1619]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2772/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2773/3000, vae_loss=377.6124]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2773/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2774/3000, vae_loss=373.7865]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 2774/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2775/3000, vae_loss=378.1905]
Training: VAE decoder with masked batch labels:  92%|█████████▎| 2775/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2776/3000, vae_loss=375.3547]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2776/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2777/3000, vae_loss=378.1990]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2777/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2778/3000, vae_loss=383.4534]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2778/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2779/3000, vae_loss=380.6663]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2779/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2780/3000, vae_loss=381.0712]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2780/3000 [00:33<00:02, 85.55it/s, cycle_loss=0.0000, epoch=2781/3000, vae_loss=376.5156]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2781/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2781/3000, vae_loss=376.5156]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2781/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2782/3000, vae_loss=376.2695]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2782/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2783/3000, vae_loss=372.0746]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2783/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2784/3000, vae_loss=374.4713]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2784/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2785/3000, vae_loss=373.9573]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2785/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2786/3000, vae_loss=372.3852]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2786/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2787/3000, vae_loss=370.6040]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2787/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2788/3000, vae_loss=380.3268]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2788/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2789/3000, vae_loss=378.1081]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2789/3000 [00:33<00:02, 85.77it/s, cycle_loss=0.0000, epoch=2790/3000, vae_loss=379.9468]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2790/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2790/3000, vae_loss=379.9468]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2790/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2791/3000, vae_loss=372.5903]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2791/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2792/3000, vae_loss=376.5756]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2792/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2793/3000, vae_loss=374.9957]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2793/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2794/3000, vae_loss=372.9253]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2794/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2795/3000, vae_loss=388.0476]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2795/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2796/3000, vae_loss=375.6127]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2796/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2797/3000, vae_loss=375.8005]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2797/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2798/3000, vae_loss=373.1111]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2798/3000 [00:33<00:02, 85.65it/s, cycle_loss=0.0000, epoch=2799/3000, vae_loss=372.3959]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2799/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2799/3000, vae_loss=372.3959]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2799/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2800/3000, vae_loss=372.9511]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2800/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2801/3000, vae_loss=369.1442]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2801/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2802/3000, vae_loss=376.1726]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2802/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2803/3000, vae_loss=373.8321]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2803/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2804/3000, vae_loss=381.2018]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 2804/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2805/3000, vae_loss=381.0274]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2805/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2806/3000, vae_loss=377.1564]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2806/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2807/3000, vae_loss=377.6139]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2807/3000 [00:34<00:02, 85.86it/s, cycle_loss=0.0000, epoch=2808/3000, vae_loss=379.2211]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2808/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2808/3000, vae_loss=379.2211]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2808/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2809/3000, vae_loss=376.0344]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2809/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2810/3000, vae_loss=377.2162]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2810/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2811/3000, vae_loss=370.5493]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2811/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2812/3000, vae_loss=378.2620]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 2812/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2813/3000, vae_loss=379.4324]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2813/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2814/3000, vae_loss=377.8708]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2814/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2815/3000, vae_loss=374.7614]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2815/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2816/3000, vae_loss=371.5961]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2816/3000 [00:34<00:02, 85.84it/s, cycle_loss=0.0000, epoch=2817/3000, vae_loss=379.1586]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2817/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2817/3000, vae_loss=379.1586]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2817/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2818/3000, vae_loss=379.8916]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2818/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2819/3000, vae_loss=376.1631]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2819/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2820/3000, vae_loss=375.9064]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2820/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2821/3000, vae_loss=378.2170]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2821/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2822/3000, vae_loss=380.6180]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2822/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2823/3000, vae_loss=380.7092]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2823/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2824/3000, vae_loss=377.9820]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2824/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2825/3000, vae_loss=377.8704]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2825/3000 [00:34<00:02, 85.35it/s, cycle_loss=0.0000, epoch=2826/3000, vae_loss=375.7154]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2826/3000 [00:34<00:02, 85.32it/s, cycle_loss=0.0000, epoch=2826/3000, vae_loss=375.7154]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2826/3000 [00:34<00:02, 85.32it/s, cycle_loss=0.0000, epoch=2827/3000, vae_loss=376.9070]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2827/3000 [00:34<00:02, 85.32it/s, cycle_loss=0.0000, epoch=2828/3000, vae_loss=374.5060]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2828/3000 [00:34<00:02, 85.32it/s, cycle_loss=0.0000, epoch=2829/3000, vae_loss=377.7031]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2829/3000 [00:34<00:02, 85.32it/s, cycle_loss=0.0000, epoch=2830/3000, vae_loss=371.0236]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2830/3000 [00:34<00:01, 85.32it/s, cycle_loss=0.0000, epoch=2831/3000, vae_loss=375.2748]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2831/3000 [00:34<00:01, 85.32it/s, cycle_loss=0.0000, epoch=2832/3000, vae_loss=376.6848]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2832/3000 [00:34<00:01, 85.32it/s, cycle_loss=0.0000, epoch=2833/3000, vae_loss=371.0264]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2833/3000 [00:34<00:01, 85.32it/s, cycle_loss=0.0000, epoch=2834/3000, vae_loss=374.6175]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2834/3000 [00:34<00:01, 85.32it/s, cycle_loss=0.0000, epoch=2835/3000, vae_loss=379.0784]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2835/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2835/3000, vae_loss=379.0784]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 2835/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2836/3000, vae_loss=374.1393]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2836/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2837/3000, vae_loss=380.7010]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2837/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2838/3000, vae_loss=375.6791]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2838/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2839/3000, vae_loss=374.8982]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2839/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2840/3000, vae_loss=377.2193]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2840/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2841/3000, vae_loss=381.1963]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2841/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2842/3000, vae_loss=376.5992]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2842/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2843/3000, vae_loss=377.8775]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2843/3000 [00:34<00:01, 85.25it/s, cycle_loss=0.0000, epoch=2844/3000, vae_loss=378.9537]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2844/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2844/3000, vae_loss=378.9537]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2844/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2845/3000, vae_loss=379.0195]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2845/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2846/3000, vae_loss=377.9988]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2846/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2847/3000, vae_loss=376.2027]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2847/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2848/3000, vae_loss=379.0983]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2848/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2849/3000, vae_loss=370.2674]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 2849/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2850/3000, vae_loss=378.7664]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2850/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2851/3000, vae_loss=376.6350]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2851/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2852/3000, vae_loss=378.0061]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2852/3000 [00:34<00:01, 85.05it/s, cycle_loss=0.0000, epoch=2853/3000, vae_loss=374.2935]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2853/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2853/3000, vae_loss=374.2935]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2853/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2854/3000, vae_loss=373.0420]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2854/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2855/3000, vae_loss=371.2941]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2855/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2856/3000, vae_loss=367.0808]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2856/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2857/3000, vae_loss=377.0148]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2857/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2858/3000, vae_loss=370.7036]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2858/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2859/3000, vae_loss=376.9774]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2859/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2860/3000, vae_loss=377.3613]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2860/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2861/3000, vae_loss=375.5225]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2861/3000 [00:34<00:01, 85.90it/s, cycle_loss=0.0000, epoch=2862/3000, vae_loss=374.7241]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2862/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2862/3000, vae_loss=374.7241]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2862/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2863/3000, vae_loss=371.6566]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2863/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2864/3000, vae_loss=378.5068]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 2864/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2865/3000, vae_loss=380.9021]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2865/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2866/3000, vae_loss=373.4026]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2866/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2867/3000, vae_loss=379.1731]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2867/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2868/3000, vae_loss=378.6022]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2868/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2869/3000, vae_loss=372.1689]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2869/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2870/3000, vae_loss=377.2330]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2870/3000 [00:34<00:01, 85.57it/s, cycle_loss=0.0000, epoch=2871/3000, vae_loss=369.4992]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2871/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2871/3000, vae_loss=369.4992]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2871/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2872/3000, vae_loss=376.1279]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2872/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2873/3000, vae_loss=375.5769]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2873/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2874/3000, vae_loss=375.2421]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2874/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2875/3000, vae_loss=382.7698]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2875/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2876/3000, vae_loss=374.2929]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2876/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2877/3000, vae_loss=379.2904]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2877/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2878/3000, vae_loss=377.3014]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2878/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2879/3000, vae_loss=380.0234]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2879/3000 [00:34<00:01, 84.99it/s, cycle_loss=0.0000, epoch=2880/3000, vae_loss=375.3911]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2880/3000 [00:34<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2880/3000, vae_loss=375.3911]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2880/3000 [00:34<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2881/3000, vae_loss=373.0065]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2881/3000 [00:34<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2882/3000, vae_loss=379.9680]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2882/3000 [00:34<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2883/3000, vae_loss=375.4551]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2883/3000 [00:34<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2884/3000, vae_loss=377.9681]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2884/3000 [00:35<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2885/3000, vae_loss=371.8438]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2885/3000 [00:35<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2886/3000, vae_loss=377.9958]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2886/3000 [00:35<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2887/3000, vae_loss=373.1478]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 2887/3000 [00:35<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2888/3000, vae_loss=374.5018]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2888/3000 [00:35<00:01, 85.42it/s, cycle_loss=0.0000, epoch=2889/3000, vae_loss=372.7217]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2889/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2889/3000, vae_loss=372.7217]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2889/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2890/3000, vae_loss=377.1946]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2890/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2891/3000, vae_loss=374.1996]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2891/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2892/3000, vae_loss=375.5774]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2892/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2893/3000, vae_loss=374.7337]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2893/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2894/3000, vae_loss=373.9345]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2894/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2895/3000, vae_loss=369.2888]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 2895/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2896/3000, vae_loss=376.4956]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2896/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2897/3000, vae_loss=373.3384]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2897/3000 [00:35<00:01, 85.60it/s, cycle_loss=0.0000, epoch=2898/3000, vae_loss=368.0259]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2898/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2898/3000, vae_loss=368.0259]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2898/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2899/3000, vae_loss=374.7675]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2899/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2900/3000, vae_loss=369.8499]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2900/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2901/3000, vae_loss=376.3414]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2901/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2902/3000, vae_loss=376.4173]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2902/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2903/3000, vae_loss=373.3168]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2903/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2904/3000, vae_loss=372.6682]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2904/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2905/3000, vae_loss=375.7348]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2905/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2906/3000, vae_loss=373.5037]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2906/3000 [00:35<00:01, 86.02it/s, cycle_loss=0.0000, epoch=2907/3000, vae_loss=375.5521]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2907/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2907/3000, vae_loss=375.5521]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2907/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2908/3000, vae_loss=376.6714]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2908/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2909/3000, vae_loss=376.7042]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2909/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2910/3000, vae_loss=370.3159]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2910/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2911/3000, vae_loss=372.8166]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2911/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2912/3000, vae_loss=374.7381]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2912/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2913/3000, vae_loss=376.0754]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2913/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2914/3000, vae_loss=378.3754]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2914/3000 [00:35<00:01, 85.83it/s, cycle_loss=0.0000, epoch=2915/3000, vae_loss=373.0692]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2915/3000 [00:35<00:00, 85.83it/s, cycle_loss=0.0000, epoch=2916/3000, vae_loss=372.5169]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2916/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2916/3000, vae_loss=372.5169]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2916/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2917/3000, vae_loss=378.8755]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2917/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2918/3000, vae_loss=375.0357]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2918/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2919/3000, vae_loss=376.8506]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2919/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2920/3000, vae_loss=379.4044]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2920/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2921/3000, vae_loss=378.3781]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2921/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2922/3000, vae_loss=371.3718]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2922/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2923/3000, vae_loss=375.6516]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2923/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2924/3000, vae_loss=373.3466]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 2924/3000 [00:35<00:00, 86.23it/s, cycle_loss=0.0000, epoch=2925/3000, vae_loss=370.3412]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2925/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2925/3000, vae_loss=370.3412]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2925/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2926/3000, vae_loss=372.8679]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2926/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2927/3000, vae_loss=373.1929]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2927/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2928/3000, vae_loss=378.4427]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2928/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2929/3000, vae_loss=373.1004]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2929/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2930/3000, vae_loss=376.8992]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2930/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2931/3000, vae_loss=373.4050]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2931/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2932/3000, vae_loss=374.4419]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2932/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2933/3000, vae_loss=375.9232]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2933/3000 [00:35<00:00, 85.79it/s, cycle_loss=0.0000, epoch=2934/3000, vae_loss=368.0968]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2934/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2934/3000, vae_loss=368.0968]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2934/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2935/3000, vae_loss=375.6526]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2935/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2936/3000, vae_loss=370.8923]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2936/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2937/3000, vae_loss=378.0914]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2937/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2938/3000, vae_loss=376.3275]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2938/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2939/3000, vae_loss=372.9292]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2939/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2940/3000, vae_loss=379.8144]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2940/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2941/3000, vae_loss=378.8714]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2941/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2942/3000, vae_loss=378.5441]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2942/3000 [00:35<00:00, 85.96it/s, cycle_loss=0.0000, epoch=2943/3000, vae_loss=374.3187]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2943/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2943/3000, vae_loss=374.3187]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2943/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2944/3000, vae_loss=376.3440]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2944/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2945/3000, vae_loss=380.6256]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2945/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2946/3000, vae_loss=374.0383]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2946/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2947/3000, vae_loss=377.2019]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2947/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2948/3000, vae_loss=378.8761]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2948/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2949/3000, vae_loss=376.5457]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2949/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2950/3000, vae_loss=373.2343]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2950/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2951/3000, vae_loss=369.3688]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2951/3000 [00:35<00:00, 86.33it/s, cycle_loss=0.0000, epoch=2952/3000, vae_loss=374.6944]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2952/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2952/3000, vae_loss=374.6944]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2952/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2953/3000, vae_loss=372.1458]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2953/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2954/3000, vae_loss=376.2637]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2954/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2955/3000, vae_loss=370.6209]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 2955/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2956/3000, vae_loss=380.0231]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2956/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2957/3000, vae_loss=376.3995]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2957/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2958/3000, vae_loss=376.0428]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2958/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2959/3000, vae_loss=375.0554]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2959/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2960/3000, vae_loss=372.2931]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2960/3000 [00:35<00:00, 86.06it/s, cycle_loss=0.0000, epoch=2961/3000, vae_loss=371.4269]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2961/3000 [00:35<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2961/3000, vae_loss=371.4269]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2961/3000 [00:35<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2962/3000, vae_loss=375.4328]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 2962/3000 [00:35<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2963/3000, vae_loss=374.0909]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2963/3000 [00:35<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2964/3000, vae_loss=369.7268]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2964/3000 [00:35<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2965/3000, vae_loss=372.8342]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2965/3000 [00:35<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2966/3000, vae_loss=375.8684]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2966/3000 [00:35<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2967/3000, vae_loss=372.7279]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2967/3000 [00:36<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2968/3000, vae_loss=367.5851]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2968/3000 [00:36<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2969/3000, vae_loss=372.7678]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2969/3000 [00:36<00:00, 80.54it/s, cycle_loss=0.0000, epoch=2970/3000, vae_loss=381.8239]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2970/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2970/3000, vae_loss=381.8239]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2970/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2971/3000, vae_loss=367.9305]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2971/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2972/3000, vae_loss=378.0470]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2972/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2973/3000, vae_loss=368.1367]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2973/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2974/3000, vae_loss=374.5698]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2974/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2975/3000, vae_loss=381.7996]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2975/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2976/3000, vae_loss=368.5096]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2976/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2977/3000, vae_loss=367.7960]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2977/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2978/3000, vae_loss=372.9906]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2978/3000 [00:36<00:00, 80.71it/s, cycle_loss=0.0000, epoch=2979/3000, vae_loss=366.5766]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2979/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2979/3000, vae_loss=366.5766]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2979/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2980/3000, vae_loss=374.2571]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2980/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2981/3000, vae_loss=372.4903]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2981/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2982/3000, vae_loss=373.9350]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2982/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2983/3000, vae_loss=372.1252]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2983/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2984/3000, vae_loss=370.9200]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 2984/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2985/3000, vae_loss=375.4094]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2985/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2986/3000, vae_loss=376.7308]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2986/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2987/3000, vae_loss=373.5431]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2987/3000 [00:36<00:00, 81.94it/s, cycle_loss=0.0000, epoch=2988/3000, vae_loss=371.1371]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2988/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2988/3000, vae_loss=371.1371]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2988/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2989/3000, vae_loss=372.5515]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2989/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2990/3000, vae_loss=370.5826]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2990/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2991/3000, vae_loss=371.2842]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2991/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2992/3000, vae_loss=375.7057]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2992/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2993/3000, vae_loss=382.3098]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2993/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2994/3000, vae_loss=370.8300]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2994/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2995/3000, vae_loss=369.5804]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2995/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2996/3000, vae_loss=369.2889]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2996/3000 [00:36<00:00, 82.36it/s, cycle_loss=0.0000, epoch=2997/3000, vae_loss=367.7352]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2997/3000 [00:36<00:00, 83.12it/s, cycle_loss=0.0000, epoch=2997/3000, vae_loss=367.7352]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2997/3000 [00:36<00:00, 83.12it/s, cycle_loss=0.0000, epoch=2998/3000, vae_loss=368.8840]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2998/3000 [00:36<00:00, 83.12it/s, cycle_loss=0.0000, epoch=2999/3000, vae_loss=374.8907]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 2999/3000 [00:36<00:00, 83.12it/s, cycle_loss=0.0000, epoch=3000/3000, vae_loss=370.6219]
Training: VAE decoder with masked batch labels: 100%|██████████| 3000/3000 [00:36<00:00, 82.46it/s, cycle_loss=0.0000, epoch=3000/3000, vae_loss=370.6219]

abaco.metaABaCo provides a method that visualizes the latent vectors via PCA for dimensionality reduction: .plot_pca_posterior()

model.plot_pca_posterior()
../_images/6548d8409dcfd0aa820c6c75e25002977ada1a08fb7c835b3613fb9e331bdca3.png

Reconstructing the dataset with ABaCo#

To reconstruct the dataset we use method abaco.metaABaCo.correct() and save it as a new layer abaco in the annotated dataset.

# Reconstruct the dataset using the trained ABaCo model
corrected_dataset = model.correct(seed=42)
# save back to adata
adata.layers['abaco'] = corrected_dataset.set_index(id_col).drop(columns=[batch_col, bio_col]).values
adata.write_h5ad("data/mgnify_tomato.h5ad")
/tmp/ipykernel_783/220755026.py:4: ImplicitModificationWarning:

Setting element `.layers['abaco']` of view, initializing view as actual.

Viewing the ABaCo reconstructed dataset#

Here we again take a look at the PCoA but first lets check out the mean differences between the original and batch corrected counts.

# flatten 
nona = adata.layers['nona'].flatten()
abaco = adata.layers['abaco'].flatten()
# calculate means and diffs
means = (nona + abaco) / 2
diffs = nona - abaco
print(means.shape, diffs.shape)
# mean and limits of agreement
mean_diff = np.mean(diffs)
std_diff = np.std(diffs)
loa_upper = mean_diff + 1.96 * std_diff
loa_lower = mean_diff - 1.96 * std_diff

# creating plot
fig = go.Figure()
fig.add_trace(
    go.Scatter(
        x=means, y=diffs, 
        mode='markers', 
        marker=dict(color='blue', opacity=0.1)
    )
)
fig.add_hline(y=mean_diff,line_color="black", annotation_text="Mean Diff")
fig.add_hline(y=loa_upper, line_dash="dot", line_color="black")
fig.add_hline(y=loa_lower, line_dash="dot", line_color="black")
# titles
fig.update_layout(
    template="plotly_white",
    title="Bland-Altman Plot: Original vs. ABaCo Corrected",
    xaxis_title="Mean of Original and ABaCo Corrected",
    yaxis_title="Difference (original - abaco)",
)
fig.show()
(24288,) (24288,)

No clear tendency for abaco correction to be lower or higher than original counts.

# Plot the PCoA of the reconstructed dataset
plotPCoA(
    data = corrected_dataset, 
    sample_label=id_col, 
    batch_label=batch_col, 
    experiment_label=bio_col
)
/home/docs/checkouts/readthedocs.org/user_builds/mona-abaco/envs/stable/lib/python3.11/site-packages/skbio/stats/ordination/_principal_coordinate_analysis.py:157: RuntimeWarning:

EIGH: since no value for dimensions is specified, PCoA for all dimensions will be computed, which may result in long computation time if the original distance matrix is large.

In the PCoA we see that there is more overlap of the batches based on the colours mixing.

Conclusion#

The goal was to:

✅ correct the batch effect (reduce clustering of points by colour in the PCoA and pairplot coloured by batches)

A brief visual inspection of the PCoA suggests that ABaCo reduced the batch effect associated with analyzing the samples from different instruments, while still maintaining the original biological variance.