ABaCo tutorial: Anaerobic Digestion benchmark dataset#

In this notebook we will implement ABaCo for batch correction on an Anaerobic Digestion (AD) dataset under different phenol concentration conditions.


Data Description:

  • The AD dataset generated by (Chapleur et al., 2016) and shared in R package PLSDAbatch by Wang and Cao (2023) is a dataset composed of 75 samples with 567 identified taxonomic groups.

  • The samples were treated with two different phenol concentrations, accounting for the biological source of variation.

  • Samples were processed on 5 different dates over the lapse of 2 years, accounting for the technical source of variation (i.e., batch effect).

Goal:

With ABaCo the aim is to remove the technical variation (batch effect) while retaining the biological variation (phenol group effect).


Dataset Requirements for ABaCo#

The dataset should contain the following to be compatible with the ABaCo framework:

sample

batch

trt

feat1

feat2

A

24/07/2025

low

#

#

B

15/06/2024

low

#

#

C

24/07/2025

high

#

#

  • The data must have 3 categorical columns:

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

    2. ids for the batch/factor groupings to be corrected by abaco. e.g. dates of sample analysis batch

    3. biological/experimental factor variation for abaco to retain when correcting batch effect e.g., phenol concentration condition trt

  • And the features (numeric type) to be trained on.

abaco provides a BatchEffectDataLoader.dataPreprocess() function to help convert a plain text file (e.g, csv, tsv) into a compatible pd.DataFrame format, and a onehotencoding() function to encode categorical columns.

from abaco.dataloader import DataPreprocess, one_hot_encoding

# Load AD count
path_to_dataset = "data/dataset_ad.csv"
batch_col = "batch"
id_col = "sample"
bio_col = "trt"

# Convert data path into compatible pd.DataFrame with ABaCo framework
df_ad = DataPreprocess(
    path_to_dataset,
    factors=[
        batch_col, 
        id_col, 
        bio_col
    ]
)

# see that there are 3 categorical and n numeric columns
print(df_ad.info())

# Isolating the features (numeric) to be inputed into the model
df_features = df_ad.drop(columns=[batch_col, id_col, bio_col]).values
print(f"\n The feature inputs have shape: {df_features.shape}")
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 75 entries, 0 to 74
Columns: 570 entries, sample to Cluster_17710
dtypes: category(3), int64(567)
memory usage: 335.5 KB
None

 The feature inputs have shape: (75, 567)
# One-hot encode the categorical columns
# the batch factor
ohe_batches, ohe_batch_classes = one_hot_encoding(df_ad[batch_col])
# and the biological factor
ohe_bio, ohe_bio_classes = one_hot_encoding(df_ad[bio_col])

print(f"Batch classes: {ohe_batch_classes}\n")
print(f"Biological classes: {ohe_bio_classes}")
Batch classes: ['09/04/2015', '14/04/2016', '01/07/2016', '14/11/2016', '21/09/2017']

Biological classes: ['0-0.5', '1-2']

The AD dataset in brief#

abaco also provides plotting functions to easily explore the data. Here we use BatchEffectPlots.plotPCoA() to visualize the batch and biological effects on the data.

from abaco.plots import plotPCoA
import plotly.io as pio
pio.renderers.default = "notebook_connected"
# pcoa
plotPCoA(
    data=df_ad, 
    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):

    • Samples were processed on 5 different dates over the lapse of 2 years, accounting for the technical source of variation

    • The points clustering by colour demonstrate that there is a batch effect.

  • Biological effect (shapes):

    • The samples were treated with 2 different phenol concentrations, accounting for the biological source of variation.

    • Within the batches the circle points (lower phenol conc.) are to the left of the square points (higher conc).

The goal#

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 (e.g., keep circles and squares separated).

Ideally, after using AbaCo to transform the data, the resulting PCoA will look like a colourful mixture of points, where the circle points remain to the left of the square ones.


Using ABaCo#

Training the ABaCo model#

To train ABaCo on the prepared AD dataset, we create the abaco.metaABaCo() class and pass the required parameters shown in the cell below. Thus, running abaco with the default optional parameters.

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")

# Create ABaCo model
model = metaABaCo(
    data=df_ad, # Pre-processed dataframe
    n_bios=2, # Number of biological groups in the data
    bio_label=bio_col, # Column where biological groups are labeled in the dataframe
    n_batches=5, # Number of batch groups in the data
    batch_label=batch_col, # Column where batch groups are labeled in the dataframe
    n_features=567, # Number of features (taxonomic groups)
    prior="MoG", # Prior distribution 
    device=device, # Device
)
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

For training the model we can call the method metaABaCo.fit() with the default parameters.

model.fit(seed=42)

Hide code cell output

Training: VAE for learning meaningful embeddings:   0%|          | 0/1000 [00:00<?, ?it/s]
Training: VAE for learning meaningful embeddings:   0%|          | 0/1000 [00:00<?, ?it/s, bio_penalty=1.2820, clustering_loss=0.0160, elbo=9819.1826, epoch=0/1001, vae_loss=9820.4805]
Training: VAE for learning meaningful embeddings:   0%|          | 1/1000 [00:00<00:46, 21.29it/s, bio_penalty=2.5907, clustering_loss=0.0160, elbo=6164.9648, epoch=1/1001, vae_loss=6167.5718]
Training: VAE for learning meaningful embeddings:   0%|          | 2/1000 [00:00<00:32, 30.29it/s, bio_penalty=5.1167, clustering_loss=0.0160, elbo=4449.3291, epoch=2/1001, vae_loss=4454.4619]
Training: VAE for learning meaningful embeddings:   0%|          | 3/1000 [00:00<00:28, 35.12it/s, bio_penalty=6.2151, clustering_loss=0.0160, elbo=3516.3948, epoch=3/1001, vae_loss=3522.6260]
Training: VAE for learning meaningful embeddings:   0%|          | 4/1000 [00:00<00:25, 38.32it/s, bio_penalty=6.5397, clustering_loss=0.0160, elbo=2669.3374, epoch=4/1001, vae_loss=2675.8933]
Training: VAE for learning meaningful embeddings:   0%|          | 5/1000 [00:00<00:20, 47.55it/s, bio_penalty=6.5397, clustering_loss=0.0160, elbo=2669.3374, epoch=4/1001, vae_loss=2675.8933]
Training: VAE for learning meaningful embeddings:   0%|          | 5/1000 [00:00<00:20, 47.55it/s, bio_penalty=5.9196, clustering_loss=0.0161, elbo=2036.8362, epoch=5/1001, vae_loss=2042.7719]
Training: VAE for learning meaningful embeddings:   1%|          | 6/1000 [00:00<00:20, 47.55it/s, bio_penalty=4.9074, clustering_loss=0.0161, elbo=1684.9520, epoch=6/1001, vae_loss=1689.8756]
Training: VAE for learning meaningful embeddings:   1%|          | 7/1000 [00:00<00:20, 47.55it/s, bio_penalty=4.2415, clustering_loss=0.0161, elbo=1451.8490, epoch=7/1001, vae_loss=1456.1066]
Training: VAE for learning meaningful embeddings:   1%|          | 8/1000 [00:00<00:20, 47.55it/s, bio_penalty=3.7883, clustering_loss=0.0161, elbo=1354.6460, epoch=8/1001, vae_loss=1358.4503]
Training: VAE for learning meaningful embeddings:   1%|          | 9/1000 [00:00<00:20, 47.55it/s, bio_penalty=3.3566, clustering_loss=0.0161, elbo=1291.7186, epoch=9/1001, vae_loss=1295.0913]
Training: VAE for learning meaningful embeddings:   1%|          | 10/1000 [00:00<00:20, 47.35it/s, bio_penalty=3.3566, clustering_loss=0.0161, elbo=1291.7186, epoch=9/1001, vae_loss=1295.0913]
Training: VAE for learning meaningful embeddings:   1%|          | 10/1000 [00:00<00:20, 47.35it/s, bio_penalty=2.7127, clustering_loss=0.0161, elbo=1176.2229, epoch=10/1001, vae_loss=1178.9517]
Training: VAE for learning meaningful embeddings:   1%|          | 11/1000 [00:00<00:20, 47.35it/s, bio_penalty=2.1677, clustering_loss=0.0161, elbo=1142.6877, epoch=11/1001, vae_loss=1144.8716]
Training: VAE for learning meaningful embeddings:   1%|          | 12/1000 [00:00<00:20, 47.35it/s, bio_penalty=1.6619, clustering_loss=0.0161, elbo=1124.9360, epoch=12/1001, vae_loss=1126.6140]
Training: VAE for learning meaningful embeddings:   1%|▏         | 13/1000 [00:00<00:20, 47.35it/s, bio_penalty=1.2495, clustering_loss=0.0162, elbo=1136.8092, epoch=13/1001, vae_loss=1138.0748]
Training: VAE for learning meaningful embeddings:   1%|▏         | 14/1000 [00:00<00:20, 47.35it/s, bio_penalty=1.0680, clustering_loss=0.0162, elbo=1226.3699, epoch=14/1001, vae_loss=1227.4540]
Training: VAE for learning meaningful embeddings:   2%|▏         | 15/1000 [00:00<00:20, 47.35it/s, bio_penalty=0.9345, clustering_loss=0.0162, elbo=1112.3599, epoch=15/1001, vae_loss=1113.3105]
Training: VAE for learning meaningful embeddings:   2%|▏         | 16/1000 [00:00<00:20, 48.62it/s, bio_penalty=0.9345, clustering_loss=0.0162, elbo=1112.3599, epoch=15/1001, vae_loss=1113.3105]
Training: VAE for learning meaningful embeddings:   2%|▏         | 16/1000 [00:00<00:20, 48.62it/s, bio_penalty=0.8610, clustering_loss=0.0162, elbo=1192.9041, epoch=16/1001, vae_loss=1193.7812]
Training: VAE for learning meaningful embeddings:   2%|▏         | 17/1000 [00:00<00:20, 48.62it/s, bio_penalty=0.8878, clustering_loss=0.0162, elbo=1103.2657, epoch=17/1001, vae_loss=1104.1698]
Training: VAE for learning meaningful embeddings:   2%|▏         | 18/1000 [00:00<00:20, 48.62it/s, bio_penalty=0.9933, clustering_loss=0.0162, elbo=1179.4685, epoch=18/1001, vae_loss=1180.4780]
Training: VAE for learning meaningful embeddings:   2%|▏         | 19/1000 [00:00<00:20, 48.62it/s, bio_penalty=1.1766, clustering_loss=0.0162, elbo=1047.2913, epoch=19/1001, vae_loss=1048.4840]
Training: VAE for learning meaningful embeddings:   2%|▏         | 20/1000 [00:00<00:20, 48.62it/s, bio_penalty=1.3694, clustering_loss=0.0162, elbo=997.7155, epoch=20/1001, vae_loss=999.1011]
Training: VAE for learning meaningful embeddings:   2%|▏         | 21/1000 [00:00<00:20, 48.94it/s, bio_penalty=1.3694, clustering_loss=0.0162, elbo=997.7155, epoch=20/1001, vae_loss=999.1011]
Training: VAE for learning meaningful embeddings:   2%|▏         | 21/1000 [00:00<00:20, 48.94it/s, bio_penalty=1.4484, clustering_loss=0.0162, elbo=1033.8641, epoch=21/1001, vae_loss=1035.3287]
Training: VAE for learning meaningful embeddings:   2%|▏         | 22/1000 [00:00<00:19, 48.94it/s, bio_penalty=1.2828, clustering_loss=0.0163, elbo=1011.0417, epoch=22/1001, vae_loss=1012.3408]
Training: VAE for learning meaningful embeddings:   2%|▏         | 23/1000 [00:00<00:19, 48.94it/s, bio_penalty=0.8926, clustering_loss=0.0163, elbo=981.2963, epoch=23/1001, vae_loss=982.2053]
Training: VAE for learning meaningful embeddings:   2%|▏         | 24/1000 [00:00<00:19, 48.94it/s, bio_penalty=0.7564, clustering_loss=0.0163, elbo=958.2593, epoch=24/1001, vae_loss=959.0319]
Training: VAE for learning meaningful embeddings:   2%|▎         | 25/1000 [00:00<00:19, 48.94it/s, bio_penalty=0.7634, clustering_loss=0.0163, elbo=966.8570, epoch=25/1001, vae_loss=967.6367]
Training: VAE for learning meaningful embeddings:   3%|▎         | 26/1000 [00:00<00:19, 48.94it/s, bio_penalty=0.7866, clustering_loss=0.0163, elbo=977.1429, epoch=26/1001, vae_loss=977.9458]
Training: VAE for learning meaningful embeddings:   3%|▎         | 27/1000 [00:00<00:19, 49.54it/s, bio_penalty=0.7866, clustering_loss=0.0163, elbo=977.1429, epoch=26/1001, vae_loss=977.9458]
Training: VAE for learning meaningful embeddings:   3%|▎         | 27/1000 [00:00<00:19, 49.54it/s, bio_penalty=0.7868, clustering_loss=0.0163, elbo=939.7997, epoch=27/1001, vae_loss=940.6028]
Training: VAE for learning meaningful embeddings:   3%|▎         | 28/1000 [00:00<00:19, 49.54it/s, bio_penalty=0.7821, clustering_loss=0.0163, elbo=916.1803, epoch=28/1001, vae_loss=916.9788]
Training: VAE for learning meaningful embeddings:   3%|▎         | 29/1000 [00:00<00:19, 49.54it/s, bio_penalty=0.7621, clustering_loss=0.0163, elbo=897.7658, epoch=29/1001, vae_loss=898.5443]
Training: VAE for learning meaningful embeddings:   3%|▎         | 30/1000 [00:00<00:19, 49.54it/s, bio_penalty=0.7493, clustering_loss=0.0164, elbo=904.9307, epoch=30/1001, vae_loss=905.6964]
Training: VAE for learning meaningful embeddings:   3%|▎         | 31/1000 [00:00<00:19, 49.54it/s, bio_penalty=0.7390, clustering_loss=0.0164, elbo=898.8965, epoch=31/1001, vae_loss=899.6518]
Training: VAE for learning meaningful embeddings:   3%|▎         | 32/1000 [00:00<00:19, 49.12it/s, bio_penalty=0.7390, clustering_loss=0.0164, elbo=898.8965, epoch=31/1001, vae_loss=899.6518]
Training: VAE for learning meaningful embeddings:   3%|▎         | 32/1000 [00:00<00:19, 49.12it/s, bio_penalty=0.7269, clustering_loss=0.0164, elbo=886.9508, epoch=32/1001, vae_loss=887.6940]
Training: VAE for learning meaningful embeddings:   3%|▎         | 33/1000 [00:00<00:19, 49.12it/s, bio_penalty=0.7242, clustering_loss=0.0164, elbo=886.7807, epoch=33/1001, vae_loss=887.5213]
Training: VAE for learning meaningful embeddings:   3%|▎         | 34/1000 [00:00<00:19, 49.12it/s, bio_penalty=0.7284, clustering_loss=0.0164, elbo=886.8481, epoch=34/1001, vae_loss=887.5930]
Training: VAE for learning meaningful embeddings:   4%|▎         | 35/1000 [00:00<00:19, 49.12it/s, bio_penalty=0.7437, clustering_loss=0.0164, elbo=874.9097, epoch=35/1001, vae_loss=875.6697]
Training: VAE for learning meaningful embeddings:   4%|▎         | 36/1000 [00:00<00:19, 49.12it/s, bio_penalty=0.7703, clustering_loss=0.0164, elbo=881.3576, epoch=36/1001, vae_loss=882.1443]
Training: VAE for learning meaningful embeddings:   4%|▎         | 37/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.7703, clustering_loss=0.0164, elbo=881.3576, epoch=36/1001, vae_loss=882.1443]
Training: VAE for learning meaningful embeddings:   4%|▎         | 37/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.7812, clustering_loss=0.0164, elbo=882.2697, epoch=37/1001, vae_loss=883.0672]
Training: VAE for learning meaningful embeddings:   4%|▍         | 38/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.7973, clustering_loss=0.0165, elbo=868.8674, epoch=38/1001, vae_loss=869.6812]
Training: VAE for learning meaningful embeddings:   4%|▍         | 39/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.8042, clustering_loss=0.0165, elbo=869.5652, epoch=39/1001, vae_loss=870.3860]
Training: VAE for learning meaningful embeddings:   4%|▍         | 40/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.7941, clustering_loss=0.0165, elbo=863.9118, epoch=40/1001, vae_loss=864.7224]
Training: VAE for learning meaningful embeddings:   4%|▍         | 41/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.7781, clustering_loss=0.0165, elbo=863.8535, epoch=41/1001, vae_loss=864.6481]
Training: VAE for learning meaningful embeddings:   4%|▍         | 42/1000 [00:00<00:19, 49.24it/s, bio_penalty=0.7781, clustering_loss=0.0165, elbo=863.8535, epoch=41/1001, vae_loss=864.6481]
Training: VAE for learning meaningful embeddings:   4%|▍         | 42/1000 [00:00<00:19, 49.24it/s, bio_penalty=0.7593, clustering_loss=0.0165, elbo=863.2372, epoch=42/1001, vae_loss=864.0131]
Training: VAE for learning meaningful embeddings:   4%|▍         | 43/1000 [00:00<00:19, 49.24it/s, bio_penalty=0.7399, clustering_loss=0.0165, elbo=861.5801, epoch=43/1001, vae_loss=862.3366]
Training: VAE for learning meaningful embeddings:   4%|▍         | 44/1000 [00:00<00:19, 49.24it/s, bio_penalty=0.7233, clustering_loss=0.0165, elbo=856.8199, epoch=44/1001, vae_loss=857.5598]
Training: VAE for learning meaningful embeddings:   4%|▍         | 45/1000 [00:00<00:19, 49.24it/s, bio_penalty=0.7100, clustering_loss=0.0165, elbo=863.1642, epoch=45/1001, vae_loss=863.8908]
Training: VAE for learning meaningful embeddings:   5%|▍         | 46/1000 [00:00<00:19, 49.24it/s, bio_penalty=0.6971, clustering_loss=0.0165, elbo=851.9891, epoch=46/1001, vae_loss=852.7028]
Training: VAE for learning meaningful embeddings:   5%|▍         | 47/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.6971, clustering_loss=0.0165, elbo=851.9891, epoch=46/1001, vae_loss=852.7028]
Training: VAE for learning meaningful embeddings:   5%|▍         | 47/1000 [00:00<00:19, 49.16it/s, bio_penalty=0.6882, clustering_loss=0.0166, elbo=860.5515, epoch=47/1001, vae_loss=861.2562]
Training: VAE for learning meaningful embeddings:   5%|▍         | 48/1000 [00:01<00:19, 49.16it/s, bio_penalty=0.6811, clustering_loss=0.0166, elbo=853.2775, epoch=48/1001, vae_loss=853.9752]
Training: VAE for learning meaningful embeddings:   5%|▍         | 49/1000 [00:01<00:19, 49.16it/s, bio_penalty=0.6790, clustering_loss=0.0166, elbo=852.3256, epoch=49/1001, vae_loss=853.0212]
Training: VAE for learning meaningful embeddings:   5%|▌         | 50/1000 [00:01<00:19, 49.16it/s, bio_penalty=0.6833, clustering_loss=0.0166, elbo=851.8608, epoch=50/1001, vae_loss=852.5607]
Training: VAE for learning meaningful embeddings:   5%|▌         | 51/1000 [00:01<00:19, 49.16it/s, bio_penalty=0.6924, clustering_loss=0.0166, elbo=849.2289, epoch=51/1001, vae_loss=849.9379]
Training: VAE for learning meaningful embeddings:   5%|▌         | 52/1000 [00:01<00:19, 49.26it/s, bio_penalty=0.6924, clustering_loss=0.0166, elbo=849.2289, epoch=51/1001, vae_loss=849.9379]
Training: VAE for learning meaningful embeddings:   5%|▌         | 52/1000 [00:01<00:19, 49.26it/s, bio_penalty=0.7035, clustering_loss=0.0166, elbo=847.7067, epoch=52/1001, vae_loss=848.4268]
Training: VAE for learning meaningful embeddings:   5%|▌         | 53/1000 [00:01<00:19, 49.26it/s, bio_penalty=0.7109, clustering_loss=0.0166, elbo=844.9717, epoch=53/1001, vae_loss=845.6992]
Training: VAE for learning meaningful embeddings:   5%|▌         | 54/1000 [00:01<00:19, 49.26it/s, bio_penalty=0.7140, clustering_loss=0.0166, elbo=848.5612, epoch=54/1001, vae_loss=849.2919]
Training: VAE for learning meaningful embeddings:   6%|▌         | 55/1000 [00:01<00:19, 49.26it/s, bio_penalty=0.7290, clustering_loss=0.0167, elbo=837.3772, epoch=55/1001, vae_loss=838.1229]
Training: VAE for learning meaningful embeddings:   6%|▌         | 56/1000 [00:01<00:19, 49.26it/s, bio_penalty=0.7385, clustering_loss=0.0167, elbo=841.3146, epoch=56/1001, vae_loss=842.0698]
Training: VAE for learning meaningful embeddings:   6%|▌         | 57/1000 [00:01<00:19, 49.32it/s, bio_penalty=0.7385, clustering_loss=0.0167, elbo=841.3146, epoch=56/1001, vae_loss=842.0698]
Training: VAE for learning meaningful embeddings:   6%|▌         | 57/1000 [00:01<00:19, 49.32it/s, bio_penalty=0.6987, clustering_loss=0.0167, elbo=832.4531, epoch=57/1001, vae_loss=833.1685]
Training: VAE for learning meaningful embeddings:   6%|▌         | 58/1000 [00:01<00:19, 49.32it/s, bio_penalty=0.6662, clustering_loss=0.0167, elbo=830.4729, epoch=58/1001, vae_loss=831.1558]
Training: VAE for learning meaningful embeddings:   6%|▌         | 59/1000 [00:01<00:19, 49.32it/s, bio_penalty=0.6407, clustering_loss=0.0167, elbo=832.3381, epoch=59/1001, vae_loss=832.9956]
Training: VAE for learning meaningful embeddings:   6%|▌         | 60/1000 [00:01<00:19, 49.32it/s, bio_penalty=0.6254, clustering_loss=0.0167, elbo=827.5608, epoch=60/1001, vae_loss=828.2029]
Training: VAE for learning meaningful embeddings:   6%|▌         | 61/1000 [00:01<00:19, 49.32it/s, bio_penalty=0.6157, clustering_loss=0.0167, elbo=832.6674, epoch=61/1001, vae_loss=833.2998]
Training: VAE for learning meaningful embeddings:   6%|▌         | 62/1000 [00:01<00:18, 49.39it/s, bio_penalty=0.6157, clustering_loss=0.0167, elbo=832.6674, epoch=61/1001, vae_loss=833.2998]
Training: VAE for learning meaningful embeddings:   6%|▌         | 62/1000 [00:01<00:18, 49.39it/s, bio_penalty=0.5919, clustering_loss=0.0167, elbo=825.8157, epoch=62/1001, vae_loss=826.4243]
Training: VAE for learning meaningful embeddings:   6%|▋         | 63/1000 [00:01<00:18, 49.39it/s, bio_penalty=0.5847, clustering_loss=0.0168, elbo=827.2654, epoch=63/1001, vae_loss=827.8669]
Training: VAE for learning meaningful embeddings:   6%|▋         | 64/1000 [00:01<00:18, 49.39it/s, bio_penalty=0.5815, clustering_loss=0.0168, elbo=821.0718, epoch=64/1001, vae_loss=821.6701]
Training: VAE for learning meaningful embeddings:   6%|▋         | 65/1000 [00:01<00:18, 49.39it/s, bio_penalty=0.5777, clustering_loss=0.0168, elbo=817.1071, epoch=65/1001, vae_loss=817.7015]
Training: VAE for learning meaningful embeddings:   7%|▋         | 66/1000 [00:01<00:18, 49.39it/s, bio_penalty=0.5751, clustering_loss=0.0168, elbo=813.3409, epoch=66/1001, vae_loss=813.9327]
Training: VAE for learning meaningful embeddings:   7%|▋         | 67/1000 [00:01<00:18, 49.36it/s, bio_penalty=0.5751, clustering_loss=0.0168, elbo=813.3409, epoch=66/1001, vae_loss=813.9327]
Training: VAE for learning meaningful embeddings:   7%|▋         | 67/1000 [00:01<00:18, 49.36it/s, bio_penalty=0.5749, clustering_loss=0.0168, elbo=812.8915, epoch=67/1001, vae_loss=813.4833]
Training: VAE for learning meaningful embeddings:   7%|▋         | 68/1000 [00:01<00:18, 49.36it/s, bio_penalty=0.5783, clustering_loss=0.0168, elbo=810.3655, epoch=68/1001, vae_loss=810.9606]
Training: VAE for learning meaningful embeddings:   7%|▋         | 69/1000 [00:01<00:18, 49.36it/s, bio_penalty=0.5864, clustering_loss=0.0168, elbo=810.8655, epoch=69/1001, vae_loss=811.4687]
Training: VAE for learning meaningful embeddings:   7%|▋         | 70/1000 [00:01<00:18, 49.36it/s, bio_penalty=0.5908, clustering_loss=0.0169, elbo=806.6216, epoch=70/1001, vae_loss=807.2292]
Training: VAE for learning meaningful embeddings:   7%|▋         | 71/1000 [00:01<00:18, 49.36it/s, bio_penalty=0.5873, clustering_loss=0.0169, elbo=809.0096, epoch=71/1001, vae_loss=809.6138]
Training: VAE for learning meaningful embeddings:   7%|▋         | 72/1000 [00:01<00:18, 48.87it/s, bio_penalty=0.5873, clustering_loss=0.0169, elbo=809.0096, epoch=71/1001, vae_loss=809.6138]
Training: VAE for learning meaningful embeddings:   7%|▋         | 72/1000 [00:01<00:18, 48.87it/s, bio_penalty=0.5777, clustering_loss=0.0169, elbo=800.7304, epoch=72/1001, vae_loss=801.3250]
Training: VAE for learning meaningful embeddings:   7%|▋         | 73/1000 [00:01<00:18, 48.87it/s, bio_penalty=0.5720, clustering_loss=0.0169, elbo=799.0319, epoch=73/1001, vae_loss=799.6208]
Training: VAE for learning meaningful embeddings:   7%|▋         | 74/1000 [00:01<00:18, 48.87it/s, bio_penalty=0.5696, clustering_loss=0.0169, elbo=800.8385, epoch=74/1001, vae_loss=801.4250]
Training: VAE for learning meaningful embeddings:   8%|▊         | 75/1000 [00:01<00:18, 48.87it/s, bio_penalty=0.5705, clustering_loss=0.0169, elbo=798.5321, epoch=75/1001, vae_loss=799.1196]
Training: VAE for learning meaningful embeddings:   8%|▊         | 76/1000 [00:01<00:18, 48.87it/s, bio_penalty=0.5716, clustering_loss=0.0169, elbo=796.1046, epoch=76/1001, vae_loss=796.6930]
Training: VAE for learning meaningful embeddings:   8%|▊         | 77/1000 [00:01<00:18, 48.79it/s, bio_penalty=0.5716, clustering_loss=0.0169, elbo=796.1046, epoch=76/1001, vae_loss=796.6930]
Training: VAE for learning meaningful embeddings:   8%|▊         | 77/1000 [00:01<00:18, 48.79it/s, bio_penalty=0.5693, clustering_loss=0.0170, elbo=791.4830, epoch=77/1001, vae_loss=792.0693]
Training: VAE for learning meaningful embeddings:   8%|▊         | 78/1000 [00:01<00:18, 48.79it/s, bio_penalty=0.5664, clustering_loss=0.0170, elbo=790.4493, epoch=78/1001, vae_loss=791.0327]
Training: VAE for learning meaningful embeddings:   8%|▊         | 79/1000 [00:01<00:18, 48.79it/s, bio_penalty=0.5602, clustering_loss=0.0170, elbo=791.0785, epoch=79/1001, vae_loss=791.6556]
Training: VAE for learning meaningful embeddings:   8%|▊         | 80/1000 [00:01<00:18, 48.79it/s, bio_penalty=0.5514, clustering_loss=0.0170, elbo=786.5594, epoch=80/1001, vae_loss=787.1277]
Training: VAE for learning meaningful embeddings:   8%|▊         | 81/1000 [00:01<00:18, 48.79it/s, bio_penalty=0.5441, clustering_loss=0.0170, elbo=784.6961, epoch=81/1001, vae_loss=785.2572]
Training: VAE for learning meaningful embeddings:   8%|▊         | 82/1000 [00:01<00:18, 48.88it/s, bio_penalty=0.5441, clustering_loss=0.0170, elbo=784.6961, epoch=81/1001, vae_loss=785.2572]
Training: VAE for learning meaningful embeddings:   8%|▊         | 82/1000 [00:01<00:18, 48.88it/s, bio_penalty=0.5381, clustering_loss=0.0170, elbo=780.3947, epoch=82/1001, vae_loss=780.9499]
Training: VAE for learning meaningful embeddings:   8%|▊         | 83/1000 [00:01<00:18, 48.88it/s, bio_penalty=0.5334, clustering_loss=0.0170, elbo=781.1630, epoch=83/1001, vae_loss=781.7135]
Training: VAE for learning meaningful embeddings:   8%|▊         | 84/1000 [00:01<00:18, 48.88it/s, bio_penalty=0.5240, clustering_loss=0.0171, elbo=784.0676, epoch=84/1001, vae_loss=784.6086]
Training: VAE for learning meaningful embeddings:   8%|▊         | 85/1000 [00:01<00:18, 48.88it/s, bio_penalty=0.5177, clustering_loss=0.0171, elbo=778.1292, epoch=85/1001, vae_loss=778.6640]
Training: VAE for learning meaningful embeddings:   9%|▊         | 86/1000 [00:01<00:18, 48.88it/s, bio_penalty=0.5104, clustering_loss=0.0171, elbo=777.5834, epoch=86/1001, vae_loss=778.1109]
Training: VAE for learning meaningful embeddings:   9%|▊         | 87/1000 [00:01<00:18, 49.19it/s, bio_penalty=0.5104, clustering_loss=0.0171, elbo=777.5834, epoch=86/1001, vae_loss=778.1109]
Training: VAE for learning meaningful embeddings:   9%|▊         | 87/1000 [00:01<00:18, 49.19it/s, bio_penalty=0.5028, clustering_loss=0.0171, elbo=777.3604, epoch=87/1001, vae_loss=777.8803]
Training: VAE for learning meaningful embeddings:   9%|▉         | 88/1000 [00:01<00:18, 49.19it/s, bio_penalty=0.4976, clustering_loss=0.0171, elbo=773.2744, epoch=88/1001, vae_loss=773.7891]
Training: VAE for learning meaningful embeddings:   9%|▉         | 89/1000 [00:01<00:18, 49.19it/s, bio_penalty=0.4942, clustering_loss=0.0171, elbo=770.0315, epoch=89/1001, vae_loss=770.5428]
Training: VAE for learning meaningful embeddings:   9%|▉         | 90/1000 [00:01<00:18, 49.19it/s, bio_penalty=0.4916, clustering_loss=0.0171, elbo=770.2382, epoch=90/1001, vae_loss=770.7469]
Training: VAE for learning meaningful embeddings:   9%|▉         | 91/1000 [00:01<00:18, 49.19it/s, bio_penalty=0.4882, clustering_loss=0.0172, elbo=769.5299, epoch=91/1001, vae_loss=770.0352]
Training: VAE for learning meaningful embeddings:   9%|▉         | 92/1000 [00:01<00:18, 49.32it/s, bio_penalty=0.4882, clustering_loss=0.0172, elbo=769.5299, epoch=91/1001, vae_loss=770.0352]
Training: VAE for learning meaningful embeddings:   9%|▉         | 92/1000 [00:01<00:18, 49.32it/s, bio_penalty=0.4797, clustering_loss=0.0172, elbo=766.9690, epoch=92/1001, vae_loss=767.4659]
Training: VAE for learning meaningful embeddings:   9%|▉         | 93/1000 [00:01<00:18, 49.32it/s, bio_penalty=0.4703, clustering_loss=0.0172, elbo=766.1050, epoch=93/1001, vae_loss=766.5924]
Training: VAE for learning meaningful embeddings:   9%|▉         | 94/1000 [00:01<00:18, 49.32it/s, bio_penalty=0.4605, clustering_loss=0.0172, elbo=765.0679, epoch=94/1001, vae_loss=765.5456]
Training: VAE for learning meaningful embeddings:  10%|▉         | 95/1000 [00:01<00:18, 49.32it/s, bio_penalty=0.4562, clustering_loss=0.0172, elbo=760.3663, epoch=95/1001, vae_loss=760.8397]
Training: VAE for learning meaningful embeddings:  10%|▉         | 96/1000 [00:01<00:18, 49.32it/s, bio_penalty=0.4572, clustering_loss=0.0172, elbo=760.7187, epoch=96/1001, vae_loss=761.1931]
Training: VAE for learning meaningful embeddings:  10%|▉         | 97/1000 [00:01<00:18, 49.28it/s, bio_penalty=0.4572, clustering_loss=0.0172, elbo=760.7187, epoch=96/1001, vae_loss=761.1931]
Training: VAE for learning meaningful embeddings:  10%|▉         | 97/1000 [00:01<00:18, 49.28it/s, bio_penalty=0.4536, clustering_loss=0.0172, elbo=759.3275, epoch=97/1001, vae_loss=759.7983]
Training: VAE for learning meaningful embeddings:  10%|▉         | 98/1000 [00:02<00:18, 49.28it/s, bio_penalty=0.4404, clustering_loss=0.0172, elbo=756.6002, epoch=98/1001, vae_loss=757.0579]
Training: VAE for learning meaningful embeddings:  10%|▉         | 99/1000 [00:02<00:18, 49.28it/s, bio_penalty=0.4258, clustering_loss=0.0173, elbo=754.2673, epoch=99/1001, vae_loss=754.7104]
Training: VAE for learning meaningful embeddings:  10%|█         | 100/1000 [00:02<00:18, 49.28it/s, bio_penalty=0.4198, clustering_loss=0.0173, elbo=751.5977, epoch=100/1001, vae_loss=752.0347]
Training: VAE for learning meaningful embeddings:  10%|█         | 101/1000 [00:02<00:18, 49.28it/s, bio_penalty=0.4174, clustering_loss=0.0173, elbo=750.9399, epoch=101/1001, vae_loss=751.3745]
Training: VAE for learning meaningful embeddings:  10%|█         | 102/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.4174, clustering_loss=0.0173, elbo=750.9399, epoch=101/1001, vae_loss=751.3745]
Training: VAE for learning meaningful embeddings:  10%|█         | 102/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.4139, clustering_loss=0.0173, elbo=747.6230, epoch=102/1001, vae_loss=748.0543]
Training: VAE for learning meaningful embeddings:  10%|█         | 103/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.4062, clustering_loss=0.0173, elbo=746.5528, epoch=103/1001, vae_loss=746.9763]
Training: VAE for learning meaningful embeddings:  10%|█         | 104/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3991, clustering_loss=0.0173, elbo=744.1782, epoch=104/1001, vae_loss=744.5946]
Training: VAE for learning meaningful embeddings:  10%|█         | 105/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3929, clustering_loss=0.0173, elbo=746.4406, epoch=105/1001, vae_loss=746.8508]
Training: VAE for learning meaningful embeddings:  11%|█         | 106/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3812, clustering_loss=0.0174, elbo=745.2141, epoch=106/1001, vae_loss=745.6126]
Training: VAE for learning meaningful embeddings:  11%|█         | 107/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3812, clustering_loss=0.0174, elbo=745.2141, epoch=106/1001, vae_loss=745.6126]
Training: VAE for learning meaningful embeddings:  11%|█         | 107/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3747, clustering_loss=0.0174, elbo=742.4504, epoch=107/1001, vae_loss=742.8425]
Training: VAE for learning meaningful embeddings:  11%|█         | 108/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3663, clustering_loss=0.0174, elbo=741.6861, epoch=108/1001, vae_loss=742.0698]
Training: VAE for learning meaningful embeddings:  11%|█         | 109/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3542, clustering_loss=0.0174, elbo=739.2499, epoch=109/1001, vae_loss=739.6215]
Training: VAE for learning meaningful embeddings:  11%|█         | 110/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3437, clustering_loss=0.0174, elbo=738.9057, epoch=110/1001, vae_loss=739.2668]
Training: VAE for learning meaningful embeddings:  11%|█         | 111/1000 [00:02<00:18, 49.23it/s, bio_penalty=0.3329, clustering_loss=0.0174, elbo=739.3576, epoch=111/1001, vae_loss=739.7080]
Training: VAE for learning meaningful embeddings:  11%|█         | 112/1000 [00:02<00:18, 49.29it/s, bio_penalty=0.3329, clustering_loss=0.0174, elbo=739.3576, epoch=111/1001, vae_loss=739.7080]
Training: VAE for learning meaningful embeddings:  11%|█         | 112/1000 [00:02<00:18, 49.29it/s, bio_penalty=0.3275, clustering_loss=0.0174, elbo=735.1428, epoch=112/1001, vae_loss=735.4877]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 113/1000 [00:02<00:17, 49.29it/s, bio_penalty=0.3255, clustering_loss=0.0175, elbo=737.1737, epoch=113/1001, vae_loss=737.5167]
Training: VAE for learning meaningful embeddings:  11%|█▏        | 114/1000 [00:02<00:17, 49.29it/s, bio_penalty=0.3117, clustering_loss=0.0175, elbo=734.4286, epoch=114/1001, vae_loss=734.7579]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 115/1000 [00:02<00:17, 49.29it/s, bio_penalty=0.3018, clustering_loss=0.0175, elbo=731.7453, epoch=115/1001, vae_loss=732.0646]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 116/1000 [00:02<00:17, 49.29it/s, bio_penalty=0.3015, clustering_loss=0.0175, elbo=729.5634, epoch=116/1001, vae_loss=729.8824]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 117/1000 [00:02<00:18, 48.71it/s, bio_penalty=0.3015, clustering_loss=0.0175, elbo=729.5634, epoch=116/1001, vae_loss=729.8824]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 117/1000 [00:02<00:18, 48.71it/s, bio_penalty=0.3018, clustering_loss=0.0175, elbo=730.7490, epoch=117/1001, vae_loss=731.0684]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 118/1000 [00:02<00:18, 48.71it/s, bio_penalty=0.3019, clustering_loss=0.0175, elbo=727.0992, epoch=118/1001, vae_loss=727.4187]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 119/1000 [00:02<00:18, 48.71it/s, bio_penalty=0.3054, clustering_loss=0.0175, elbo=728.6435, epoch=119/1001, vae_loss=728.9664]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 120/1000 [00:02<00:18, 48.71it/s, bio_penalty=0.3089, clustering_loss=0.0175, elbo=725.6894, epoch=120/1001, vae_loss=726.0157]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 121/1000 [00:02<00:18, 48.71it/s, bio_penalty=0.2981, clustering_loss=0.0176, elbo=723.2805, epoch=121/1001, vae_loss=723.5961]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 122/1000 [00:02<00:18, 48.56it/s, bio_penalty=0.2981, clustering_loss=0.0176, elbo=723.2805, epoch=121/1001, vae_loss=723.5961]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 122/1000 [00:02<00:18, 48.56it/s, bio_penalty=0.2855, clustering_loss=0.0176, elbo=723.8284, epoch=122/1001, vae_loss=724.1314]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 123/1000 [00:02<00:18, 48.56it/s, bio_penalty=0.2779, clustering_loss=0.0176, elbo=723.6872, epoch=123/1001, vae_loss=723.9826]
Training: VAE for learning meaningful embeddings:  12%|█▏        | 124/1000 [00:02<00:18, 48.56it/s, bio_penalty=0.2787, clustering_loss=0.0176, elbo=719.3802, epoch=124/1001, vae_loss=719.6765]
Training: VAE for learning meaningful embeddings:  12%|█▎        | 125/1000 [00:02<00:18, 48.56it/s, bio_penalty=0.2774, clustering_loss=0.0176, elbo=720.4473, epoch=125/1001, vae_loss=720.7423]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 126/1000 [00:02<00:17, 48.56it/s, bio_penalty=0.2753, clustering_loss=0.0176, elbo=723.7269, epoch=126/1001, vae_loss=724.0198]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 127/1000 [00:02<00:18, 47.96it/s, bio_penalty=0.2753, clustering_loss=0.0176, elbo=723.7269, epoch=126/1001, vae_loss=724.0198]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 127/1000 [00:02<00:18, 47.96it/s, bio_penalty=0.2621, clustering_loss=0.0176, elbo=719.1504, epoch=127/1001, vae_loss=719.4301]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 128/1000 [00:02<00:18, 47.96it/s, bio_penalty=0.2543, clustering_loss=0.0176, elbo=720.0955, epoch=128/1001, vae_loss=720.3674]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 129/1000 [00:02<00:18, 47.96it/s, bio_penalty=0.2454, clustering_loss=0.0176, elbo=718.9654, epoch=129/1001, vae_loss=719.2284]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 130/1000 [00:02<00:18, 47.96it/s, bio_penalty=0.2413, clustering_loss=0.0177, elbo=716.8307, epoch=130/1001, vae_loss=717.0897]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 131/1000 [00:02<00:18, 47.96it/s, bio_penalty=0.2366, clustering_loss=0.0177, elbo=715.1175, epoch=131/1001, vae_loss=715.3718]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 132/1000 [00:02<00:18, 48.21it/s, bio_penalty=0.2366, clustering_loss=0.0177, elbo=715.1175, epoch=131/1001, vae_loss=715.3718]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 132/1000 [00:02<00:18, 48.21it/s, bio_penalty=0.2301, clustering_loss=0.0177, elbo=712.9078, epoch=132/1001, vae_loss=713.1556]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 133/1000 [00:02<00:17, 48.21it/s, bio_penalty=0.2262, clustering_loss=0.0177, elbo=712.2275, epoch=133/1001, vae_loss=712.4714]
Training: VAE for learning meaningful embeddings:  13%|█▎        | 134/1000 [00:02<00:17, 48.21it/s, bio_penalty=0.2267, clustering_loss=0.0177, elbo=712.0925, epoch=134/1001, vae_loss=712.3369]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 135/1000 [00:02<00:17, 48.21it/s, bio_penalty=0.2253, clustering_loss=0.0177, elbo=709.9778, epoch=135/1001, vae_loss=710.2208]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 136/1000 [00:02<00:17, 48.21it/s, bio_penalty=0.2165, clustering_loss=0.0177, elbo=709.0975, epoch=136/1001, vae_loss=709.3318]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 137/1000 [00:02<00:17, 48.00it/s, bio_penalty=0.2165, clustering_loss=0.0177, elbo=709.0975, epoch=136/1001, vae_loss=709.3318]
Training: VAE for learning meaningful embeddings:  14%|█▎        | 137/1000 [00:02<00:17, 48.00it/s, bio_penalty=0.2145, clustering_loss=0.0177, elbo=706.2032, epoch=137/1001, vae_loss=706.4355]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 138/1000 [00:02<00:17, 48.00it/s, bio_penalty=0.2163, clustering_loss=0.0178, elbo=709.5579, epoch=138/1001, vae_loss=709.7919]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 139/1000 [00:02<00:17, 48.00it/s, bio_penalty=0.2158, clustering_loss=0.0178, elbo=705.9940, epoch=139/1001, vae_loss=706.2276]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 140/1000 [00:02<00:17, 48.00it/s, bio_penalty=0.2139, clustering_loss=0.0178, elbo=703.4191, epoch=140/1001, vae_loss=703.6507]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 141/1000 [00:02<00:17, 48.00it/s, bio_penalty=0.2162, clustering_loss=0.0178, elbo=705.1733, epoch=141/1001, vae_loss=705.4073]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 142/1000 [00:02<00:17, 48.05it/s, bio_penalty=0.2162, clustering_loss=0.0178, elbo=705.1733, epoch=141/1001, vae_loss=705.4073]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 142/1000 [00:02<00:17, 48.05it/s, bio_penalty=0.2104, clustering_loss=0.0178, elbo=707.3626, epoch=142/1001, vae_loss=707.5909]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 143/1000 [00:02<00:17, 48.05it/s, bio_penalty=0.2061, clustering_loss=0.0178, elbo=701.9407, epoch=143/1001, vae_loss=702.1646]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 144/1000 [00:02<00:17, 48.05it/s, bio_penalty=0.2033, clustering_loss=0.0178, elbo=702.4987, epoch=144/1001, vae_loss=702.7198]
Training: VAE for learning meaningful embeddings:  14%|█▍        | 145/1000 [00:02<00:17, 48.05it/s, bio_penalty=0.2052, clustering_loss=0.0178, elbo=701.8483, epoch=145/1001, vae_loss=702.0714]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 146/1000 [00:03<00:17, 48.05it/s, bio_penalty=0.1977, clustering_loss=0.0178, elbo=696.4402, epoch=146/1001, vae_loss=696.6558]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 147/1000 [00:03<00:17, 48.18it/s, bio_penalty=0.1977, clustering_loss=0.0178, elbo=696.4402, epoch=146/1001, vae_loss=696.6558]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 147/1000 [00:03<00:17, 48.18it/s, bio_penalty=0.1973, clustering_loss=0.0179, elbo=696.9570, epoch=147/1001, vae_loss=697.1722]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 148/1000 [00:03<00:17, 48.18it/s, bio_penalty=0.1967, clustering_loss=0.0179, elbo=696.9632, epoch=148/1001, vae_loss=697.1778]
Training: VAE for learning meaningful embeddings:  15%|█▍        | 149/1000 [00:03<00:17, 48.18it/s, bio_penalty=0.1935, clustering_loss=0.0179, elbo=695.4214, epoch=149/1001, vae_loss=695.6328]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 150/1000 [00:03<00:17, 48.18it/s, bio_penalty=0.1917, clustering_loss=0.0179, elbo=695.0733, epoch=150/1001, vae_loss=695.2829]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 151/1000 [00:03<00:17, 48.18it/s, bio_penalty=0.1889, clustering_loss=0.0179, elbo=692.7270, epoch=151/1001, vae_loss=692.9338]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 152/1000 [00:03<00:17, 48.57it/s, bio_penalty=0.1889, clustering_loss=0.0179, elbo=692.7270, epoch=151/1001, vae_loss=692.9338]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 152/1000 [00:03<00:17, 48.57it/s, bio_penalty=0.1871, clustering_loss=0.0179, elbo=691.8621, epoch=152/1001, vae_loss=692.0671]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 153/1000 [00:03<00:17, 48.57it/s, bio_penalty=0.1860, clustering_loss=0.0179, elbo=695.3737, epoch=153/1001, vae_loss=695.5776]
Training: VAE for learning meaningful embeddings:  15%|█▌        | 154/1000 [00:03<00:17, 48.57it/s, bio_penalty=0.1824, clustering_loss=0.0179, elbo=690.3458, epoch=154/1001, vae_loss=690.5461]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 155/1000 [00:03<00:17, 48.57it/s, bio_penalty=0.1817, clustering_loss=0.0179, elbo=689.0265, epoch=155/1001, vae_loss=689.2262]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 156/1000 [00:03<00:17, 48.57it/s, bio_penalty=0.1849, clustering_loss=0.0180, elbo=689.0163, epoch=156/1001, vae_loss=689.2191]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 157/1000 [00:03<00:17, 48.86it/s, bio_penalty=0.1849, clustering_loss=0.0180, elbo=689.0163, epoch=156/1001, vae_loss=689.2191]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 157/1000 [00:03<00:17, 48.86it/s, bio_penalty=0.1818, clustering_loss=0.0180, elbo=688.3722, epoch=157/1001, vae_loss=688.5720]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 158/1000 [00:03<00:17, 48.86it/s, bio_penalty=0.1757, clustering_loss=0.0180, elbo=687.5594, epoch=158/1001, vae_loss=687.7531]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 159/1000 [00:03<00:17, 48.86it/s, bio_penalty=0.1766, clustering_loss=0.0180, elbo=685.4436, epoch=159/1001, vae_loss=685.6382]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 160/1000 [00:03<00:17, 48.86it/s, bio_penalty=0.1778, clustering_loss=0.0180, elbo=682.7786, epoch=160/1001, vae_loss=682.9744]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 161/1000 [00:03<00:17, 48.86it/s, bio_penalty=0.1763, clustering_loss=0.0180, elbo=683.5202, epoch=161/1001, vae_loss=683.7145]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 162/1000 [00:03<00:17, 48.84it/s, bio_penalty=0.1763, clustering_loss=0.0180, elbo=683.5202, epoch=161/1001, vae_loss=683.7145]
Training: VAE for learning meaningful embeddings:  16%|█▌        | 162/1000 [00:03<00:17, 48.84it/s, bio_penalty=0.1726, clustering_loss=0.0180, elbo=681.9495, epoch=162/1001, vae_loss=682.1402]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 163/1000 [00:03<00:17, 48.84it/s, bio_penalty=0.1717, clustering_loss=0.0180, elbo=681.8180, epoch=163/1001, vae_loss=682.0078]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 164/1000 [00:03<00:17, 48.84it/s, bio_penalty=0.1710, clustering_loss=0.0180, elbo=682.4441, epoch=164/1001, vae_loss=682.6331]
Training: VAE for learning meaningful embeddings:  16%|█▋        | 165/1000 [00:03<00:17, 48.84it/s, bio_penalty=0.1693, clustering_loss=0.0180, elbo=681.5093, epoch=165/1001, vae_loss=681.6967]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 166/1000 [00:03<00:17, 48.84it/s, bio_penalty=0.1668, clustering_loss=0.0181, elbo=684.2560, epoch=166/1001, vae_loss=684.4409]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 167/1000 [00:03<00:17, 48.58it/s, bio_penalty=0.1668, clustering_loss=0.0181, elbo=684.2560, epoch=166/1001, vae_loss=684.4409]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 167/1000 [00:03<00:17, 48.58it/s, bio_penalty=0.1670, clustering_loss=0.0181, elbo=680.0948, epoch=167/1001, vae_loss=680.2798]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 168/1000 [00:03<00:17, 48.58it/s, bio_penalty=0.1712, clustering_loss=0.0181, elbo=680.4688, epoch=168/1001, vae_loss=680.6581]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 169/1000 [00:03<00:17, 48.58it/s, bio_penalty=0.1630, clustering_loss=0.0181, elbo=677.3422, epoch=169/1001, vae_loss=677.5232]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 170/1000 [00:03<00:17, 48.58it/s, bio_penalty=0.1623, clustering_loss=0.0181, elbo=677.6261, epoch=170/1001, vae_loss=677.8065]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 171/1000 [00:03<00:17, 48.58it/s, bio_penalty=0.1592, clustering_loss=0.0181, elbo=678.1934, epoch=171/1001, vae_loss=678.3707]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 172/1000 [00:03<00:17, 48.68it/s, bio_penalty=0.1592, clustering_loss=0.0181, elbo=678.1934, epoch=171/1001, vae_loss=678.3707]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 172/1000 [00:03<00:17, 48.68it/s, bio_penalty=0.1626, clustering_loss=0.0181, elbo=678.9036, epoch=172/1001, vae_loss=679.0844]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 173/1000 [00:03<00:16, 48.68it/s, bio_penalty=0.1593, clustering_loss=0.0181, elbo=672.7398, epoch=173/1001, vae_loss=672.9172]
Training: VAE for learning meaningful embeddings:  17%|█▋        | 174/1000 [00:03<00:16, 48.68it/s, bio_penalty=0.1619, clustering_loss=0.0181, elbo=673.5912, epoch=174/1001, vae_loss=673.7713]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 175/1000 [00:03<00:16, 48.68it/s, bio_penalty=0.1568, clustering_loss=0.0181, elbo=671.2545, epoch=175/1001, vae_loss=671.4294]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 176/1000 [00:03<00:16, 48.68it/s, bio_penalty=0.1552, clustering_loss=0.0182, elbo=672.9706, epoch=176/1001, vae_loss=673.1439]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 177/1000 [00:03<00:16, 48.58it/s, bio_penalty=0.1552, clustering_loss=0.0182, elbo=672.9706, epoch=176/1001, vae_loss=673.1439]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 177/1000 [00:03<00:16, 48.58it/s, bio_penalty=0.1547, clustering_loss=0.0182, elbo=670.3828, epoch=177/1001, vae_loss=670.5557]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 178/1000 [00:03<00:16, 48.58it/s, bio_penalty=0.1534, clustering_loss=0.0182, elbo=668.2191, epoch=178/1001, vae_loss=668.3907]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 179/1000 [00:03<00:16, 48.58it/s, bio_penalty=0.1538, clustering_loss=0.0182, elbo=669.2990, epoch=179/1001, vae_loss=669.4709]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 180/1000 [00:03<00:16, 48.58it/s, bio_penalty=0.1507, clustering_loss=0.0182, elbo=667.5998, epoch=180/1001, vae_loss=667.7687]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 181/1000 [00:03<00:16, 48.58it/s, bio_penalty=0.1487, clustering_loss=0.0182, elbo=668.0270, epoch=181/1001, vae_loss=668.1939]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 182/1000 [00:03<00:16, 48.81it/s, bio_penalty=0.1487, clustering_loss=0.0182, elbo=668.0270, epoch=181/1001, vae_loss=668.1939]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 182/1000 [00:03<00:16, 48.81it/s, bio_penalty=0.1481, clustering_loss=0.0182, elbo=667.5245, epoch=182/1001, vae_loss=667.6909]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 183/1000 [00:03<00:16, 48.81it/s, bio_penalty=0.1488, clustering_loss=0.0182, elbo=664.4660, epoch=183/1001, vae_loss=664.6331]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 184/1000 [00:03<00:16, 48.81it/s, bio_penalty=0.1474, clustering_loss=0.0182, elbo=665.3237, epoch=184/1001, vae_loss=665.4894]
Training: VAE for learning meaningful embeddings:  18%|█▊        | 185/1000 [00:03<00:16, 48.81it/s, bio_penalty=0.1449, clustering_loss=0.0182, elbo=664.9337, epoch=185/1001, vae_loss=665.0968]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 186/1000 [00:03<00:16, 48.81it/s, bio_penalty=0.1451, clustering_loss=0.0182, elbo=662.1006, epoch=186/1001, vae_loss=662.2640]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 187/1000 [00:03<00:16, 49.03it/s, bio_penalty=0.1451, clustering_loss=0.0182, elbo=662.1006, epoch=186/1001, vae_loss=662.2640]
Training: VAE for learning meaningful embeddings:  19%|█▊        | 187/1000 [00:03<00:16, 49.03it/s, bio_penalty=0.1407, clustering_loss=0.0183, elbo=663.8154, epoch=187/1001, vae_loss=663.9744]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 188/1000 [00:03<00:16, 49.03it/s, bio_penalty=0.1426, clustering_loss=0.0183, elbo=659.9603, epoch=188/1001, vae_loss=660.1212]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 189/1000 [00:03<00:16, 49.03it/s, bio_penalty=0.1412, clustering_loss=0.0183, elbo=661.7812, epoch=189/1001, vae_loss=661.9406]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 190/1000 [00:03<00:16, 49.03it/s, bio_penalty=0.1384, clustering_loss=0.0183, elbo=656.9885, epoch=190/1001, vae_loss=657.1452]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 191/1000 [00:03<00:16, 49.03it/s, bio_penalty=0.1359, clustering_loss=0.0183, elbo=658.6183, epoch=191/1001, vae_loss=658.7725]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 192/1000 [00:03<00:16, 48.94it/s, bio_penalty=0.1359, clustering_loss=0.0183, elbo=658.6183, epoch=191/1001, vae_loss=658.7725]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 192/1000 [00:03<00:16, 48.94it/s, bio_penalty=0.1358, clustering_loss=0.0183, elbo=659.2527, epoch=192/1001, vae_loss=659.4068]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 193/1000 [00:03<00:16, 48.94it/s, bio_penalty=0.1367, clustering_loss=0.0183, elbo=655.0817, epoch=193/1001, vae_loss=655.2366]
Training: VAE for learning meaningful embeddings:  19%|█▉        | 194/1000 [00:03<00:16, 48.94it/s, bio_penalty=0.1361, clustering_loss=0.0183, elbo=656.8737, epoch=194/1001, vae_loss=657.0281]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 195/1000 [00:04<00:16, 48.94it/s, bio_penalty=0.1322, clustering_loss=0.0183, elbo=655.6147, epoch=195/1001, vae_loss=655.7652]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 196/1000 [00:04<00:16, 48.94it/s, bio_penalty=0.1309, clustering_loss=0.0183, elbo=654.3169, epoch=196/1001, vae_loss=654.4661]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 197/1000 [00:04<00:16, 48.61it/s, bio_penalty=0.1309, clustering_loss=0.0183, elbo=654.3169, epoch=196/1001, vae_loss=654.4661]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 197/1000 [00:04<00:16, 48.61it/s, bio_penalty=0.1295, clustering_loss=0.0183, elbo=655.9951, epoch=197/1001, vae_loss=656.1429]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 198/1000 [00:04<00:16, 48.61it/s, bio_penalty=0.1288, clustering_loss=0.0184, elbo=652.7208, epoch=198/1001, vae_loss=652.8680]
Training: VAE for learning meaningful embeddings:  20%|█▉        | 199/1000 [00:04<00:16, 48.61it/s, bio_penalty=0.1281, clustering_loss=0.0184, elbo=652.8776, epoch=199/1001, vae_loss=653.0241]
Training: VAE for learning meaningful embeddings:  20%|██        | 200/1000 [00:04<00:16, 48.61it/s, bio_penalty=0.1261, clustering_loss=0.0184, elbo=653.8093, epoch=200/1001, vae_loss=653.9538]
Training: VAE for learning meaningful embeddings:  20%|██        | 201/1000 [00:04<00:16, 48.61it/s, bio_penalty=0.1248, clustering_loss=0.0184, elbo=650.6898, epoch=201/1001, vae_loss=650.8329]
Training: VAE for learning meaningful embeddings:  20%|██        | 202/1000 [00:04<00:16, 48.83it/s, bio_penalty=0.1248, clustering_loss=0.0184, elbo=650.6898, epoch=201/1001, vae_loss=650.8329]
Training: VAE for learning meaningful embeddings:  20%|██        | 202/1000 [00:04<00:16, 48.83it/s, bio_penalty=0.1230, clustering_loss=0.0184, elbo=653.2393, epoch=202/1001, vae_loss=653.3807]
Training: VAE for learning meaningful embeddings:  20%|██        | 203/1000 [00:04<00:16, 48.83it/s, bio_penalty=0.1226, clustering_loss=0.0184, elbo=651.7010, epoch=203/1001, vae_loss=651.8420]
Training: VAE for learning meaningful embeddings:  20%|██        | 204/1000 [00:04<00:16, 48.83it/s, bio_penalty=0.1203, clustering_loss=0.0184, elbo=648.2766, epoch=204/1001, vae_loss=648.4153]
Training: VAE for learning meaningful embeddings:  20%|██        | 205/1000 [00:04<00:16, 48.83it/s, bio_penalty=0.1184, clustering_loss=0.0184, elbo=649.2003, epoch=205/1001, vae_loss=649.3372]
Training: VAE for learning meaningful embeddings:  21%|██        | 206/1000 [00:04<00:16, 48.83it/s, bio_penalty=0.1170, clustering_loss=0.0184, elbo=648.3135, epoch=206/1001, vae_loss=648.4490]
Training: VAE for learning meaningful embeddings:  21%|██        | 207/1000 [00:04<00:16, 48.90it/s, bio_penalty=0.1170, clustering_loss=0.0184, elbo=648.3135, epoch=206/1001, vae_loss=648.4490]
Training: VAE for learning meaningful embeddings:  21%|██        | 207/1000 [00:04<00:16, 48.90it/s, bio_penalty=0.1171, clustering_loss=0.0184, elbo=647.4836, epoch=207/1001, vae_loss=647.6191]
Training: VAE for learning meaningful embeddings:  21%|██        | 208/1000 [00:04<00:16, 48.90it/s, bio_penalty=0.1178, clustering_loss=0.0184, elbo=648.5665, epoch=208/1001, vae_loss=648.7026]
Training: VAE for learning meaningful embeddings:  21%|██        | 209/1000 [00:04<00:16, 48.90it/s, bio_penalty=0.1160, clustering_loss=0.0184, elbo=645.5967, epoch=209/1001, vae_loss=645.7311]
Training: VAE for learning meaningful embeddings:  21%|██        | 210/1000 [00:04<00:16, 48.90it/s, bio_penalty=0.1157, clustering_loss=0.0185, elbo=645.6827, epoch=210/1001, vae_loss=645.8168]
Training: VAE for learning meaningful embeddings:  21%|██        | 211/1000 [00:04<00:16, 48.90it/s, bio_penalty=0.1186, clustering_loss=0.0185, elbo=643.6959, epoch=211/1001, vae_loss=643.8329]
Training: VAE for learning meaningful embeddings:  21%|██        | 212/1000 [00:04<00:16, 48.56it/s, bio_penalty=0.1186, clustering_loss=0.0185, elbo=643.6959, epoch=211/1001, vae_loss=643.8329]
Training: VAE for learning meaningful embeddings:  21%|██        | 212/1000 [00:04<00:16, 48.56it/s, bio_penalty=0.1192, clustering_loss=0.0185, elbo=643.8143, epoch=212/1001, vae_loss=643.9520]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 213/1000 [00:04<00:16, 48.56it/s, bio_penalty=0.1159, clustering_loss=0.0185, elbo=644.2444, epoch=213/1001, vae_loss=644.3787]
Training: VAE for learning meaningful embeddings:  21%|██▏       | 214/1000 [00:04<00:16, 48.56it/s, bio_penalty=0.1154, clustering_loss=0.0185, elbo=641.3215, epoch=214/1001, vae_loss=641.4554]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 215/1000 [00:04<00:16, 48.56it/s, bio_penalty=0.1128, clustering_loss=0.0185, elbo=642.4767, epoch=215/1001, vae_loss=642.6080]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 216/1000 [00:04<00:16, 48.56it/s, bio_penalty=0.1111, clustering_loss=0.0185, elbo=639.8532, epoch=216/1001, vae_loss=639.9828]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 217/1000 [00:04<00:16, 48.50it/s, bio_penalty=0.1111, clustering_loss=0.0185, elbo=639.8532, epoch=216/1001, vae_loss=639.9828]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 217/1000 [00:04<00:16, 48.50it/s, bio_penalty=0.1103, clustering_loss=0.0185, elbo=639.6049, epoch=217/1001, vae_loss=639.7338]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 218/1000 [00:04<00:16, 48.50it/s, bio_penalty=0.1089, clustering_loss=0.0185, elbo=640.9573, epoch=218/1001, vae_loss=641.0847]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 219/1000 [00:04<00:16, 48.50it/s, bio_penalty=0.1064, clustering_loss=0.0185, elbo=639.9989, epoch=219/1001, vae_loss=640.1238]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 220/1000 [00:04<00:16, 48.50it/s, bio_penalty=0.1042, clustering_loss=0.0185, elbo=637.2407, epoch=220/1001, vae_loss=637.3635]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 221/1000 [00:04<00:16, 48.50it/s, bio_penalty=0.1036, clustering_loss=0.0185, elbo=638.2968, epoch=221/1001, vae_loss=638.4189]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 222/1000 [00:04<00:15, 48.80it/s, bio_penalty=0.1036, clustering_loss=0.0185, elbo=638.2968, epoch=221/1001, vae_loss=638.4189]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 222/1000 [00:04<00:15, 48.80it/s, bio_penalty=0.1025, clustering_loss=0.0185, elbo=641.7658, epoch=222/1001, vae_loss=641.8869]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 223/1000 [00:04<00:15, 48.80it/s, bio_penalty=0.1029, clustering_loss=0.0186, elbo=635.2766, epoch=223/1001, vae_loss=635.3980]
Training: VAE for learning meaningful embeddings:  22%|██▏       | 224/1000 [00:04<00:15, 48.80it/s, bio_penalty=0.1031, clustering_loss=0.0186, elbo=636.0748, epoch=224/1001, vae_loss=636.1965]
Training: VAE for learning meaningful embeddings:  22%|██▎       | 225/1000 [00:04<00:15, 48.80it/s, bio_penalty=0.1018, clustering_loss=0.0186, elbo=636.1385, epoch=225/1001, vae_loss=636.2589]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 226/1000 [00:04<00:15, 48.80it/s, bio_penalty=0.1010, clustering_loss=0.0186, elbo=634.0210, epoch=226/1001, vae_loss=634.1406]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 227/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.1010, clustering_loss=0.0186, elbo=634.0210, epoch=226/1001, vae_loss=634.1406]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 227/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.1004, clustering_loss=0.0186, elbo=635.6683, epoch=227/1001, vae_loss=635.7873]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 228/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.1026, clustering_loss=0.0186, elbo=636.3076, epoch=228/1001, vae_loss=636.4288]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 229/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.1049, clustering_loss=0.0186, elbo=634.3547, epoch=229/1001, vae_loss=634.4782]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 230/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0984, clustering_loss=0.0186, elbo=636.1242, epoch=230/1001, vae_loss=636.2413]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 231/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0969, clustering_loss=0.0186, elbo=635.4742, epoch=231/1001, vae_loss=635.5897]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 232/1000 [00:04<00:15, 48.34it/s, bio_penalty=0.0969, clustering_loss=0.0186, elbo=635.4742, epoch=231/1001, vae_loss=635.5897]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 232/1000 [00:04<00:15, 48.34it/s, bio_penalty=0.0962, clustering_loss=0.0186, elbo=632.3722, epoch=232/1001, vae_loss=632.4870]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 233/1000 [00:04<00:15, 48.34it/s, bio_penalty=0.0969, clustering_loss=0.0186, elbo=632.8926, epoch=233/1001, vae_loss=633.0081]
Training: VAE for learning meaningful embeddings:  23%|██▎       | 234/1000 [00:04<00:15, 48.34it/s, bio_penalty=0.0948, clustering_loss=0.0186, elbo=631.0664, epoch=234/1001, vae_loss=631.1798]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 235/1000 [00:04<00:15, 48.34it/s, bio_penalty=0.0936, clustering_loss=0.0186, elbo=629.0728, epoch=235/1001, vae_loss=629.1849]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 236/1000 [00:04<00:15, 48.34it/s, bio_penalty=0.0942, clustering_loss=0.0186, elbo=633.3660, epoch=236/1001, vae_loss=633.4788]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 237/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0942, clustering_loss=0.0186, elbo=633.3660, epoch=236/1001, vae_loss=633.4788]
Training: VAE for learning meaningful embeddings:  24%|██▎       | 237/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0944, clustering_loss=0.0186, elbo=629.8875, epoch=237/1001, vae_loss=630.0005]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 238/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0930, clustering_loss=0.0187, elbo=627.8421, epoch=238/1001, vae_loss=627.9538]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 239/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0928, clustering_loss=0.0187, elbo=628.0892, epoch=239/1001, vae_loss=628.2007]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 240/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0939, clustering_loss=0.0187, elbo=628.5287, epoch=240/1001, vae_loss=628.6412]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 241/1000 [00:04<00:15, 48.39it/s, bio_penalty=0.0908, clustering_loss=0.0187, elbo=629.7512, epoch=241/1001, vae_loss=629.8607]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 242/1000 [00:04<00:15, 47.57it/s, bio_penalty=0.0908, clustering_loss=0.0187, elbo=629.7512, epoch=241/1001, vae_loss=629.8607]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 242/1000 [00:04<00:15, 47.57it/s, bio_penalty=0.0920, clustering_loss=0.0187, elbo=625.8292, epoch=242/1001, vae_loss=625.9398]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 243/1000 [00:05<00:15, 47.57it/s, bio_penalty=0.0908, clustering_loss=0.0187, elbo=628.5370, epoch=243/1001, vae_loss=628.6465]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 244/1000 [00:05<00:15, 47.57it/s, bio_penalty=0.0901, clustering_loss=0.0187, elbo=623.9900, epoch=244/1001, vae_loss=624.0988]
Training: VAE for learning meaningful embeddings:  24%|██▍       | 245/1000 [00:05<00:15, 47.57it/s, bio_penalty=0.0886, clustering_loss=0.0187, elbo=628.7939, epoch=245/1001, vae_loss=628.9011]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 246/1000 [00:05<00:15, 47.57it/s, bio_penalty=0.0882, clustering_loss=0.0187, elbo=628.3203, epoch=246/1001, vae_loss=628.4271]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 247/1000 [00:05<00:15, 47.74it/s, bio_penalty=0.0882, clustering_loss=0.0187, elbo=628.3203, epoch=246/1001, vae_loss=628.4271]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 247/1000 [00:05<00:15, 47.74it/s, bio_penalty=0.0870, clustering_loss=0.0187, elbo=624.8027, epoch=247/1001, vae_loss=624.9084]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 248/1000 [00:05<00:15, 47.74it/s, bio_penalty=0.0854, clustering_loss=0.0187, elbo=622.4354, epoch=248/1001, vae_loss=622.5395]
Training: VAE for learning meaningful embeddings:  25%|██▍       | 249/1000 [00:05<00:15, 47.74it/s, bio_penalty=0.0839, clustering_loss=0.0187, elbo=624.5775, epoch=249/1001, vae_loss=624.6801]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 250/1000 [00:05<00:15, 47.74it/s, bio_penalty=0.0824, clustering_loss=0.0187, elbo=622.3004, epoch=250/1001, vae_loss=622.4015]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 251/1000 [00:05<00:15, 47.74it/s, bio_penalty=0.0811, clustering_loss=0.0187, elbo=622.7123, epoch=251/1001, vae_loss=622.8121]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 252/1000 [00:05<00:15, 48.16it/s, bio_penalty=0.0811, clustering_loss=0.0187, elbo=622.7123, epoch=251/1001, vae_loss=622.8121]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 252/1000 [00:05<00:15, 48.16it/s, bio_penalty=0.0803, clustering_loss=0.0187, elbo=623.8560, epoch=252/1001, vae_loss=623.9551]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 253/1000 [00:05<00:15, 48.16it/s, bio_penalty=0.0834, clustering_loss=0.0187, elbo=622.2978, epoch=253/1001, vae_loss=622.3999]
Training: VAE for learning meaningful embeddings:  25%|██▌       | 254/1000 [00:05<00:15, 48.16it/s, bio_penalty=0.0806, clustering_loss=0.0188, elbo=620.1693, epoch=254/1001, vae_loss=620.2686]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 255/1000 [00:05<00:15, 48.16it/s, bio_penalty=0.0837, clustering_loss=0.0188, elbo=626.0731, epoch=255/1001, vae_loss=626.1756]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 256/1000 [00:05<00:15, 48.16it/s, bio_penalty=0.0780, clustering_loss=0.0188, elbo=616.6686, epoch=256/1001, vae_loss=616.7653]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 257/1000 [00:05<00:15, 47.89it/s, bio_penalty=0.0780, clustering_loss=0.0188, elbo=616.6686, epoch=256/1001, vae_loss=616.7653]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 257/1000 [00:05<00:15, 47.89it/s, bio_penalty=0.0786, clustering_loss=0.0188, elbo=621.6850, epoch=257/1001, vae_loss=621.7823]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 258/1000 [00:05<00:15, 47.89it/s, bio_penalty=0.0793, clustering_loss=0.0188, elbo=617.4791, epoch=258/1001, vae_loss=617.5772]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 259/1000 [00:05<00:15, 47.89it/s, bio_penalty=0.0806, clustering_loss=0.0188, elbo=618.6245, epoch=259/1001, vae_loss=618.7239]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 260/1000 [00:05<00:15, 47.89it/s, bio_penalty=0.0748, clustering_loss=0.0188, elbo=617.7491, epoch=260/1001, vae_loss=617.8427]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 261/1000 [00:05<00:15, 47.89it/s, bio_penalty=0.0741, clustering_loss=0.0188, elbo=616.1622, epoch=261/1001, vae_loss=616.2551]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 262/1000 [00:05<00:15, 48.05it/s, bio_penalty=0.0741, clustering_loss=0.0188, elbo=616.1622, epoch=261/1001, vae_loss=616.2551]
Training: VAE for learning meaningful embeddings:  26%|██▌       | 262/1000 [00:05<00:15, 48.05it/s, bio_penalty=0.0749, clustering_loss=0.0188, elbo=617.4053, epoch=262/1001, vae_loss=617.4991]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 263/1000 [00:05<00:15, 48.05it/s, bio_penalty=0.0737, clustering_loss=0.0188, elbo=617.2739, epoch=263/1001, vae_loss=617.3663]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 264/1000 [00:05<00:15, 48.05it/s, bio_penalty=0.0753, clustering_loss=0.0188, elbo=616.0125, epoch=264/1001, vae_loss=616.1066]
Training: VAE for learning meaningful embeddings:  26%|██▋       | 265/1000 [00:05<00:15, 48.05it/s, bio_penalty=0.0743, clustering_loss=0.0188, elbo=614.0912, epoch=265/1001, vae_loss=614.1844]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 266/1000 [00:05<00:15, 48.05it/s, bio_penalty=0.0751, clustering_loss=0.0188, elbo=613.4558, epoch=266/1001, vae_loss=613.5497]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 267/1000 [00:05<00:15, 48.24it/s, bio_penalty=0.0751, clustering_loss=0.0188, elbo=613.4558, epoch=266/1001, vae_loss=613.5497]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 267/1000 [00:05<00:15, 48.24it/s, bio_penalty=0.0756, clustering_loss=0.0188, elbo=613.8348, epoch=267/1001, vae_loss=613.9292]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 268/1000 [00:05<00:15, 48.24it/s, bio_penalty=0.0732, clustering_loss=0.0188, elbo=612.1139, epoch=268/1001, vae_loss=612.2059]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 269/1000 [00:05<00:15, 48.24it/s, bio_penalty=0.0724, clustering_loss=0.0188, elbo=612.3912, epoch=269/1001, vae_loss=612.4825]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 270/1000 [00:05<00:15, 48.24it/s, bio_penalty=0.0731, clustering_loss=0.0188, elbo=612.0352, epoch=270/1001, vae_loss=612.1272]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 271/1000 [00:05<00:15, 48.24it/s, bio_penalty=0.0731, clustering_loss=0.0189, elbo=611.7265, epoch=271/1001, vae_loss=611.8185]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 272/1000 [00:05<00:15, 48.20it/s, bio_penalty=0.0731, clustering_loss=0.0189, elbo=611.7265, epoch=271/1001, vae_loss=611.8185]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 272/1000 [00:05<00:15, 48.20it/s, bio_penalty=0.0717, clustering_loss=0.0189, elbo=615.3336, epoch=272/1001, vae_loss=615.4242]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 273/1000 [00:05<00:15, 48.20it/s, bio_penalty=0.0724, clustering_loss=0.0189, elbo=613.2874, epoch=273/1001, vae_loss=613.3787]
Training: VAE for learning meaningful embeddings:  27%|██▋       | 274/1000 [00:05<00:15, 48.20it/s, bio_penalty=0.0724, clustering_loss=0.0189, elbo=610.2584, epoch=274/1001, vae_loss=610.3496]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 275/1000 [00:05<00:15, 48.20it/s, bio_penalty=0.0692, clustering_loss=0.0189, elbo=614.3387, epoch=275/1001, vae_loss=614.4268]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 276/1000 [00:05<00:15, 48.20it/s, bio_penalty=0.0681, clustering_loss=0.0189, elbo=610.9307, epoch=276/1001, vae_loss=611.0177]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 277/1000 [00:05<00:14, 48.51it/s, bio_penalty=0.0681, clustering_loss=0.0189, elbo=610.9307, epoch=276/1001, vae_loss=611.0177]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 277/1000 [00:05<00:14, 48.51it/s, bio_penalty=0.0679, clustering_loss=0.0189, elbo=613.5435, epoch=277/1001, vae_loss=613.6302]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 278/1000 [00:05<00:14, 48.51it/s, bio_penalty=0.0680, clustering_loss=0.0189, elbo=617.1268, epoch=278/1001, vae_loss=617.2136]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 279/1000 [00:05<00:14, 48.51it/s, bio_penalty=0.0671, clustering_loss=0.0189, elbo=607.3883, epoch=279/1001, vae_loss=607.4743]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 280/1000 [00:05<00:14, 48.51it/s, bio_penalty=0.0661, clustering_loss=0.0189, elbo=611.8693, epoch=280/1001, vae_loss=611.9543]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 281/1000 [00:05<00:14, 48.51it/s, bio_penalty=0.0669, clustering_loss=0.0189, elbo=609.3528, epoch=281/1001, vae_loss=609.4386]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 282/1000 [00:05<00:14, 48.75it/s, bio_penalty=0.0669, clustering_loss=0.0189, elbo=609.3528, epoch=281/1001, vae_loss=609.4386]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 282/1000 [00:05<00:14, 48.75it/s, bio_penalty=0.0669, clustering_loss=0.0189, elbo=607.6467, epoch=282/1001, vae_loss=607.7325]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 283/1000 [00:05<00:14, 48.75it/s, bio_penalty=0.0659, clustering_loss=0.0189, elbo=610.4629, epoch=283/1001, vae_loss=610.5477]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 284/1000 [00:05<00:14, 48.75it/s, bio_penalty=0.0644, clustering_loss=0.0189, elbo=605.6374, epoch=284/1001, vae_loss=605.7207]
Training: VAE for learning meaningful embeddings:  28%|██▊       | 285/1000 [00:05<00:14, 48.75it/s, bio_penalty=0.0646, clustering_loss=0.0189, elbo=608.7057, epoch=285/1001, vae_loss=608.7892]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 286/1000 [00:05<00:14, 48.75it/s, bio_penalty=0.0635, clustering_loss=0.0189, elbo=606.2881, epoch=286/1001, vae_loss=606.3705]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 287/1000 [00:05<00:14, 48.96it/s, bio_penalty=0.0635, clustering_loss=0.0189, elbo=606.2881, epoch=286/1001, vae_loss=606.3705]
Training: VAE for learning meaningful embeddings:  29%|██▊       | 287/1000 [00:05<00:14, 48.96it/s, bio_penalty=0.0631, clustering_loss=0.0189, elbo=604.6261, epoch=287/1001, vae_loss=604.7081]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 288/1000 [00:05<00:14, 48.96it/s, bio_penalty=0.0634, clustering_loss=0.0189, elbo=607.0802, epoch=288/1001, vae_loss=607.1625]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 289/1000 [00:05<00:14, 48.96it/s, bio_penalty=0.0641, clustering_loss=0.0190, elbo=604.8625, epoch=289/1001, vae_loss=604.9455]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 290/1000 [00:05<00:14, 48.96it/s, bio_penalty=0.0615, clustering_loss=0.0190, elbo=605.2828, epoch=290/1001, vae_loss=605.3633]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 291/1000 [00:05<00:14, 48.96it/s, bio_penalty=0.0624, clustering_loss=0.0190, elbo=601.2911, epoch=291/1001, vae_loss=601.3724]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 292/1000 [00:05<00:14, 48.75it/s, bio_penalty=0.0624, clustering_loss=0.0190, elbo=601.2911, epoch=291/1001, vae_loss=601.3724]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 292/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0641, clustering_loss=0.0190, elbo=605.2212, epoch=292/1001, vae_loss=605.3042]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 293/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0626, clustering_loss=0.0190, elbo=602.1337, epoch=293/1001, vae_loss=602.2153]
Training: VAE for learning meaningful embeddings:  29%|██▉       | 294/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0617, clustering_loss=0.0190, elbo=603.4042, epoch=294/1001, vae_loss=603.4848]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 295/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0636, clustering_loss=0.0190, elbo=599.9104, epoch=295/1001, vae_loss=599.9930]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 296/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0628, clustering_loss=0.0190, elbo=602.0768, epoch=296/1001, vae_loss=602.1586]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 297/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0628, clustering_loss=0.0190, elbo=602.0768, epoch=296/1001, vae_loss=602.1586]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 297/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0612, clustering_loss=0.0190, elbo=599.3171, epoch=297/1001, vae_loss=599.3972]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 298/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0597, clustering_loss=0.0190, elbo=599.7828, epoch=298/1001, vae_loss=599.8616]
Training: VAE for learning meaningful embeddings:  30%|██▉       | 299/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0599, clustering_loss=0.0190, elbo=599.7147, epoch=299/1001, vae_loss=599.7936]
Training: VAE for learning meaningful embeddings:  30%|███       | 300/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0610, clustering_loss=0.0190, elbo=599.2172, epoch=300/1001, vae_loss=599.2972]
Training: VAE for learning meaningful embeddings:  30%|███       | 301/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0621, clustering_loss=0.0190, elbo=598.6964, epoch=301/1001, vae_loss=598.7774]
Training: VAE for learning meaningful embeddings:  30%|███       | 302/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0621, clustering_loss=0.0190, elbo=598.6964, epoch=301/1001, vae_loss=598.7774]
Training: VAE for learning meaningful embeddings:  30%|███       | 302/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0577, clustering_loss=0.0190, elbo=599.9766, epoch=302/1001, vae_loss=600.0533]
Training: VAE for learning meaningful embeddings:  30%|███       | 303/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0575, clustering_loss=0.0190, elbo=598.1509, epoch=303/1001, vae_loss=598.2275]
Training: VAE for learning meaningful embeddings:  30%|███       | 304/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0589, clustering_loss=0.0190, elbo=600.8861, epoch=304/1001, vae_loss=600.9641]
Training: VAE for learning meaningful embeddings:  30%|███       | 305/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0574, clustering_loss=0.0190, elbo=598.2626, epoch=305/1001, vae_loss=598.3391]
Training: VAE for learning meaningful embeddings:  31%|███       | 306/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0566, clustering_loss=0.0190, elbo=597.5632, epoch=306/1001, vae_loss=597.6389]
Training: VAE for learning meaningful embeddings:  31%|███       | 307/1000 [00:06<00:14, 48.96it/s, bio_penalty=0.0566, clustering_loss=0.0190, elbo=597.5632, epoch=306/1001, vae_loss=597.6389]
Training: VAE for learning meaningful embeddings:  31%|███       | 307/1000 [00:06<00:14, 48.96it/s, bio_penalty=0.0559, clustering_loss=0.0190, elbo=596.3430, epoch=307/1001, vae_loss=596.4180]
Training: VAE for learning meaningful embeddings:  31%|███       | 308/1000 [00:06<00:14, 48.96it/s, bio_penalty=0.0562, clustering_loss=0.0190, elbo=595.7458, epoch=308/1001, vae_loss=595.8211]
Training: VAE for learning meaningful embeddings:  31%|███       | 309/1000 [00:06<00:14, 48.96it/s, bio_penalty=0.0558, clustering_loss=0.0191, elbo=599.4152, epoch=309/1001, vae_loss=599.4901]
Training: VAE for learning meaningful embeddings:  31%|███       | 310/1000 [00:06<00:14, 48.96it/s, bio_penalty=0.0548, clustering_loss=0.0191, elbo=595.8807, epoch=310/1001, vae_loss=595.9546]
Training: VAE for learning meaningful embeddings:  31%|███       | 311/1000 [00:06<00:14, 48.96it/s, bio_penalty=0.0565, clustering_loss=0.0191, elbo=597.0251, epoch=311/1001, vae_loss=597.1007]
Training: VAE for learning meaningful embeddings:  31%|███       | 312/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0565, clustering_loss=0.0191, elbo=597.0251, epoch=311/1001, vae_loss=597.1007]
Training: VAE for learning meaningful embeddings:  31%|███       | 312/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0565, clustering_loss=0.0191, elbo=597.7696, epoch=312/1001, vae_loss=597.8451]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 313/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0542, clustering_loss=0.0191, elbo=594.5815, epoch=313/1001, vae_loss=594.6547]
Training: VAE for learning meaningful embeddings:  31%|███▏      | 314/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0536, clustering_loss=0.0191, elbo=594.9036, epoch=314/1001, vae_loss=594.9763]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 315/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0537, clustering_loss=0.0191, elbo=594.0244, epoch=315/1001, vae_loss=594.0972]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 316/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0545, clustering_loss=0.0191, elbo=593.5459, epoch=316/1001, vae_loss=593.6195]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 317/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0545, clustering_loss=0.0191, elbo=593.5459, epoch=316/1001, vae_loss=593.6195]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 317/1000 [00:06<00:14, 48.75it/s, bio_penalty=0.0544, clustering_loss=0.0191, elbo=596.1254, epoch=317/1001, vae_loss=596.1990]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 318/1000 [00:06<00:13, 48.75it/s, bio_penalty=0.0528, clustering_loss=0.0191, elbo=591.2068, epoch=318/1001, vae_loss=591.2788]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 319/1000 [00:06<00:13, 48.75it/s, bio_penalty=0.0519, clustering_loss=0.0191, elbo=594.7039, epoch=319/1001, vae_loss=594.7749]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 320/1000 [00:06<00:13, 48.75it/s, bio_penalty=0.0512, clustering_loss=0.0191, elbo=589.8881, epoch=320/1001, vae_loss=589.9584]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 321/1000 [00:06<00:13, 48.75it/s, bio_penalty=0.0505, clustering_loss=0.0191, elbo=591.4241, epoch=321/1001, vae_loss=591.4937]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 322/1000 [00:06<00:13, 48.58it/s, bio_penalty=0.0505, clustering_loss=0.0191, elbo=591.4241, epoch=321/1001, vae_loss=591.4937]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 322/1000 [00:06<00:13, 48.58it/s, bio_penalty=0.0493, clustering_loss=0.0191, elbo=589.3523, epoch=322/1001, vae_loss=589.4207]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 323/1000 [00:06<00:13, 48.58it/s, bio_penalty=0.0535, clustering_loss=0.0191, elbo=593.2683, epoch=323/1001, vae_loss=593.3409]
Training: VAE for learning meaningful embeddings:  32%|███▏      | 324/1000 [00:06<00:13, 48.58it/s, bio_penalty=0.0526, clustering_loss=0.0191, elbo=590.9913, epoch=324/1001, vae_loss=591.0630]
Training: VAE for learning meaningful embeddings:  32%|███▎      | 325/1000 [00:06<00:13, 48.58it/s, bio_penalty=0.0507, clustering_loss=0.0191, elbo=589.3452, epoch=325/1001, vae_loss=589.4150]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 326/1000 [00:06<00:13, 48.58it/s, bio_penalty=0.0504, clustering_loss=0.0191, elbo=587.6638, epoch=326/1001, vae_loss=587.7333]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 327/1000 [00:06<00:13, 48.64it/s, bio_penalty=0.0504, clustering_loss=0.0191, elbo=587.6638, epoch=326/1001, vae_loss=587.7333]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 327/1000 [00:06<00:13, 48.64it/s, bio_penalty=0.0517, clustering_loss=0.0191, elbo=588.2892, epoch=327/1001, vae_loss=588.3600]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 328/1000 [00:06<00:13, 48.64it/s, bio_penalty=0.0501, clustering_loss=0.0191, elbo=588.1489, epoch=328/1001, vae_loss=588.2181]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 329/1000 [00:06<00:13, 48.64it/s, bio_penalty=0.0518, clustering_loss=0.0191, elbo=589.7129, epoch=329/1001, vae_loss=589.7838]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 330/1000 [00:06<00:13, 48.64it/s, bio_penalty=0.0500, clustering_loss=0.0191, elbo=587.4748, epoch=330/1001, vae_loss=587.5439]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 331/1000 [00:06<00:13, 48.64it/s, bio_penalty=0.0494, clustering_loss=0.0192, elbo=585.0532, epoch=331/1001, vae_loss=585.1218]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 332/1000 [00:06<00:13, 48.46it/s, bio_penalty=0.0494, clustering_loss=0.0192, elbo=585.0532, epoch=331/1001, vae_loss=585.1218]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 332/1000 [00:06<00:13, 48.46it/s, bio_penalty=0.0497, clustering_loss=0.0192, elbo=587.9230, epoch=332/1001, vae_loss=587.9918]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 333/1000 [00:06<00:13, 48.46it/s, bio_penalty=0.0477, clustering_loss=0.0192, elbo=587.0268, epoch=333/1001, vae_loss=587.0936]
Training: VAE for learning meaningful embeddings:  33%|███▎      | 334/1000 [00:06<00:13, 48.46it/s, bio_penalty=0.0474, clustering_loss=0.0192, elbo=585.6356, epoch=334/1001, vae_loss=585.7021]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 335/1000 [00:06<00:13, 48.46it/s, bio_penalty=0.0471, clustering_loss=0.0192, elbo=587.9007, epoch=335/1001, vae_loss=587.9670]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 336/1000 [00:06<00:13, 48.46it/s, bio_penalty=0.0512, clustering_loss=0.0192, elbo=588.1070, epoch=336/1001, vae_loss=588.1774]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 337/1000 [00:06<00:13, 48.48it/s, bio_penalty=0.0512, clustering_loss=0.0192, elbo=588.1070, epoch=336/1001, vae_loss=588.1774]
Training: VAE for learning meaningful embeddings:  34%|███▎      | 337/1000 [00:06<00:13, 48.48it/s, bio_penalty=0.0470, clustering_loss=0.0192, elbo=585.2028, epoch=337/1001, vae_loss=585.2689]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 338/1000 [00:06<00:13, 48.48it/s, bio_penalty=0.0470, clustering_loss=0.0192, elbo=583.8753, epoch=338/1001, vae_loss=583.9415]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 339/1000 [00:06<00:13, 48.48it/s, bio_penalty=0.0474, clustering_loss=0.0192, elbo=586.4366, epoch=339/1001, vae_loss=586.5032]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 340/1000 [00:07<00:13, 48.48it/s, bio_penalty=0.0475, clustering_loss=0.0192, elbo=583.5307, epoch=340/1001, vae_loss=583.5974]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 341/1000 [00:07<00:13, 48.48it/s, bio_penalty=0.0463, clustering_loss=0.0192, elbo=582.9554, epoch=341/1001, vae_loss=583.0209]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 342/1000 [00:07<00:13, 48.79it/s, bio_penalty=0.0463, clustering_loss=0.0192, elbo=582.9554, epoch=341/1001, vae_loss=583.0209]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 342/1000 [00:07<00:13, 48.79it/s, bio_penalty=0.0469, clustering_loss=0.0192, elbo=585.6229, epoch=342/1001, vae_loss=585.6890]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 343/1000 [00:07<00:13, 48.79it/s, bio_penalty=0.0450, clustering_loss=0.0192, elbo=582.4207, epoch=343/1001, vae_loss=582.4849]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 344/1000 [00:07<00:13, 48.79it/s, bio_penalty=0.0443, clustering_loss=0.0192, elbo=584.7651, epoch=344/1001, vae_loss=584.8287]
Training: VAE for learning meaningful embeddings:  34%|███▍      | 345/1000 [00:07<00:13, 48.79it/s, bio_penalty=0.0444, clustering_loss=0.0192, elbo=582.8215, epoch=345/1001, vae_loss=582.8851]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 346/1000 [00:07<00:13, 48.79it/s, bio_penalty=0.0428, clustering_loss=0.0192, elbo=582.1812, epoch=346/1001, vae_loss=582.2432]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 347/1000 [00:07<00:13, 48.17it/s, bio_penalty=0.0428, clustering_loss=0.0192, elbo=582.1812, epoch=346/1001, vae_loss=582.2432]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 347/1000 [00:07<00:13, 48.17it/s, bio_penalty=0.0439, clustering_loss=0.0192, elbo=583.0645, epoch=347/1001, vae_loss=583.1276]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 348/1000 [00:07<00:13, 48.17it/s, bio_penalty=0.0456, clustering_loss=0.0192, elbo=582.3599, epoch=348/1001, vae_loss=582.4247]
Training: VAE for learning meaningful embeddings:  35%|███▍      | 349/1000 [00:07<00:13, 48.17it/s, bio_penalty=0.0443, clustering_loss=0.0192, elbo=580.9366, epoch=349/1001, vae_loss=581.0002]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 350/1000 [00:07<00:13, 48.17it/s, bio_penalty=0.0446, clustering_loss=0.0192, elbo=581.7850, epoch=350/1001, vae_loss=581.8488]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 351/1000 [00:07<00:13, 48.17it/s, bio_penalty=0.0423, clustering_loss=0.0192, elbo=577.6368, epoch=351/1001, vae_loss=577.6983]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 352/1000 [00:07<00:13, 48.17it/s, bio_penalty=0.0424, clustering_loss=0.0192, elbo=581.5971, epoch=352/1001, vae_loss=581.6588]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 353/1000 [00:07<00:13, 49.16it/s, bio_penalty=0.0424, clustering_loss=0.0192, elbo=581.5971, epoch=352/1001, vae_loss=581.6588]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 353/1000 [00:07<00:13, 49.16it/s, bio_penalty=0.0424, clustering_loss=0.0192, elbo=581.5251, epoch=353/1001, vae_loss=581.5868]
Training: VAE for learning meaningful embeddings:  35%|███▌      | 354/1000 [00:07<00:13, 49.16it/s, bio_penalty=0.0415, clustering_loss=0.0192, elbo=578.6829, epoch=354/1001, vae_loss=578.7435]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 355/1000 [00:07<00:13, 49.16it/s, bio_penalty=0.0413, clustering_loss=0.0192, elbo=578.5716, epoch=355/1001, vae_loss=578.6321]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 356/1000 [00:07<00:13, 49.16it/s, bio_penalty=0.0405, clustering_loss=0.0193, elbo=579.9128, epoch=356/1001, vae_loss=579.9726]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 357/1000 [00:07<00:13, 49.16it/s, bio_penalty=0.0413, clustering_loss=0.0193, elbo=578.4509, epoch=357/1001, vae_loss=578.5114]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 358/1000 [00:07<00:13, 49.16it/s, bio_penalty=0.0424, clustering_loss=0.0193, elbo=579.2603, epoch=358/1001, vae_loss=579.3220]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 359/1000 [00:07<00:12, 49.66it/s, bio_penalty=0.0424, clustering_loss=0.0193, elbo=579.2603, epoch=358/1001, vae_loss=579.3220]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 359/1000 [00:07<00:12, 49.66it/s, bio_penalty=0.0403, clustering_loss=0.0193, elbo=577.2265, epoch=359/1001, vae_loss=577.2861]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 360/1000 [00:07<00:12, 49.66it/s, bio_penalty=0.0399, clustering_loss=0.0193, elbo=577.8470, epoch=360/1001, vae_loss=577.9062]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 361/1000 [00:07<00:12, 49.66it/s, bio_penalty=0.0399, clustering_loss=0.0193, elbo=581.0370, epoch=361/1001, vae_loss=581.0962]
Training: VAE for learning meaningful embeddings:  36%|███▌      | 362/1000 [00:07<00:12, 49.66it/s, bio_penalty=0.0390, clustering_loss=0.0193, elbo=586.0549, epoch=362/1001, vae_loss=586.1133]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 363/1000 [00:07<00:12, 49.66it/s, bio_penalty=0.0389, clustering_loss=0.0193, elbo=576.3636, epoch=363/1001, vae_loss=576.4218]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 364/1000 [00:07<00:12, 49.66it/s, bio_penalty=0.0399, clustering_loss=0.0193, elbo=580.6654, epoch=364/1001, vae_loss=580.7245]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 365/1000 [00:07<00:12, 49.93it/s, bio_penalty=0.0399, clustering_loss=0.0193, elbo=580.6654, epoch=364/1001, vae_loss=580.7245]
Training: VAE for learning meaningful embeddings:  36%|███▋      | 365/1000 [00:07<00:12, 49.93it/s, bio_penalty=0.0400, clustering_loss=0.0193, elbo=584.0892, epoch=365/1001, vae_loss=584.1485]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 366/1000 [00:07<00:12, 49.93it/s, bio_penalty=0.0390, clustering_loss=0.0193, elbo=573.6972, epoch=366/1001, vae_loss=573.7556]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 367/1000 [00:07<00:12, 49.93it/s, bio_penalty=0.0370, clustering_loss=0.0193, elbo=578.6798, epoch=367/1001, vae_loss=578.7361]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 368/1000 [00:07<00:12, 49.93it/s, bio_penalty=0.0348, clustering_loss=0.0193, elbo=579.7211, epoch=368/1001, vae_loss=579.7751]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 369/1000 [00:07<00:12, 49.93it/s, bio_penalty=0.0364, clustering_loss=0.0193, elbo=575.3281, epoch=369/1001, vae_loss=575.3838]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 370/1000 [00:07<00:12, 49.90it/s, bio_penalty=0.0364, clustering_loss=0.0193, elbo=575.3281, epoch=369/1001, vae_loss=575.3838]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 370/1000 [00:07<00:12, 49.90it/s, bio_penalty=0.0362, clustering_loss=0.0193, elbo=577.4584, epoch=370/1001, vae_loss=577.5139]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 371/1000 [00:07<00:12, 49.90it/s, bio_penalty=0.0380, clustering_loss=0.0193, elbo=576.2068, epoch=371/1001, vae_loss=576.2640]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 372/1000 [00:07<00:12, 49.90it/s, bio_penalty=0.0407, clustering_loss=0.0193, elbo=574.9788, epoch=372/1001, vae_loss=575.0388]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 373/1000 [00:07<00:12, 49.90it/s, bio_penalty=0.0400, clustering_loss=0.0193, elbo=576.7232, epoch=373/1001, vae_loss=576.7825]
Training: VAE for learning meaningful embeddings:  37%|███▋      | 374/1000 [00:07<00:12, 49.90it/s, bio_penalty=0.0388, clustering_loss=0.0193, elbo=573.0837, epoch=374/1001, vae_loss=573.1418]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 375/1000 [00:07<00:12, 49.90it/s, bio_penalty=0.0390, clustering_loss=0.0193, elbo=574.4628, epoch=375/1001, vae_loss=574.5211]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 376/1000 [00:07<00:12, 50.12it/s, bio_penalty=0.0390, clustering_loss=0.0193, elbo=574.4628, epoch=375/1001, vae_loss=574.5211]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 376/1000 [00:07<00:12, 50.12it/s, bio_penalty=0.0378, clustering_loss=0.0193, elbo=572.9253, epoch=376/1001, vae_loss=572.9824]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 377/1000 [00:07<00:12, 50.12it/s, bio_penalty=0.0356, clustering_loss=0.0193, elbo=573.0132, epoch=377/1001, vae_loss=573.0682]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 378/1000 [00:07<00:12, 50.12it/s, bio_penalty=0.0354, clustering_loss=0.0193, elbo=573.2398, epoch=378/1001, vae_loss=573.2946]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 379/1000 [00:07<00:12, 50.12it/s, bio_penalty=0.0351, clustering_loss=0.0193, elbo=570.9594, epoch=379/1001, vae_loss=571.0138]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 380/1000 [00:07<00:12, 50.12it/s, bio_penalty=0.0334, clustering_loss=0.0193, elbo=573.0597, epoch=380/1001, vae_loss=573.1125]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 381/1000 [00:07<00:12, 50.12it/s, bio_penalty=0.0346, clustering_loss=0.0193, elbo=570.1891, epoch=381/1001, vae_loss=570.2432]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 382/1000 [00:07<00:12, 50.22it/s, bio_penalty=0.0346, clustering_loss=0.0193, elbo=570.1891, epoch=381/1001, vae_loss=570.2432]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 382/1000 [00:07<00:12, 50.22it/s, bio_penalty=0.0351, clustering_loss=0.0193, elbo=571.6727, epoch=382/1001, vae_loss=571.7272]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 383/1000 [00:07<00:12, 50.22it/s, bio_penalty=0.0357, clustering_loss=0.0193, elbo=569.5302, epoch=383/1001, vae_loss=569.5852]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 384/1000 [00:07<00:12, 50.22it/s, bio_penalty=0.0357, clustering_loss=0.0193, elbo=573.0479, epoch=384/1001, vae_loss=573.1029]
Training: VAE for learning meaningful embeddings:  38%|███▊      | 385/1000 [00:07<00:12, 50.22it/s, bio_penalty=0.0362, clustering_loss=0.0193, elbo=575.7349, epoch=385/1001, vae_loss=575.7904]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 386/1000 [00:07<00:12, 50.22it/s, bio_penalty=0.0378, clustering_loss=0.0193, elbo=568.4416, epoch=386/1001, vae_loss=568.4987]
Training: VAE for learning meaningful embeddings:  39%|███▊      | 387/1000 [00:07<00:12, 50.22it/s, bio_penalty=0.0345, clustering_loss=0.0194, elbo=579.0072, epoch=387/1001, vae_loss=579.0610]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 388/1000 [00:07<00:12, 50.26it/s, bio_penalty=0.0345, clustering_loss=0.0194, elbo=579.0072, epoch=387/1001, vae_loss=579.0610]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 388/1000 [00:07<00:12, 50.26it/s, bio_penalty=0.0340, clustering_loss=0.0194, elbo=568.9424, epoch=388/1001, vae_loss=568.9958]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 389/1000 [00:07<00:12, 50.26it/s, bio_penalty=0.0332, clustering_loss=0.0194, elbo=570.9440, epoch=389/1001, vae_loss=570.9965]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 390/1000 [00:08<00:12, 50.26it/s, bio_penalty=0.0316, clustering_loss=0.0194, elbo=569.1775, epoch=390/1001, vae_loss=569.2285]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 391/1000 [00:08<00:12, 50.26it/s, bio_penalty=0.0316, clustering_loss=0.0194, elbo=567.8156, epoch=391/1001, vae_loss=567.8665]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 392/1000 [00:08<00:12, 50.26it/s, bio_penalty=0.0321, clustering_loss=0.0194, elbo=569.5684, epoch=392/1001, vae_loss=569.6199]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 393/1000 [00:08<00:12, 50.26it/s, bio_penalty=0.0311, clustering_loss=0.0194, elbo=567.2903, epoch=393/1001, vae_loss=567.3407]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 394/1000 [00:08<00:12, 50.24it/s, bio_penalty=0.0311, clustering_loss=0.0194, elbo=567.2903, epoch=393/1001, vae_loss=567.3407]
Training: VAE for learning meaningful embeddings:  39%|███▉      | 394/1000 [00:08<00:12, 50.24it/s, bio_penalty=0.0304, clustering_loss=0.0194, elbo=567.3223, epoch=394/1001, vae_loss=567.3721]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 395/1000 [00:08<00:12, 50.24it/s, bio_penalty=0.0293, clustering_loss=0.0194, elbo=565.9181, epoch=395/1001, vae_loss=565.9667]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 396/1000 [00:08<00:12, 50.24it/s, bio_penalty=0.0302, clustering_loss=0.0194, elbo=567.0312, epoch=396/1001, vae_loss=567.0807]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 397/1000 [00:08<00:12, 50.24it/s, bio_penalty=0.0306, clustering_loss=0.0194, elbo=568.1339, epoch=397/1001, vae_loss=568.1838]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 398/1000 [00:08<00:11, 50.24it/s, bio_penalty=0.0318, clustering_loss=0.0194, elbo=566.6497, epoch=398/1001, vae_loss=566.7008]
Training: VAE for learning meaningful embeddings:  40%|███▉      | 399/1000 [00:08<00:11, 50.24it/s, bio_penalty=0.0292, clustering_loss=0.0194, elbo=564.5488, epoch=399/1001, vae_loss=564.5974]
Training: VAE for learning meaningful embeddings:  40%|████      | 400/1000 [00:08<00:11, 50.40it/s, bio_penalty=0.0292, clustering_loss=0.0194, elbo=564.5488, epoch=399/1001, vae_loss=564.5974]
Training: VAE for learning meaningful embeddings:  40%|████      | 400/1000 [00:08<00:11, 50.40it/s, bio_penalty=0.0281, clustering_loss=0.0194, elbo=566.1080, epoch=400/1001, vae_loss=566.1556]
Training: VAE for learning meaningful embeddings:  40%|████      | 401/1000 [00:08<00:11, 50.40it/s, bio_penalty=0.0304, clustering_loss=0.0194, elbo=563.1494, epoch=401/1001, vae_loss=563.1992]
Training: VAE for learning meaningful embeddings:  40%|████      | 402/1000 [00:08<00:11, 50.40it/s, bio_penalty=0.0322, clustering_loss=0.0194, elbo=566.1798, epoch=402/1001, vae_loss=566.2314]
Training: VAE for learning meaningful embeddings:  40%|████      | 403/1000 [00:08<00:11, 50.40it/s, bio_penalty=0.0322, clustering_loss=0.0194, elbo=562.1442, epoch=403/1001, vae_loss=562.1958]
Training: VAE for learning meaningful embeddings:  40%|████      | 404/1000 [00:08<00:11, 50.40it/s, bio_penalty=0.0320, clustering_loss=0.0194, elbo=564.1456, epoch=404/1001, vae_loss=564.1970]
Training: VAE for learning meaningful embeddings:  40%|████      | 405/1000 [00:08<00:11, 50.40it/s, bio_penalty=0.0323, clustering_loss=0.0194, elbo=563.5119, epoch=405/1001, vae_loss=563.5637]
Training: VAE for learning meaningful embeddings:  41%|████      | 406/1000 [00:08<00:11, 50.48it/s, bio_penalty=0.0323, clustering_loss=0.0194, elbo=563.5119, epoch=405/1001, vae_loss=563.5637]
Training: VAE for learning meaningful embeddings:  41%|████      | 406/1000 [00:08<00:11, 50.48it/s, bio_penalty=0.0321, clustering_loss=0.0194, elbo=562.1550, epoch=406/1001, vae_loss=562.2065]
Training: VAE for learning meaningful embeddings:  41%|████      | 407/1000 [00:08<00:11, 50.48it/s, bio_penalty=0.0319, clustering_loss=0.0194, elbo=562.2431, epoch=407/1001, vae_loss=562.2944]
Training: VAE for learning meaningful embeddings:  41%|████      | 408/1000 [00:08<00:11, 50.48it/s, bio_penalty=0.0319, clustering_loss=0.0194, elbo=563.1530, epoch=408/1001, vae_loss=563.2043]
Training: VAE for learning meaningful embeddings:  41%|████      | 409/1000 [00:08<00:11, 50.48it/s, bio_penalty=0.0285, clustering_loss=0.0194, elbo=561.2764, epoch=409/1001, vae_loss=561.3243]
Training: VAE for learning meaningful embeddings:  41%|████      | 410/1000 [00:08<00:11, 50.48it/s, bio_penalty=0.0288, clustering_loss=0.0194, elbo=560.7908, epoch=410/1001, vae_loss=560.8389]
Training: VAE for learning meaningful embeddings:  41%|████      | 411/1000 [00:08<00:11, 50.48it/s, bio_penalty=0.0302, clustering_loss=0.0194, elbo=560.3608, epoch=411/1001, vae_loss=560.4104]
Training: VAE for learning meaningful embeddings:  41%|████      | 412/1000 [00:08<00:11, 50.26it/s, bio_penalty=0.0302, clustering_loss=0.0194, elbo=560.3608, epoch=411/1001, vae_loss=560.4104]
Training: VAE for learning meaningful embeddings:  41%|████      | 412/1000 [00:08<00:11, 50.26it/s, bio_penalty=0.0302, clustering_loss=0.0194, elbo=562.1849, epoch=412/1001, vae_loss=562.2346]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 413/1000 [00:08<00:11, 50.26it/s, bio_penalty=0.0305, clustering_loss=0.0194, elbo=561.5413, epoch=413/1001, vae_loss=561.5912]
Training: VAE for learning meaningful embeddings:  41%|████▏     | 414/1000 [00:08<00:11, 50.26it/s, bio_penalty=0.0301, clustering_loss=0.0194, elbo=559.3790, epoch=414/1001, vae_loss=559.4286]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 415/1000 [00:08<00:11, 50.26it/s, bio_penalty=0.0292, clustering_loss=0.0194, elbo=559.6286, epoch=415/1001, vae_loss=559.6772]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 416/1000 [00:08<00:11, 50.26it/s, bio_penalty=0.0300, clustering_loss=0.0194, elbo=557.4078, epoch=416/1001, vae_loss=557.4572]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 417/1000 [00:08<00:11, 50.26it/s, bio_penalty=0.0297, clustering_loss=0.0194, elbo=560.1177, epoch=417/1001, vae_loss=560.1669]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 418/1000 [00:08<00:11, 50.46it/s, bio_penalty=0.0297, clustering_loss=0.0194, elbo=560.1177, epoch=417/1001, vae_loss=560.1669]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 418/1000 [00:08<00:11, 50.46it/s, bio_penalty=0.0286, clustering_loss=0.0194, elbo=559.8275, epoch=418/1001, vae_loss=559.8755]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 419/1000 [00:08<00:11, 50.46it/s, bio_penalty=0.0296, clustering_loss=0.0194, elbo=560.4606, epoch=419/1001, vae_loss=560.5096]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 420/1000 [00:08<00:11, 50.46it/s, bio_penalty=0.0300, clustering_loss=0.0194, elbo=557.4857, epoch=420/1001, vae_loss=557.5351]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 421/1000 [00:08<00:11, 50.46it/s, bio_penalty=0.0283, clustering_loss=0.0194, elbo=560.7379, epoch=421/1001, vae_loss=560.7856]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 422/1000 [00:08<00:11, 50.46it/s, bio_penalty=0.0308, clustering_loss=0.0194, elbo=562.2533, epoch=422/1001, vae_loss=562.3035]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 423/1000 [00:08<00:11, 50.46it/s, bio_penalty=0.0282, clustering_loss=0.0194, elbo=556.6641, epoch=423/1001, vae_loss=556.7116]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 424/1000 [00:08<00:11, 49.67it/s, bio_penalty=0.0282, clustering_loss=0.0194, elbo=556.6641, epoch=423/1001, vae_loss=556.7116]
Training: VAE for learning meaningful embeddings:  42%|████▏     | 424/1000 [00:08<00:11, 49.67it/s, bio_penalty=0.0269, clustering_loss=0.0194, elbo=559.3212, epoch=424/1001, vae_loss=559.3674]
Training: VAE for learning meaningful embeddings:  42%|████▎     | 425/1000 [00:08<00:11, 49.67it/s, bio_penalty=0.0300, clustering_loss=0.0194, elbo=557.1986, epoch=425/1001, vae_loss=557.2481]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 426/1000 [00:08<00:11, 49.67it/s, bio_penalty=0.0290, clustering_loss=0.0194, elbo=557.0035, epoch=426/1001, vae_loss=557.0520]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 427/1000 [00:08<00:11, 49.67it/s, bio_penalty=0.0269, clustering_loss=0.0194, elbo=556.4360, epoch=427/1001, vae_loss=556.4824]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 428/1000 [00:08<00:11, 49.67it/s, bio_penalty=0.0271, clustering_loss=0.0194, elbo=555.8458, epoch=428/1001, vae_loss=555.8924]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 429/1000 [00:08<00:11, 49.34it/s, bio_penalty=0.0271, clustering_loss=0.0194, elbo=555.8458, epoch=428/1001, vae_loss=555.8924]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 429/1000 [00:08<00:11, 49.34it/s, bio_penalty=0.0252, clustering_loss=0.0194, elbo=555.2435, epoch=429/1001, vae_loss=555.2881]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 430/1000 [00:08<00:11, 49.34it/s, bio_penalty=0.0254, clustering_loss=0.0195, elbo=557.2217, epoch=430/1001, vae_loss=557.2667]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 431/1000 [00:08<00:11, 49.34it/s, bio_penalty=0.0251, clustering_loss=0.0195, elbo=556.4229, epoch=431/1001, vae_loss=556.4675]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 432/1000 [00:08<00:11, 49.34it/s, bio_penalty=0.0249, clustering_loss=0.0195, elbo=553.9260, epoch=432/1001, vae_loss=553.9704]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 433/1000 [00:08<00:11, 49.34it/s, bio_penalty=0.0263, clustering_loss=0.0195, elbo=554.1638, epoch=433/1001, vae_loss=554.2095]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 434/1000 [00:08<00:11, 49.06it/s, bio_penalty=0.0263, clustering_loss=0.0195, elbo=554.1638, epoch=433/1001, vae_loss=554.2095]
Training: VAE for learning meaningful embeddings:  43%|████▎     | 434/1000 [00:08<00:11, 49.06it/s, bio_penalty=0.0282, clustering_loss=0.0195, elbo=555.7017, epoch=434/1001, vae_loss=555.7495]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 435/1000 [00:08<00:11, 49.06it/s, bio_penalty=0.0298, clustering_loss=0.0195, elbo=553.1713, epoch=435/1001, vae_loss=553.2205]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 436/1000 [00:08<00:11, 49.06it/s, bio_penalty=0.0289, clustering_loss=0.0195, elbo=554.7108, epoch=436/1001, vae_loss=554.7592]
Training: VAE for learning meaningful embeddings:  44%|████▎     | 437/1000 [00:08<00:11, 49.06it/s, bio_penalty=0.0279, clustering_loss=0.0195, elbo=554.6276, epoch=437/1001, vae_loss=554.6750]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 438/1000 [00:08<00:11, 49.06it/s, bio_penalty=0.0280, clustering_loss=0.0195, elbo=552.7086, epoch=438/1001, vae_loss=552.7560]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 439/1000 [00:08<00:11, 48.74it/s, bio_penalty=0.0280, clustering_loss=0.0195, elbo=552.7086, epoch=438/1001, vae_loss=552.7560]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 439/1000 [00:08<00:11, 48.74it/s, bio_penalty=0.0259, clustering_loss=0.0195, elbo=552.6145, epoch=439/1001, vae_loss=552.6599]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 440/1000 [00:09<00:11, 48.74it/s, bio_penalty=0.0248, clustering_loss=0.0195, elbo=553.6714, epoch=440/1001, vae_loss=553.7156]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 441/1000 [00:09<00:11, 48.74it/s, bio_penalty=0.0246, clustering_loss=0.0195, elbo=554.5742, epoch=441/1001, vae_loss=554.6182]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 442/1000 [00:09<00:11, 48.74it/s, bio_penalty=0.0236, clustering_loss=0.0195, elbo=554.2698, epoch=442/1001, vae_loss=554.3129]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 443/1000 [00:09<00:11, 48.74it/s, bio_penalty=0.0248, clustering_loss=0.0195, elbo=553.4315, epoch=443/1001, vae_loss=553.4758]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 444/1000 [00:09<00:11, 48.15it/s, bio_penalty=0.0248, clustering_loss=0.0195, elbo=553.4315, epoch=443/1001, vae_loss=553.4758]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 444/1000 [00:09<00:11, 48.15it/s, bio_penalty=0.0253, clustering_loss=0.0195, elbo=555.5316, epoch=444/1001, vae_loss=555.5763]
Training: VAE for learning meaningful embeddings:  44%|████▍     | 445/1000 [00:09<00:11, 48.15it/s, bio_penalty=0.0240, clustering_loss=0.0195, elbo=552.1476, epoch=445/1001, vae_loss=552.1911]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 446/1000 [00:09<00:11, 48.15it/s, bio_penalty=0.0250, clustering_loss=0.0195, elbo=551.4451, epoch=446/1001, vae_loss=551.4896]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 447/1000 [00:09<00:11, 48.15it/s, bio_penalty=0.0253, clustering_loss=0.0195, elbo=555.5501, epoch=447/1001, vae_loss=555.5949]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 448/1000 [00:09<00:11, 48.15it/s, bio_penalty=0.0247, clustering_loss=0.0195, elbo=554.5449, epoch=448/1001, vae_loss=554.5891]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 449/1000 [00:09<00:11, 48.60it/s, bio_penalty=0.0247, clustering_loss=0.0195, elbo=554.5449, epoch=448/1001, vae_loss=554.5891]
Training: VAE for learning meaningful embeddings:  45%|████▍     | 449/1000 [00:09<00:11, 48.60it/s, bio_penalty=0.0235, clustering_loss=0.0195, elbo=550.1695, epoch=449/1001, vae_loss=550.2125]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 450/1000 [00:09<00:11, 48.60it/s, bio_penalty=0.0269, clustering_loss=0.0195, elbo=556.7985, epoch=450/1001, vae_loss=556.8448]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 451/1000 [00:09<00:11, 48.60it/s, bio_penalty=0.0227, clustering_loss=0.0195, elbo=550.4308, epoch=451/1001, vae_loss=550.4730]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 452/1000 [00:09<00:11, 48.60it/s, bio_penalty=0.0232, clustering_loss=0.0195, elbo=552.5253, epoch=452/1001, vae_loss=552.5680]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 453/1000 [00:09<00:11, 48.60it/s, bio_penalty=0.0218, clustering_loss=0.0195, elbo=554.2148, epoch=453/1001, vae_loss=554.2561]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 454/1000 [00:09<00:11, 48.78it/s, bio_penalty=0.0218, clustering_loss=0.0195, elbo=554.2148, epoch=453/1001, vae_loss=554.2561]
Training: VAE for learning meaningful embeddings:  45%|████▌     | 454/1000 [00:09<00:11, 48.78it/s, bio_penalty=0.0229, clustering_loss=0.0195, elbo=548.3667, epoch=454/1001, vae_loss=548.4091]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 455/1000 [00:09<00:11, 48.78it/s, bio_penalty=0.0226, clustering_loss=0.0195, elbo=556.8295, epoch=455/1001, vae_loss=556.8716]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 456/1000 [00:09<00:11, 48.78it/s, bio_penalty=0.0223, clustering_loss=0.0195, elbo=550.2276, epoch=456/1001, vae_loss=550.2693]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 457/1000 [00:09<00:11, 48.78it/s, bio_penalty=0.0215, clustering_loss=0.0195, elbo=550.5839, epoch=457/1001, vae_loss=550.6248]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 458/1000 [00:09<00:11, 48.78it/s, bio_penalty=0.0249, clustering_loss=0.0195, elbo=551.3526, epoch=458/1001, vae_loss=551.3969]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 459/1000 [00:09<00:11, 48.86it/s, bio_penalty=0.0249, clustering_loss=0.0195, elbo=551.3526, epoch=458/1001, vae_loss=551.3969]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 459/1000 [00:09<00:11, 48.86it/s, bio_penalty=0.0228, clustering_loss=0.0195, elbo=547.9199, epoch=459/1001, vae_loss=547.9622]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 460/1000 [00:09<00:11, 48.86it/s, bio_penalty=0.0240, clustering_loss=0.0195, elbo=550.0779, epoch=460/1001, vae_loss=550.1214]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 461/1000 [00:09<00:11, 48.86it/s, bio_penalty=0.0265, clustering_loss=0.0195, elbo=550.2032, epoch=461/1001, vae_loss=550.2493]
Training: VAE for learning meaningful embeddings:  46%|████▌     | 462/1000 [00:09<00:11, 48.86it/s, bio_penalty=0.0211, clustering_loss=0.0195, elbo=548.6932, epoch=462/1001, vae_loss=548.7339]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 463/1000 [00:09<00:10, 48.86it/s, bio_penalty=0.0214, clustering_loss=0.0195, elbo=550.2134, epoch=463/1001, vae_loss=550.2544]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 464/1000 [00:09<00:10, 49.01it/s, bio_penalty=0.0214, clustering_loss=0.0195, elbo=550.2134, epoch=463/1001, vae_loss=550.2544]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 464/1000 [00:09<00:10, 49.01it/s, bio_penalty=0.0215, clustering_loss=0.0195, elbo=546.3147, epoch=464/1001, vae_loss=546.3558]
Training: VAE for learning meaningful embeddings:  46%|████▋     | 465/1000 [00:09<00:10, 49.01it/s, bio_penalty=0.0225, clustering_loss=0.0195, elbo=547.4102, epoch=465/1001, vae_loss=547.4523]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 466/1000 [00:09<00:10, 49.01it/s, bio_penalty=0.0220, clustering_loss=0.0195, elbo=547.1876, epoch=466/1001, vae_loss=547.2291]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 467/1000 [00:09<00:10, 49.01it/s, bio_penalty=0.0231, clustering_loss=0.0195, elbo=552.0351, epoch=467/1001, vae_loss=552.0777]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 468/1000 [00:09<00:10, 49.01it/s, bio_penalty=0.0240, clustering_loss=0.0195, elbo=547.7512, epoch=468/1001, vae_loss=547.7947]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 469/1000 [00:09<00:11, 48.12it/s, bio_penalty=0.0240, clustering_loss=0.0195, elbo=547.7512, epoch=468/1001, vae_loss=547.7947]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 469/1000 [00:09<00:11, 48.12it/s, bio_penalty=0.0220, clustering_loss=0.0195, elbo=546.9724, epoch=469/1001, vae_loss=547.0140]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 470/1000 [00:09<00:11, 48.12it/s, bio_penalty=0.0212, clustering_loss=0.0195, elbo=545.2367, epoch=470/1001, vae_loss=545.2774]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 471/1000 [00:09<00:10, 48.12it/s, bio_penalty=0.0216, clustering_loss=0.0195, elbo=545.3263, epoch=471/1001, vae_loss=545.3674]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 472/1000 [00:09<00:10, 48.12it/s, bio_penalty=0.0221, clustering_loss=0.0195, elbo=544.5820, epoch=472/1001, vae_loss=544.6236]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 473/1000 [00:09<00:10, 48.12it/s, bio_penalty=0.0202, clustering_loss=0.0195, elbo=545.3453, epoch=473/1001, vae_loss=545.3851]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 474/1000 [00:09<00:10, 48.36it/s, bio_penalty=0.0202, clustering_loss=0.0195, elbo=545.3453, epoch=473/1001, vae_loss=545.3851]
Training: VAE for learning meaningful embeddings:  47%|████▋     | 474/1000 [00:09<00:10, 48.36it/s, bio_penalty=0.0207, clustering_loss=0.0195, elbo=545.6352, epoch=474/1001, vae_loss=545.6754]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 475/1000 [00:09<00:10, 48.36it/s, bio_penalty=0.0203, clustering_loss=0.0195, elbo=545.5732, epoch=475/1001, vae_loss=545.6130]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 476/1000 [00:09<00:10, 48.36it/s, bio_penalty=0.0198, clustering_loss=0.0195, elbo=547.6584, epoch=476/1001, vae_loss=547.6977]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 477/1000 [00:09<00:10, 48.36it/s, bio_penalty=0.0197, clustering_loss=0.0195, elbo=542.9235, epoch=477/1001, vae_loss=542.9627]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 478/1000 [00:09<00:10, 48.36it/s, bio_penalty=0.0203, clustering_loss=0.0195, elbo=545.0269, epoch=478/1001, vae_loss=545.0668]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 479/1000 [00:09<00:10, 48.48it/s, bio_penalty=0.0203, clustering_loss=0.0195, elbo=545.0269, epoch=478/1001, vae_loss=545.0668]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 479/1000 [00:09<00:10, 48.48it/s, bio_penalty=0.0243, clustering_loss=0.0195, elbo=543.9588, epoch=479/1001, vae_loss=544.0026]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 480/1000 [00:09<00:10, 48.48it/s, bio_penalty=0.0193, clustering_loss=0.0195, elbo=542.3770, epoch=480/1001, vae_loss=542.4158]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 481/1000 [00:09<00:10, 48.48it/s, bio_penalty=0.0191, clustering_loss=0.0195, elbo=546.5195, epoch=481/1001, vae_loss=546.5581]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 482/1000 [00:09<00:10, 48.48it/s, bio_penalty=0.0197, clustering_loss=0.0195, elbo=547.1942, epoch=482/1001, vae_loss=547.2334]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 483/1000 [00:09<00:10, 48.48it/s, bio_penalty=0.0194, clustering_loss=0.0195, elbo=540.5045, epoch=483/1001, vae_loss=540.5435]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 484/1000 [00:09<00:10, 48.48it/s, bio_penalty=0.0183, clustering_loss=0.0195, elbo=544.9997, epoch=484/1001, vae_loss=545.0375]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 485/1000 [00:09<00:10, 48.89it/s, bio_penalty=0.0183, clustering_loss=0.0195, elbo=544.9997, epoch=484/1001, vae_loss=545.0375]
Training: VAE for learning meaningful embeddings:  48%|████▊     | 485/1000 [00:09<00:10, 48.89it/s, bio_penalty=0.0190, clustering_loss=0.0195, elbo=548.2255, epoch=485/1001, vae_loss=548.2640]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 486/1000 [00:09<00:10, 48.89it/s, bio_penalty=0.0200, clustering_loss=0.0195, elbo=548.1547, epoch=486/1001, vae_loss=548.1943]
Training: VAE for learning meaningful embeddings:  49%|████▊     | 487/1000 [00:09<00:10, 48.89it/s, bio_penalty=0.0227, clustering_loss=0.0195, elbo=546.9261, epoch=487/1001, vae_loss=546.9683]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 488/1000 [00:10<00:10, 48.89it/s, bio_penalty=0.0192, clustering_loss=0.0195, elbo=545.4735, epoch=488/1001, vae_loss=545.5123]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 489/1000 [00:10<00:10, 48.89it/s, bio_penalty=0.0206, clustering_loss=0.0195, elbo=543.5801, epoch=489/1001, vae_loss=543.6202]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 490/1000 [00:10<00:10, 48.62it/s, bio_penalty=0.0206, clustering_loss=0.0195, elbo=543.5801, epoch=489/1001, vae_loss=543.6202]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 490/1000 [00:10<00:10, 48.62it/s, bio_penalty=0.0190, clustering_loss=0.0195, elbo=545.7900, epoch=490/1001, vae_loss=545.8286]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 491/1000 [00:10<00:10, 48.62it/s, bio_penalty=0.0183, clustering_loss=0.0195, elbo=545.2576, epoch=491/1001, vae_loss=545.2954]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 492/1000 [00:10<00:10, 48.62it/s, bio_penalty=0.0185, clustering_loss=0.0195, elbo=544.7938, epoch=492/1001, vae_loss=544.8318]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 493/1000 [00:10<00:10, 48.62it/s, bio_penalty=0.0186, clustering_loss=0.0195, elbo=543.1536, epoch=493/1001, vae_loss=543.1917]
Training: VAE for learning meaningful embeddings:  49%|████▉     | 494/1000 [00:10<00:10, 48.62it/s, bio_penalty=0.0195, clustering_loss=0.0195, elbo=546.4927, epoch=494/1001, vae_loss=546.5318]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 495/1000 [00:10<00:10, 48.74it/s, bio_penalty=0.0195, clustering_loss=0.0195, elbo=546.4927, epoch=494/1001, vae_loss=546.5318]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 495/1000 [00:10<00:10, 48.74it/s, bio_penalty=0.0180, clustering_loss=0.0195, elbo=542.7523, epoch=495/1001, vae_loss=542.7899]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 496/1000 [00:10<00:10, 48.74it/s, bio_penalty=0.0183, clustering_loss=0.0195, elbo=543.7964, epoch=496/1001, vae_loss=543.8342]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 497/1000 [00:10<00:10, 48.74it/s, bio_penalty=0.0178, clustering_loss=0.0195, elbo=542.1754, epoch=497/1001, vae_loss=542.2128]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 498/1000 [00:10<00:10, 48.74it/s, bio_penalty=0.0192, clustering_loss=0.0196, elbo=544.1862, epoch=498/1001, vae_loss=544.2249]
Training: VAE for learning meaningful embeddings:  50%|████▉     | 499/1000 [00:10<00:10, 48.74it/s, bio_penalty=0.0182, clustering_loss=0.0196, elbo=537.8777, epoch=499/1001, vae_loss=537.9154]
Training: VAE for learning meaningful embeddings:  50%|█████     | 500/1000 [00:10<00:10, 48.18it/s, bio_penalty=0.0182, clustering_loss=0.0196, elbo=537.8777, epoch=499/1001, vae_loss=537.9154]
Training: VAE for learning meaningful embeddings:  50%|█████     | 500/1000 [00:10<00:10, 48.18it/s, bio_penalty=0.0190, clustering_loss=0.0196, elbo=541.5914, epoch=500/1001, vae_loss=541.6299]
Training: VAE for learning meaningful embeddings:  50%|█████     | 501/1000 [00:10<00:10, 48.18it/s, bio_penalty=0.0217, clustering_loss=0.0196, elbo=539.5260, epoch=501/1001, vae_loss=539.5673]
Training: VAE for learning meaningful embeddings:  50%|█████     | 502/1000 [00:10<00:10, 48.18it/s, bio_penalty=0.0193, clustering_loss=0.0196, elbo=542.1869, epoch=502/1001, vae_loss=542.2258]
Training: VAE for learning meaningful embeddings:  50%|█████     | 503/1000 [00:10<00:10, 48.18it/s, bio_penalty=0.0184, clustering_loss=0.0196, elbo=536.6269, epoch=503/1001, vae_loss=536.6648]
Training: VAE for learning meaningful embeddings:  50%|█████     | 504/1000 [00:10<00:10, 48.18it/s, bio_penalty=0.0235, clustering_loss=0.0196, elbo=538.9158, epoch=504/1001, vae_loss=538.9589]
Training: VAE for learning meaningful embeddings:  50%|█████     | 505/1000 [00:10<00:10, 47.88it/s, bio_penalty=0.0235, clustering_loss=0.0196, elbo=538.9158, epoch=504/1001, vae_loss=538.9589]
Training: VAE for learning meaningful embeddings:  50%|█████     | 505/1000 [00:10<00:10, 47.88it/s, bio_penalty=0.0183, clustering_loss=0.0196, elbo=536.5430, epoch=505/1001, vae_loss=536.5809]
Training: VAE for learning meaningful embeddings:  51%|█████     | 506/1000 [00:10<00:10, 47.88it/s, bio_penalty=0.0185, clustering_loss=0.0196, elbo=536.2993, epoch=506/1001, vae_loss=536.3373]
Training: VAE for learning meaningful embeddings:  51%|█████     | 507/1000 [00:10<00:10, 47.88it/s, bio_penalty=0.0194, clustering_loss=0.0196, elbo=536.3373, epoch=507/1001, vae_loss=536.3762]
Training: VAE for learning meaningful embeddings:  51%|█████     | 508/1000 [00:10<00:10, 47.88it/s, bio_penalty=0.0179, clustering_loss=0.0196, elbo=535.5390, epoch=508/1001, vae_loss=535.5765]
Training: VAE for learning meaningful embeddings:  51%|█████     | 509/1000 [00:10<00:10, 47.88it/s, bio_penalty=0.0184, clustering_loss=0.0196, elbo=534.9763, epoch=509/1001, vae_loss=535.0142]
Training: VAE for learning meaningful embeddings:  51%|█████     | 510/1000 [00:10<00:10, 48.13it/s, bio_penalty=0.0184, clustering_loss=0.0196, elbo=534.9763, epoch=509/1001, vae_loss=535.0142]
Training: VAE for learning meaningful embeddings:  51%|█████     | 510/1000 [00:10<00:10, 48.13it/s, bio_penalty=0.0218, clustering_loss=0.0196, elbo=536.8634, epoch=510/1001, vae_loss=536.9047]
Training: VAE for learning meaningful embeddings:  51%|█████     | 511/1000 [00:10<00:10, 48.13it/s, bio_penalty=0.0176, clustering_loss=0.0196, elbo=535.6931, epoch=511/1001, vae_loss=535.7302]
Training: VAE for learning meaningful embeddings:  51%|█████     | 512/1000 [00:10<00:10, 48.13it/s, bio_penalty=0.0184, clustering_loss=0.0196, elbo=533.4854, epoch=512/1001, vae_loss=533.5233]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 513/1000 [00:10<00:10, 48.13it/s, bio_penalty=0.0179, clustering_loss=0.0196, elbo=535.3618, epoch=513/1001, vae_loss=535.3993]
Training: VAE for learning meaningful embeddings:  51%|█████▏    | 514/1000 [00:10<00:10, 48.13it/s, bio_penalty=0.0179, clustering_loss=0.0196, elbo=533.0657, epoch=514/1001, vae_loss=533.1032]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 515/1000 [00:10<00:10, 48.43it/s, bio_penalty=0.0179, clustering_loss=0.0196, elbo=533.0657, epoch=514/1001, vae_loss=533.1032]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 515/1000 [00:10<00:10, 48.43it/s, bio_penalty=0.0169, clustering_loss=0.0196, elbo=538.9278, epoch=515/1001, vae_loss=538.9644]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 516/1000 [00:10<00:09, 48.43it/s, bio_penalty=0.0181, clustering_loss=0.0196, elbo=537.4635, epoch=516/1001, vae_loss=537.5012]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 517/1000 [00:10<00:09, 48.43it/s, bio_penalty=0.0160, clustering_loss=0.0196, elbo=532.7507, epoch=517/1001, vae_loss=532.7864]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 518/1000 [00:10<00:09, 48.43it/s, bio_penalty=0.0162, clustering_loss=0.0196, elbo=534.1758, epoch=518/1001, vae_loss=534.2117]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 519/1000 [00:10<00:09, 48.43it/s, bio_penalty=0.0180, clustering_loss=0.0196, elbo=537.2555, epoch=519/1001, vae_loss=537.2931]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 520/1000 [00:10<00:09, 48.16it/s, bio_penalty=0.0180, clustering_loss=0.0196, elbo=537.2555, epoch=519/1001, vae_loss=537.2931]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 520/1000 [00:10<00:09, 48.16it/s, bio_penalty=0.0167, clustering_loss=0.0196, elbo=531.7224, epoch=520/1001, vae_loss=531.7587]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 521/1000 [00:10<00:09, 48.16it/s, bio_penalty=0.0159, clustering_loss=0.0196, elbo=532.7581, epoch=521/1001, vae_loss=532.7936]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 522/1000 [00:10<00:09, 48.16it/s, bio_penalty=0.0160, clustering_loss=0.0196, elbo=531.5496, epoch=522/1001, vae_loss=531.5853]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 523/1000 [00:10<00:09, 48.16it/s, bio_penalty=0.0159, clustering_loss=0.0196, elbo=531.7902, epoch=523/1001, vae_loss=531.8256]
Training: VAE for learning meaningful embeddings:  52%|█████▏    | 524/1000 [00:10<00:09, 48.16it/s, bio_penalty=0.0161, clustering_loss=0.0196, elbo=531.6281, epoch=524/1001, vae_loss=531.6638]
Training: VAE for learning meaningful embeddings:  52%|█████▎    | 525/1000 [00:10<00:09, 48.44it/s, bio_penalty=0.0161, clustering_loss=0.0196, elbo=531.6281, epoch=524/1001, vae_loss=531.6638]
Training: VAE for learning meaningful embeddings:  52%|█████▎    | 525/1000 [00:10<00:09, 48.44it/s, bio_penalty=0.0173, clustering_loss=0.0196, elbo=534.4335, epoch=525/1001, vae_loss=534.4703]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 526/1000 [00:10<00:09, 48.44it/s, bio_penalty=0.0157, clustering_loss=0.0196, elbo=529.9894, epoch=526/1001, vae_loss=530.0248]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 527/1000 [00:10<00:09, 48.44it/s, bio_penalty=0.0154, clustering_loss=0.0196, elbo=530.5022, epoch=527/1001, vae_loss=530.5372]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 528/1000 [00:10<00:09, 48.44it/s, bio_penalty=0.0153, clustering_loss=0.0196, elbo=533.5569, epoch=528/1001, vae_loss=533.5918]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 529/1000 [00:10<00:09, 48.44it/s, bio_penalty=0.0173, clustering_loss=0.0196, elbo=536.2810, epoch=529/1001, vae_loss=536.3179]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 530/1000 [00:10<00:09, 48.61it/s, bio_penalty=0.0173, clustering_loss=0.0196, elbo=536.2810, epoch=529/1001, vae_loss=536.3179]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 530/1000 [00:10<00:09, 48.61it/s, bio_penalty=0.0166, clustering_loss=0.0196, elbo=533.4697, epoch=530/1001, vae_loss=533.5058]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 531/1000 [00:10<00:09, 48.61it/s, bio_penalty=0.0163, clustering_loss=0.0196, elbo=530.7395, epoch=531/1001, vae_loss=530.7755]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 532/1000 [00:10<00:09, 48.61it/s, bio_penalty=0.0174, clustering_loss=0.0196, elbo=536.9368, epoch=532/1001, vae_loss=536.9738]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 533/1000 [00:10<00:09, 48.61it/s, bio_penalty=0.0162, clustering_loss=0.0196, elbo=527.2687, epoch=533/1001, vae_loss=527.3045]
Training: VAE for learning meaningful embeddings:  53%|█████▎    | 534/1000 [00:10<00:09, 48.61it/s, bio_penalty=0.0194, clustering_loss=0.0196, elbo=533.3318, epoch=534/1001, vae_loss=533.3708]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 535/1000 [00:10<00:09, 48.62it/s, bio_penalty=0.0194, clustering_loss=0.0196, elbo=533.3318, epoch=534/1001, vae_loss=533.3708]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 535/1000 [00:10<00:09, 48.62it/s, bio_penalty=0.0157, clustering_loss=0.0196, elbo=530.4571, epoch=535/1001, vae_loss=530.4924]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 536/1000 [00:10<00:09, 48.62it/s, bio_penalty=0.0183, clustering_loss=0.0196, elbo=528.7712, epoch=536/1001, vae_loss=528.8091]
Training: VAE for learning meaningful embeddings:  54%|█████▎    | 537/1000 [00:11<00:09, 48.62it/s, bio_penalty=0.0168, clustering_loss=0.0196, elbo=531.1245, epoch=537/1001, vae_loss=531.1608]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 538/1000 [00:11<00:09, 48.62it/s, bio_penalty=0.0185, clustering_loss=0.0196, elbo=529.8963, epoch=538/1001, vae_loss=529.9344]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 539/1000 [00:11<00:09, 48.62it/s, bio_penalty=0.0207, clustering_loss=0.0196, elbo=529.0022, epoch=539/1001, vae_loss=529.0425]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 540/1000 [00:11<00:09, 48.67it/s, bio_penalty=0.0207, clustering_loss=0.0196, elbo=529.0022, epoch=539/1001, vae_loss=529.0425]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 540/1000 [00:11<00:09, 48.67it/s, bio_penalty=0.0158, clustering_loss=0.0196, elbo=528.6860, epoch=540/1001, vae_loss=528.7214]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 541/1000 [00:11<00:09, 48.67it/s, bio_penalty=0.0195, clustering_loss=0.0196, elbo=530.8579, epoch=541/1001, vae_loss=530.8970]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 542/1000 [00:11<00:09, 48.67it/s, bio_penalty=0.0174, clustering_loss=0.0196, elbo=529.3855, epoch=542/1001, vae_loss=529.4225]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 543/1000 [00:11<00:09, 48.67it/s, bio_penalty=0.0162, clustering_loss=0.0196, elbo=530.0775, epoch=543/1001, vae_loss=530.1133]
Training: VAE for learning meaningful embeddings:  54%|█████▍    | 544/1000 [00:11<00:09, 48.67it/s, bio_penalty=0.0160, clustering_loss=0.0196, elbo=527.2715, epoch=544/1001, vae_loss=527.3071]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 545/1000 [00:11<00:09, 49.01it/s, bio_penalty=0.0160, clustering_loss=0.0196, elbo=527.2715, epoch=544/1001, vae_loss=527.3071]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 545/1000 [00:11<00:09, 49.01it/s, bio_penalty=0.0164, clustering_loss=0.0196, elbo=530.9775, epoch=545/1001, vae_loss=531.0134]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 546/1000 [00:11<00:09, 49.01it/s, bio_penalty=0.0176, clustering_loss=0.0196, elbo=527.8245, epoch=546/1001, vae_loss=527.8617]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 547/1000 [00:11<00:09, 49.01it/s, bio_penalty=0.0164, clustering_loss=0.0196, elbo=529.3289, epoch=547/1001, vae_loss=529.3649]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 548/1000 [00:11<00:09, 49.01it/s, bio_penalty=0.0158, clustering_loss=0.0196, elbo=525.4980, epoch=548/1001, vae_loss=525.5334]
Training: VAE for learning meaningful embeddings:  55%|█████▍    | 549/1000 [00:11<00:09, 49.01it/s, bio_penalty=0.0151, clustering_loss=0.0196, elbo=526.3525, epoch=549/1001, vae_loss=526.3871]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 550/1000 [00:11<00:09, 49.23it/s, bio_penalty=0.0151, clustering_loss=0.0196, elbo=526.3525, epoch=549/1001, vae_loss=526.3871]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 550/1000 [00:11<00:09, 49.23it/s, bio_penalty=0.0200, clustering_loss=0.0196, elbo=525.9556, epoch=550/1001, vae_loss=525.9952]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 551/1000 [00:11<00:09, 49.23it/s, bio_penalty=0.0166, clustering_loss=0.0196, elbo=525.9757, epoch=551/1001, vae_loss=526.0119]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 552/1000 [00:11<00:09, 49.23it/s, bio_penalty=0.0151, clustering_loss=0.0196, elbo=526.3253, epoch=552/1001, vae_loss=526.3599]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 553/1000 [00:11<00:09, 49.23it/s, bio_penalty=0.0152, clustering_loss=0.0196, elbo=527.1565, epoch=553/1001, vae_loss=527.1913]
Training: VAE for learning meaningful embeddings:  55%|█████▌    | 554/1000 [00:11<00:09, 49.23it/s, bio_penalty=0.0175, clustering_loss=0.0196, elbo=529.3023, epoch=554/1001, vae_loss=529.3394]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 555/1000 [00:11<00:09, 49.14it/s, bio_penalty=0.0175, clustering_loss=0.0196, elbo=529.3023, epoch=554/1001, vae_loss=529.3394]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 555/1000 [00:11<00:09, 49.14it/s, bio_penalty=0.0150, clustering_loss=0.0196, elbo=524.3525, epoch=555/1001, vae_loss=524.3870]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 556/1000 [00:11<00:09, 49.14it/s, bio_penalty=0.0171, clustering_loss=0.0196, elbo=531.9239, epoch=556/1001, vae_loss=531.9606]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 557/1000 [00:11<00:09, 49.14it/s, bio_penalty=0.0199, clustering_loss=0.0196, elbo=530.4953, epoch=557/1001, vae_loss=530.5348]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 558/1000 [00:11<00:08, 49.14it/s, bio_penalty=0.0157, clustering_loss=0.0196, elbo=526.2245, epoch=558/1001, vae_loss=526.2598]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 559/1000 [00:11<00:08, 49.14it/s, bio_penalty=0.0173, clustering_loss=0.0196, elbo=528.9533, epoch=559/1001, vae_loss=528.9902]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 560/1000 [00:11<00:08, 49.21it/s, bio_penalty=0.0173, clustering_loss=0.0196, elbo=528.9533, epoch=559/1001, vae_loss=528.9902]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 560/1000 [00:11<00:08, 49.21it/s, bio_penalty=0.0150, clustering_loss=0.0196, elbo=528.3007, epoch=560/1001, vae_loss=528.3353]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 561/1000 [00:11<00:08, 49.21it/s, bio_penalty=0.0181, clustering_loss=0.0196, elbo=531.8428, epoch=561/1001, vae_loss=531.8805]
Training: VAE for learning meaningful embeddings:  56%|█████▌    | 562/1000 [00:11<00:08, 49.21it/s, bio_penalty=0.0150, clustering_loss=0.0196, elbo=529.6668, epoch=562/1001, vae_loss=529.7014]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 563/1000 [00:11<00:08, 49.21it/s, bio_penalty=0.0147, clustering_loss=0.0196, elbo=528.4751, epoch=563/1001, vae_loss=528.5094]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 564/1000 [00:11<00:08, 49.21it/s, bio_penalty=0.0145, clustering_loss=0.0196, elbo=524.4982, epoch=564/1001, vae_loss=524.5323]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 565/1000 [00:11<00:09, 45.18it/s, bio_penalty=0.0145, clustering_loss=0.0196, elbo=524.4982, epoch=564/1001, vae_loss=524.5323]
Training: VAE for learning meaningful embeddings:  56%|█████▋    | 565/1000 [00:11<00:09, 45.18it/s, bio_penalty=0.0143, clustering_loss=0.0196, elbo=527.1957, epoch=565/1001, vae_loss=527.2296]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 566/1000 [00:11<00:09, 45.18it/s, bio_penalty=0.0138, clustering_loss=0.0196, elbo=523.1382, epoch=566/1001, vae_loss=523.1716]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 567/1000 [00:11<00:09, 45.18it/s, bio_penalty=0.0140, clustering_loss=0.0196, elbo=528.6126, epoch=567/1001, vae_loss=528.6462]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 568/1000 [00:11<00:09, 45.18it/s, bio_penalty=0.0135, clustering_loss=0.0196, elbo=526.7701, epoch=568/1001, vae_loss=526.8032]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 569/1000 [00:11<00:09, 45.18it/s, bio_penalty=0.0141, clustering_loss=0.0196, elbo=523.7631, epoch=569/1001, vae_loss=523.7968]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 570/1000 [00:11<00:09, 46.36it/s, bio_penalty=0.0141, clustering_loss=0.0196, elbo=523.7631, epoch=569/1001, vae_loss=523.7968]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 570/1000 [00:11<00:09, 46.36it/s, bio_penalty=0.0180, clustering_loss=0.0196, elbo=530.0293, epoch=570/1001, vae_loss=530.0670]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 571/1000 [00:11<00:09, 46.36it/s, bio_penalty=0.0139, clustering_loss=0.0196, elbo=519.9773, epoch=571/1001, vae_loss=520.0108]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 572/1000 [00:11<00:09, 46.36it/s, bio_penalty=0.0136, clustering_loss=0.0196, elbo=527.2739, epoch=572/1001, vae_loss=527.3071]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 573/1000 [00:11<00:09, 46.36it/s, bio_penalty=0.0153, clustering_loss=0.0196, elbo=524.7296, epoch=573/1001, vae_loss=524.7644]
Training: VAE for learning meaningful embeddings:  57%|█████▋    | 574/1000 [00:11<00:09, 46.36it/s, bio_penalty=0.0155, clustering_loss=0.0196, elbo=522.5693, epoch=574/1001, vae_loss=522.6044]
Training: VAE for learning meaningful embeddings:  57%|█████▊    | 575/1000 [00:11<00:08, 47.31it/s, bio_penalty=0.0155, clustering_loss=0.0196, elbo=522.5693, epoch=574/1001, vae_loss=522.6044]
Training: VAE for learning meaningful embeddings:  57%|█████▊    | 575/1000 [00:11<00:08, 47.31it/s, bio_penalty=0.0136, clustering_loss=0.0196, elbo=521.4073, epoch=575/1001, vae_loss=521.4405]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 576/1000 [00:11<00:08, 47.31it/s, bio_penalty=0.0138, clustering_loss=0.0196, elbo=521.3573, epoch=576/1001, vae_loss=521.3906]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 577/1000 [00:11<00:08, 47.31it/s, bio_penalty=0.0133, clustering_loss=0.0196, elbo=519.9610, epoch=577/1001, vae_loss=519.9939]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 578/1000 [00:11<00:08, 47.31it/s, bio_penalty=0.0131, clustering_loss=0.0196, elbo=520.5187, epoch=578/1001, vae_loss=520.5515]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 579/1000 [00:11<00:08, 47.31it/s, bio_penalty=0.0130, clustering_loss=0.0196, elbo=519.9926, epoch=579/1001, vae_loss=520.0251]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 580/1000 [00:11<00:08, 48.04it/s, bio_penalty=0.0130, clustering_loss=0.0196, elbo=519.9926, epoch=579/1001, vae_loss=520.0251]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 580/1000 [00:11<00:08, 48.04it/s, bio_penalty=0.0127, clustering_loss=0.0196, elbo=520.1124, epoch=580/1001, vae_loss=520.1448]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 581/1000 [00:11<00:08, 48.04it/s, bio_penalty=0.0137, clustering_loss=0.0196, elbo=520.9610, epoch=581/1001, vae_loss=520.9943]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 582/1000 [00:11<00:08, 48.04it/s, bio_penalty=0.0131, clustering_loss=0.0196, elbo=518.8034, epoch=582/1001, vae_loss=518.8361]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 583/1000 [00:11<00:08, 48.04it/s, bio_penalty=0.0131, clustering_loss=0.0196, elbo=517.3540, epoch=583/1001, vae_loss=517.3867]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 584/1000 [00:12<00:08, 48.04it/s, bio_penalty=0.0149, clustering_loss=0.0196, elbo=517.6026, epoch=584/1001, vae_loss=517.6371]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 585/1000 [00:12<00:08, 47.51it/s, bio_penalty=0.0149, clustering_loss=0.0196, elbo=517.6026, epoch=584/1001, vae_loss=517.6371]
Training: VAE for learning meaningful embeddings:  58%|█████▊    | 585/1000 [00:12<00:08, 47.51it/s, bio_penalty=0.0152, clustering_loss=0.0196, elbo=517.5288, epoch=585/1001, vae_loss=517.5636]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 586/1000 [00:12<00:08, 47.51it/s, bio_penalty=0.0141, clustering_loss=0.0196, elbo=517.7733, epoch=586/1001, vae_loss=517.8069]
Training: VAE for learning meaningful embeddings:  59%|█████▊    | 587/1000 [00:12<00:08, 47.51it/s, bio_penalty=0.0136, clustering_loss=0.0196, elbo=518.3973, epoch=587/1001, vae_loss=518.4305]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 588/1000 [00:12<00:08, 47.51it/s, bio_penalty=0.0145, clustering_loss=0.0196, elbo=518.3733, epoch=588/1001, vae_loss=518.4074]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 589/1000 [00:12<00:08, 47.51it/s, bio_penalty=0.0135, clustering_loss=0.0196, elbo=517.4885, epoch=589/1001, vae_loss=517.5216]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 590/1000 [00:12<00:08, 47.96it/s, bio_penalty=0.0135, clustering_loss=0.0196, elbo=517.4885, epoch=589/1001, vae_loss=517.5216]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 590/1000 [00:12<00:08, 47.96it/s, bio_penalty=0.0128, clustering_loss=0.0196, elbo=517.6025, epoch=590/1001, vae_loss=517.6349]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 591/1000 [00:12<00:08, 47.96it/s, bio_penalty=0.0127, clustering_loss=0.0196, elbo=515.3366, epoch=591/1001, vae_loss=515.3689]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 592/1000 [00:12<00:08, 47.96it/s, bio_penalty=0.0127, clustering_loss=0.0196, elbo=518.5814, epoch=592/1001, vae_loss=518.6137]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 593/1000 [00:12<00:08, 47.96it/s, bio_penalty=0.0129, clustering_loss=0.0196, elbo=518.0303, epoch=593/1001, vae_loss=518.0628]
Training: VAE for learning meaningful embeddings:  59%|█████▉    | 594/1000 [00:12<00:08, 47.96it/s, bio_penalty=0.0124, clustering_loss=0.0196, elbo=515.4230, epoch=594/1001, vae_loss=515.4549]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 595/1000 [00:12<00:08, 48.39it/s, bio_penalty=0.0124, clustering_loss=0.0196, elbo=515.4230, epoch=594/1001, vae_loss=515.4549]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 595/1000 [00:12<00:08, 48.39it/s, bio_penalty=0.0142, clustering_loss=0.0196, elbo=518.3582, epoch=595/1001, vae_loss=518.3920]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 596/1000 [00:12<00:08, 48.39it/s, bio_penalty=0.0129, clustering_loss=0.0196, elbo=517.0259, epoch=596/1001, vae_loss=517.0583]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 597/1000 [00:12<00:08, 48.39it/s, bio_penalty=0.0139, clustering_loss=0.0196, elbo=519.3328, epoch=597/1001, vae_loss=519.3662]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 598/1000 [00:12<00:08, 48.39it/s, bio_penalty=0.0123, clustering_loss=0.0196, elbo=514.5900, epoch=598/1001, vae_loss=514.6219]
Training: VAE for learning meaningful embeddings:  60%|█████▉    | 599/1000 [00:12<00:08, 48.39it/s, bio_penalty=0.0145, clustering_loss=0.0196, elbo=515.8428, epoch=599/1001, vae_loss=515.8770]
Training: VAE for learning meaningful embeddings:  60%|██████    | 600/1000 [00:12<00:08, 48.70it/s, bio_penalty=0.0145, clustering_loss=0.0196, elbo=515.8428, epoch=599/1001, vae_loss=515.8770]
Training: VAE for learning meaningful embeddings:  60%|██████    | 600/1000 [00:12<00:08, 48.70it/s, bio_penalty=0.0126, clustering_loss=0.0196, elbo=513.0906, epoch=600/1001, vae_loss=513.1228]
Training: VAE for learning meaningful embeddings:  60%|██████    | 601/1000 [00:12<00:08, 48.70it/s, bio_penalty=0.0133, clustering_loss=0.0196, elbo=515.1747, epoch=601/1001, vae_loss=515.2076]
Training: VAE for learning meaningful embeddings:  60%|██████    | 602/1000 [00:12<00:08, 48.70it/s, bio_penalty=0.0133, clustering_loss=0.0196, elbo=515.1627, epoch=602/1001, vae_loss=515.1956]
Training: VAE for learning meaningful embeddings:  60%|██████    | 603/1000 [00:12<00:08, 48.70it/s, bio_penalty=0.0148, clustering_loss=0.0196, elbo=514.6803, epoch=603/1001, vae_loss=514.7147]
Training: VAE for learning meaningful embeddings:  60%|██████    | 604/1000 [00:12<00:08, 48.70it/s, bio_penalty=0.0160, clustering_loss=0.0196, elbo=512.2084, epoch=604/1001, vae_loss=512.2440]
Training: VAE for learning meaningful embeddings:  60%|██████    | 605/1000 [00:12<00:08, 48.52it/s, bio_penalty=0.0160, clustering_loss=0.0196, elbo=512.2084, epoch=604/1001, vae_loss=512.2440]
Training: VAE for learning meaningful embeddings:  60%|██████    | 605/1000 [00:12<00:08, 48.52it/s, bio_penalty=0.0138, clustering_loss=0.0196, elbo=512.6620, epoch=605/1001, vae_loss=512.6954]
Training: VAE for learning meaningful embeddings:  61%|██████    | 606/1000 [00:12<00:08, 48.52it/s, bio_penalty=0.0128, clustering_loss=0.0196, elbo=513.1366, epoch=606/1001, vae_loss=513.1690]
Training: VAE for learning meaningful embeddings:  61%|██████    | 607/1000 [00:12<00:08, 48.52it/s, bio_penalty=0.0130, clustering_loss=0.0196, elbo=517.2982, epoch=607/1001, vae_loss=517.3307]
Training: VAE for learning meaningful embeddings:  61%|██████    | 608/1000 [00:12<00:08, 48.52it/s, bio_penalty=0.0127, clustering_loss=0.0196, elbo=514.4833, epoch=608/1001, vae_loss=514.5156]
Training: VAE for learning meaningful embeddings:  61%|██████    | 609/1000 [00:12<00:08, 48.52it/s, bio_penalty=0.0121, clustering_loss=0.0196, elbo=512.6453, epoch=609/1001, vae_loss=512.6771]
Training: VAE for learning meaningful embeddings:  61%|██████    | 610/1000 [00:12<00:08, 48.55it/s, bio_penalty=0.0121, clustering_loss=0.0196, elbo=512.6453, epoch=609/1001, vae_loss=512.6771]
Training: VAE for learning meaningful embeddings:  61%|██████    | 610/1000 [00:12<00:08, 48.55it/s, bio_penalty=0.0127, clustering_loss=0.0196, elbo=513.4738, epoch=610/1001, vae_loss=513.5061]
Training: VAE for learning meaningful embeddings:  61%|██████    | 611/1000 [00:12<00:08, 48.55it/s, bio_penalty=0.0132, clustering_loss=0.0196, elbo=511.5822, epoch=611/1001, vae_loss=511.6149]
Training: VAE for learning meaningful embeddings:  61%|██████    | 612/1000 [00:12<00:07, 48.55it/s, bio_penalty=0.0177, clustering_loss=0.0196, elbo=513.1085, epoch=612/1001, vae_loss=513.1459]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 613/1000 [00:12<00:07, 48.55it/s, bio_penalty=0.0132, clustering_loss=0.0196, elbo=513.8180, epoch=613/1001, vae_loss=513.8508]
Training: VAE for learning meaningful embeddings:  61%|██████▏   | 614/1000 [00:12<00:07, 48.55it/s, bio_penalty=0.0134, clustering_loss=0.0196, elbo=516.5667, epoch=614/1001, vae_loss=516.5997]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 615/1000 [00:12<00:07, 48.19it/s, bio_penalty=0.0134, clustering_loss=0.0196, elbo=516.5667, epoch=614/1001, vae_loss=516.5997]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 615/1000 [00:12<00:07, 48.19it/s, bio_penalty=0.0154, clustering_loss=0.0196, elbo=511.9924, epoch=615/1001, vae_loss=512.0274]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 616/1000 [00:12<00:07, 48.19it/s, bio_penalty=0.0119, clustering_loss=0.0196, elbo=512.9379, epoch=616/1001, vae_loss=512.9693]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 617/1000 [00:12<00:07, 48.19it/s, bio_penalty=0.0132, clustering_loss=0.0196, elbo=512.0276, epoch=617/1001, vae_loss=512.0604]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 618/1000 [00:12<00:07, 48.19it/s, bio_penalty=0.0117, clustering_loss=0.0196, elbo=512.6917, epoch=618/1001, vae_loss=512.7230]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 619/1000 [00:12<00:07, 48.19it/s, bio_penalty=0.0111, clustering_loss=0.0196, elbo=513.3384, epoch=619/1001, vae_loss=513.3691]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 620/1000 [00:12<00:07, 48.22it/s, bio_penalty=0.0111, clustering_loss=0.0196, elbo=513.3384, epoch=619/1001, vae_loss=513.3691]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 620/1000 [00:12<00:07, 48.22it/s, bio_penalty=0.0126, clustering_loss=0.0196, elbo=510.3361, epoch=620/1001, vae_loss=510.3682]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 621/1000 [00:12<00:07, 48.22it/s, bio_penalty=0.0120, clustering_loss=0.0196, elbo=510.9657, epoch=621/1001, vae_loss=510.9972]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 622/1000 [00:12<00:07, 48.22it/s, bio_penalty=0.0120, clustering_loss=0.0196, elbo=509.5724, epoch=622/1001, vae_loss=509.6039]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 623/1000 [00:12<00:07, 48.22it/s, bio_penalty=0.0115, clustering_loss=0.0196, elbo=511.2645, epoch=623/1001, vae_loss=511.2956]
Training: VAE for learning meaningful embeddings:  62%|██████▏   | 624/1000 [00:12<00:07, 48.22it/s, bio_penalty=0.0116, clustering_loss=0.0196, elbo=510.4750, epoch=624/1001, vae_loss=510.5061]
Training: VAE for learning meaningful embeddings:  62%|██████▎   | 625/1000 [00:12<00:07, 48.62it/s, bio_penalty=0.0116, clustering_loss=0.0196, elbo=510.4750, epoch=624/1001, vae_loss=510.5061]
Training: VAE for learning meaningful embeddings:  62%|██████▎   | 625/1000 [00:12<00:07, 48.62it/s, bio_penalty=0.0118, clustering_loss=0.0196, elbo=510.5382, epoch=625/1001, vae_loss=510.5695]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 626/1000 [00:12<00:07, 48.62it/s, bio_penalty=0.0113, clustering_loss=0.0196, elbo=509.9852, epoch=626/1001, vae_loss=510.0160]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 627/1000 [00:12<00:07, 48.62it/s, bio_penalty=0.0109, clustering_loss=0.0196, elbo=512.2283, epoch=627/1001, vae_loss=512.2588]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 628/1000 [00:12<00:07, 48.62it/s, bio_penalty=0.0117, clustering_loss=0.0196, elbo=508.4047, epoch=628/1001, vae_loss=508.4359]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 629/1000 [00:12<00:07, 48.62it/s, bio_penalty=0.0108, clustering_loss=0.0196, elbo=511.4416, epoch=629/1001, vae_loss=511.4720]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 630/1000 [00:12<00:07, 48.62it/s, bio_penalty=0.0105, clustering_loss=0.0196, elbo=510.4764, epoch=630/1001, vae_loss=510.5064]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 631/1000 [00:12<00:07, 49.19it/s, bio_penalty=0.0105, clustering_loss=0.0196, elbo=510.4764, epoch=630/1001, vae_loss=510.5064]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 631/1000 [00:12<00:07, 49.19it/s, bio_penalty=0.0113, clustering_loss=0.0196, elbo=509.1652, epoch=631/1001, vae_loss=509.1961]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 632/1000 [00:12<00:07, 49.19it/s, bio_penalty=0.0122, clustering_loss=0.0196, elbo=514.6136, epoch=632/1001, vae_loss=514.6453]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 633/1000 [00:13<00:07, 49.19it/s, bio_penalty=0.0103, clustering_loss=0.0196, elbo=508.2583, epoch=633/1001, vae_loss=508.2882]
Training: VAE for learning meaningful embeddings:  63%|██████▎   | 634/1000 [00:13<00:07, 49.19it/s, bio_penalty=0.0114, clustering_loss=0.0196, elbo=510.6685, epoch=634/1001, vae_loss=510.6994]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 635/1000 [00:13<00:07, 49.19it/s, bio_penalty=0.0107, clustering_loss=0.0196, elbo=508.6022, epoch=635/1001, vae_loss=508.6325]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 636/1000 [00:13<00:07, 49.19it/s, bio_penalty=0.0109, clustering_loss=0.0196, elbo=509.4844, epoch=636/1001, vae_loss=509.5149]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 637/1000 [00:13<00:07, 49.83it/s, bio_penalty=0.0109, clustering_loss=0.0196, elbo=509.4844, epoch=636/1001, vae_loss=509.5149]
Training: VAE for learning meaningful embeddings:  64%|██████▎   | 637/1000 [00:13<00:07, 49.83it/s, bio_penalty=0.0174, clustering_loss=0.0196, elbo=507.8687, epoch=637/1001, vae_loss=507.9056]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 638/1000 [00:13<00:07, 49.83it/s, bio_penalty=0.0161, clustering_loss=0.0196, elbo=511.3349, epoch=638/1001, vae_loss=511.3706]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 639/1000 [00:13<00:07, 49.83it/s, bio_penalty=0.0107, clustering_loss=0.0196, elbo=508.6703, epoch=639/1001, vae_loss=508.7006]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 640/1000 [00:13<00:07, 49.83it/s, bio_penalty=0.0100, clustering_loss=0.0196, elbo=507.6908, epoch=640/1001, vae_loss=507.7204]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 641/1000 [00:13<00:07, 49.83it/s, bio_penalty=0.0092, clustering_loss=0.0196, elbo=507.1990, epoch=641/1001, vae_loss=507.2278]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 642/1000 [00:13<00:07, 49.83it/s, bio_penalty=0.0096, clustering_loss=0.0196, elbo=506.2302, epoch=642/1001, vae_loss=506.2594]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 643/1000 [00:13<00:07, 50.46it/s, bio_penalty=0.0096, clustering_loss=0.0196, elbo=506.2302, epoch=642/1001, vae_loss=506.2594]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 643/1000 [00:13<00:07, 50.46it/s, bio_penalty=0.0100, clustering_loss=0.0196, elbo=508.7914, epoch=643/1001, vae_loss=508.8210]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 644/1000 [00:13<00:07, 50.46it/s, bio_penalty=0.0097, clustering_loss=0.0196, elbo=506.9975, epoch=644/1001, vae_loss=507.0268]
Training: VAE for learning meaningful embeddings:  64%|██████▍   | 645/1000 [00:13<00:07, 50.46it/s, bio_penalty=0.0093, clustering_loss=0.0196, elbo=506.5082, epoch=645/1001, vae_loss=506.5371]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 646/1000 [00:13<00:07, 50.46it/s, bio_penalty=0.0095, clustering_loss=0.0196, elbo=508.5258, epoch=646/1001, vae_loss=508.5549]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 647/1000 [00:13<00:06, 50.46it/s, bio_penalty=0.0105, clustering_loss=0.0196, elbo=510.0461, epoch=647/1001, vae_loss=510.0762]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 648/1000 [00:13<00:06, 50.46it/s, bio_penalty=0.0095, clustering_loss=0.0196, elbo=506.7005, epoch=648/1001, vae_loss=506.7296]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 649/1000 [00:13<00:06, 50.79it/s, bio_penalty=0.0095, clustering_loss=0.0196, elbo=506.7005, epoch=648/1001, vae_loss=506.7296]
Training: VAE for learning meaningful embeddings:  65%|██████▍   | 649/1000 [00:13<00:06, 50.79it/s, bio_penalty=0.0100, clustering_loss=0.0196, elbo=515.1483, epoch=649/1001, vae_loss=515.1779]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 650/1000 [00:13<00:06, 50.79it/s, bio_penalty=0.0108, clustering_loss=0.0196, elbo=509.0233, epoch=650/1001, vae_loss=509.0536]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 651/1000 [00:13<00:06, 50.79it/s, bio_penalty=0.0104, clustering_loss=0.0196, elbo=508.6783, epoch=651/1001, vae_loss=508.7082]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 652/1000 [00:13<00:06, 50.79it/s, bio_penalty=0.0127, clustering_loss=0.0196, elbo=508.4679, epoch=652/1001, vae_loss=508.5002]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 653/1000 [00:13<00:06, 50.79it/s, bio_penalty=0.0114, clustering_loss=0.0196, elbo=510.8151, epoch=653/1001, vae_loss=510.8460]
Training: VAE for learning meaningful embeddings:  65%|██████▌   | 654/1000 [00:13<00:06, 50.79it/s, bio_penalty=0.0097, clustering_loss=0.0196, elbo=508.3254, epoch=654/1001, vae_loss=508.3546]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 655/1000 [00:13<00:06, 50.82it/s, bio_penalty=0.0097, clustering_loss=0.0196, elbo=508.3254, epoch=654/1001, vae_loss=508.3546]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 655/1000 [00:13<00:06, 50.82it/s, bio_penalty=0.0103, clustering_loss=0.0196, elbo=506.4002, epoch=655/1001, vae_loss=506.4301]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 656/1000 [00:13<00:06, 50.82it/s, bio_penalty=0.0099, clustering_loss=0.0195, elbo=508.4103, epoch=656/1001, vae_loss=508.4398]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 657/1000 [00:13<00:06, 50.82it/s, bio_penalty=0.0102, clustering_loss=0.0195, elbo=503.4891, epoch=657/1001, vae_loss=503.5188]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 658/1000 [00:13<00:06, 50.82it/s, bio_penalty=0.0096, clustering_loss=0.0195, elbo=507.0759, epoch=658/1001, vae_loss=507.1050]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 659/1000 [00:13<00:06, 50.82it/s, bio_penalty=0.0118, clustering_loss=0.0195, elbo=505.2198, epoch=659/1001, vae_loss=505.2512]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 660/1000 [00:13<00:06, 50.82it/s, bio_penalty=0.0093, clustering_loss=0.0195, elbo=505.5146, epoch=660/1001, vae_loss=505.5435]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 661/1000 [00:13<00:06, 49.84it/s, bio_penalty=0.0093, clustering_loss=0.0195, elbo=505.5146, epoch=660/1001, vae_loss=505.5435]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 661/1000 [00:13<00:06, 49.84it/s, bio_penalty=0.0115, clustering_loss=0.0195, elbo=505.2543, epoch=661/1001, vae_loss=505.2854]
Training: VAE for learning meaningful embeddings:  66%|██████▌   | 662/1000 [00:13<00:06, 49.84it/s, bio_penalty=0.0102, clustering_loss=0.0195, elbo=504.5424, epoch=662/1001, vae_loss=504.5722]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 663/1000 [00:13<00:06, 49.84it/s, bio_penalty=0.0108, clustering_loss=0.0195, elbo=501.7849, epoch=663/1001, vae_loss=501.8152]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 664/1000 [00:13<00:06, 49.84it/s, bio_penalty=0.0118, clustering_loss=0.0195, elbo=503.4715, epoch=664/1001, vae_loss=503.5028]
Training: VAE for learning meaningful embeddings:  66%|██████▋   | 665/1000 [00:13<00:06, 49.84it/s, bio_penalty=0.0100, clustering_loss=0.0195, elbo=501.6624, epoch=665/1001, vae_loss=501.6919]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 666/1000 [00:13<00:06, 49.70it/s, bio_penalty=0.0100, clustering_loss=0.0195, elbo=501.6624, epoch=665/1001, vae_loss=501.6919]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 666/1000 [00:13<00:06, 49.70it/s, bio_penalty=0.0111, clustering_loss=0.0195, elbo=505.7225, epoch=666/1001, vae_loss=505.7532]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 667/1000 [00:13<00:06, 49.70it/s, bio_penalty=0.0113, clustering_loss=0.0195, elbo=501.7865, epoch=667/1001, vae_loss=501.8173]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 668/1000 [00:13<00:06, 49.70it/s, bio_penalty=0.0111, clustering_loss=0.0195, elbo=502.1808, epoch=668/1001, vae_loss=502.2115]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 669/1000 [00:13<00:06, 49.70it/s, bio_penalty=0.0110, clustering_loss=0.0195, elbo=502.0417, epoch=669/1001, vae_loss=502.0722]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 670/1000 [00:13<00:06, 49.70it/s, bio_penalty=0.0102, clustering_loss=0.0195, elbo=501.2913, epoch=670/1001, vae_loss=501.3210]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 671/1000 [00:13<00:06, 49.70it/s, bio_penalty=0.0100, clustering_loss=0.0195, elbo=501.2046, epoch=671/1001, vae_loss=501.2341]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 672/1000 [00:13<00:06, 50.02it/s, bio_penalty=0.0100, clustering_loss=0.0195, elbo=501.2046, epoch=671/1001, vae_loss=501.2341]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 672/1000 [00:13<00:06, 50.02it/s, bio_penalty=0.0098, clustering_loss=0.0195, elbo=500.6708, epoch=672/1001, vae_loss=500.7001]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 673/1000 [00:13<00:06, 50.02it/s, bio_penalty=0.0100, clustering_loss=0.0195, elbo=500.1443, epoch=673/1001, vae_loss=500.1738]
Training: VAE for learning meaningful embeddings:  67%|██████▋   | 674/1000 [00:13<00:06, 50.02it/s, bio_penalty=0.0102, clustering_loss=0.0195, elbo=500.8404, epoch=674/1001, vae_loss=500.8701]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 675/1000 [00:13<00:06, 50.02it/s, bio_penalty=0.0101, clustering_loss=0.0195, elbo=499.2179, epoch=675/1001, vae_loss=499.2476]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 676/1000 [00:13<00:06, 50.02it/s, bio_penalty=0.0107, clustering_loss=0.0195, elbo=503.9399, epoch=676/1001, vae_loss=503.9702]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 677/1000 [00:13<00:06, 50.02it/s, bio_penalty=0.0094, clustering_loss=0.0195, elbo=501.1363, epoch=677/1001, vae_loss=501.1652]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 678/1000 [00:13<00:06, 50.50it/s, bio_penalty=0.0094, clustering_loss=0.0195, elbo=501.1363, epoch=677/1001, vae_loss=501.1652]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 678/1000 [00:13<00:06, 50.50it/s, bio_penalty=0.0101, clustering_loss=0.0195, elbo=499.3670, epoch=678/1001, vae_loss=499.3967]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 679/1000 [00:13<00:06, 50.50it/s, bio_penalty=0.0095, clustering_loss=0.0195, elbo=499.6213, epoch=679/1001, vae_loss=499.6503]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 680/1000 [00:13<00:06, 50.50it/s, bio_penalty=0.0096, clustering_loss=0.0195, elbo=499.3170, epoch=680/1001, vae_loss=499.3461]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 681/1000 [00:13<00:06, 50.50it/s, bio_penalty=0.0098, clustering_loss=0.0195, elbo=498.7751, epoch=681/1001, vae_loss=498.8044]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 682/1000 [00:13<00:06, 50.50it/s, bio_penalty=0.0091, clustering_loss=0.0195, elbo=498.9788, epoch=682/1001, vae_loss=499.0074]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 683/1000 [00:13<00:06, 50.50it/s, bio_penalty=0.0089, clustering_loss=0.0195, elbo=498.2752, epoch=683/1001, vae_loss=498.3036]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 684/1000 [00:13<00:06, 50.28it/s, bio_penalty=0.0089, clustering_loss=0.0195, elbo=498.2752, epoch=683/1001, vae_loss=498.3036]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 684/1000 [00:14<00:06, 50.28it/s, bio_penalty=0.0091, clustering_loss=0.0195, elbo=499.7386, epoch=684/1001, vae_loss=499.7672]
Training: VAE for learning meaningful embeddings:  68%|██████▊   | 685/1000 [00:14<00:06, 50.28it/s, bio_penalty=0.0096, clustering_loss=0.0195, elbo=498.2531, epoch=685/1001, vae_loss=498.2822]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 686/1000 [00:14<00:06, 50.28it/s, bio_penalty=0.0091, clustering_loss=0.0195, elbo=499.1621, epoch=686/1001, vae_loss=499.1907]
Training: VAE for learning meaningful embeddings:  69%|██████▊   | 687/1000 [00:14<00:06, 50.28it/s, bio_penalty=0.0088, clustering_loss=0.0195, elbo=499.1759, epoch=687/1001, vae_loss=499.2043]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 688/1000 [00:14<00:06, 50.28it/s, bio_penalty=0.0090, clustering_loss=0.0195, elbo=499.0303, epoch=688/1001, vae_loss=499.0589]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 689/1000 [00:14<00:06, 50.28it/s, bio_penalty=0.0088, clustering_loss=0.0195, elbo=496.8718, epoch=689/1001, vae_loss=496.9002]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 690/1000 [00:14<00:06, 50.31it/s, bio_penalty=0.0088, clustering_loss=0.0195, elbo=496.8718, epoch=689/1001, vae_loss=496.9002]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 690/1000 [00:14<00:06, 50.31it/s, bio_penalty=0.0093, clustering_loss=0.0195, elbo=497.5786, epoch=690/1001, vae_loss=497.6075]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 691/1000 [00:14<00:06, 50.31it/s, bio_penalty=0.0088, clustering_loss=0.0195, elbo=496.5304, epoch=691/1001, vae_loss=496.5587]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 692/1000 [00:14<00:06, 50.31it/s, bio_penalty=0.0090, clustering_loss=0.0195, elbo=498.0495, epoch=692/1001, vae_loss=498.0780]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 693/1000 [00:14<00:06, 50.31it/s, bio_penalty=0.0101, clustering_loss=0.0195, elbo=498.1076, epoch=693/1001, vae_loss=498.1372]
Training: VAE for learning meaningful embeddings:  69%|██████▉   | 694/1000 [00:14<00:06, 50.31it/s, bio_penalty=0.0092, clustering_loss=0.0195, elbo=496.9899, epoch=694/1001, vae_loss=497.0185]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 695/1000 [00:14<00:06, 50.31it/s, bio_penalty=0.0101, clustering_loss=0.0195, elbo=495.4272, epoch=695/1001, vae_loss=495.4569]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 696/1000 [00:14<00:06, 50.62it/s, bio_penalty=0.0101, clustering_loss=0.0195, elbo=495.4272, epoch=695/1001, vae_loss=495.4569]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 696/1000 [00:14<00:06, 50.62it/s, bio_penalty=0.0101, clustering_loss=0.0195, elbo=498.0956, epoch=696/1001, vae_loss=498.1251]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 697/1000 [00:14<00:05, 50.62it/s, bio_penalty=0.0099, clustering_loss=0.0195, elbo=496.8492, epoch=697/1001, vae_loss=496.8786]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 698/1000 [00:14<00:05, 50.62it/s, bio_penalty=0.0094, clustering_loss=0.0195, elbo=496.3956, epoch=698/1001, vae_loss=496.4245]
Training: VAE for learning meaningful embeddings:  70%|██████▉   | 699/1000 [00:14<00:05, 50.62it/s, bio_penalty=0.0094, clustering_loss=0.0195, elbo=496.8382, epoch=699/1001, vae_loss=496.8671]
Training: VAE for learning meaningful embeddings:  70%|███████   | 700/1000 [00:14<00:05, 50.62it/s, bio_penalty=0.0099, clustering_loss=0.0195, elbo=496.2954, epoch=700/1001, vae_loss=496.3248]
Training: VAE for learning meaningful embeddings:  70%|███████   | 701/1000 [00:14<00:05, 50.62it/s, bio_penalty=0.0090, clustering_loss=0.0195, elbo=494.8349, epoch=701/1001, vae_loss=494.8633]
Training: VAE for learning meaningful embeddings:  70%|███████   | 702/1000 [00:14<00:05, 50.63it/s, bio_penalty=0.0090, clustering_loss=0.0195, elbo=494.8349, epoch=701/1001, vae_loss=494.8633]
Training: VAE for learning meaningful embeddings:  70%|███████   | 702/1000 [00:14<00:05, 50.63it/s, bio_penalty=0.0094, clustering_loss=0.0195, elbo=496.5724, epoch=702/1001, vae_loss=496.6014]
Training: VAE for learning meaningful embeddings:  70%|███████   | 703/1000 [00:14<00:05, 50.63it/s, bio_penalty=0.0099, clustering_loss=0.0195, elbo=497.9706, epoch=703/1001, vae_loss=497.9999]
Training: VAE for learning meaningful embeddings:  70%|███████   | 704/1000 [00:14<00:05, 50.63it/s, bio_penalty=0.0092, clustering_loss=0.0195, elbo=494.5001, epoch=704/1001, vae_loss=494.5288]
Training: VAE for learning meaningful embeddings:  70%|███████   | 705/1000 [00:14<00:05, 50.63it/s, bio_penalty=0.0101, clustering_loss=0.0195, elbo=496.3330, epoch=705/1001, vae_loss=496.3626]
Training: VAE for learning meaningful embeddings:  71%|███████   | 706/1000 [00:14<00:05, 50.63it/s, bio_penalty=0.0091, clustering_loss=0.0195, elbo=499.2991, epoch=706/1001, vae_loss=499.3277]
Training: VAE for learning meaningful embeddings:  71%|███████   | 707/1000 [00:14<00:05, 50.63it/s, bio_penalty=0.0102, clustering_loss=0.0195, elbo=495.6882, epoch=707/1001, vae_loss=495.7179]
Training: VAE for learning meaningful embeddings:  71%|███████   | 708/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0102, clustering_loss=0.0195, elbo=495.6882, epoch=707/1001, vae_loss=495.7179]
Training: VAE for learning meaningful embeddings:  71%|███████   | 708/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0094, clustering_loss=0.0195, elbo=494.3286, epoch=708/1001, vae_loss=494.3574]
Training: VAE for learning meaningful embeddings:  71%|███████   | 709/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0091, clustering_loss=0.0195, elbo=498.1577, epoch=709/1001, vae_loss=498.1863]
Training: VAE for learning meaningful embeddings:  71%|███████   | 710/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0104, clustering_loss=0.0195, elbo=497.1012, epoch=710/1001, vae_loss=497.1311]
Training: VAE for learning meaningful embeddings:  71%|███████   | 711/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0091, clustering_loss=0.0195, elbo=493.3048, epoch=711/1001, vae_loss=493.3334]
Training: VAE for learning meaningful embeddings:  71%|███████   | 712/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0102, clustering_loss=0.0195, elbo=501.5368, epoch=712/1001, vae_loss=501.5666]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 713/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0095, clustering_loss=0.0195, elbo=502.4909, epoch=713/1001, vae_loss=502.5199]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 714/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0095, clustering_loss=0.0195, elbo=502.4909, epoch=713/1001, vae_loss=502.5199]
Training: VAE for learning meaningful embeddings:  71%|███████▏  | 714/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0084, clustering_loss=0.0195, elbo=493.2511, epoch=714/1001, vae_loss=493.2790]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 715/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0090, clustering_loss=0.0195, elbo=499.1589, epoch=715/1001, vae_loss=499.1874]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 716/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0105, clustering_loss=0.0195, elbo=495.4917, epoch=716/1001, vae_loss=495.5217]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 717/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0086, clustering_loss=0.0195, elbo=493.9118, epoch=717/1001, vae_loss=493.9398]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 718/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0106, clustering_loss=0.0195, elbo=498.5572, epoch=718/1001, vae_loss=498.5872]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 719/1000 [00:14<00:05, 50.31it/s, bio_penalty=0.0088, clustering_loss=0.0195, elbo=495.5976, epoch=719/1001, vae_loss=495.6259]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 720/1000 [00:14<00:05, 50.15it/s, bio_penalty=0.0088, clustering_loss=0.0195, elbo=495.5976, epoch=719/1001, vae_loss=495.6259]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 720/1000 [00:14<00:05, 50.15it/s, bio_penalty=0.0081, clustering_loss=0.0195, elbo=495.6331, epoch=720/1001, vae_loss=495.6607]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 721/1000 [00:14<00:05, 50.15it/s, bio_penalty=0.0095, clustering_loss=0.0195, elbo=495.0543, epoch=721/1001, vae_loss=495.0832]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 722/1000 [00:14<00:05, 50.15it/s, bio_penalty=0.0088, clustering_loss=0.0195, elbo=496.5659, epoch=722/1001, vae_loss=496.5942]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 723/1000 [00:14<00:05, 50.15it/s, bio_penalty=0.0083, clustering_loss=0.0195, elbo=492.8340, epoch=723/1001, vae_loss=492.8618]
Training: VAE for learning meaningful embeddings:  72%|███████▏  | 724/1000 [00:14<00:05, 50.15it/s, bio_penalty=0.0080, clustering_loss=0.0195, elbo=492.9868, epoch=724/1001, vae_loss=493.0142]
Training: VAE for learning meaningful embeddings:  72%|███████▎  | 725/1000 [00:14<00:05, 50.15it/s, bio_penalty=0.0086, clustering_loss=0.0195, elbo=494.4888, epoch=725/1001, vae_loss=494.5169]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 726/1000 [00:14<00:05, 50.33it/s, bio_penalty=0.0086, clustering_loss=0.0195, elbo=494.4888, epoch=725/1001, vae_loss=494.5169]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 726/1000 [00:14<00:05, 50.33it/s, bio_penalty=0.0081, clustering_loss=0.0195, elbo=491.3700, epoch=726/1001, vae_loss=491.3976]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 727/1000 [00:14<00:05, 50.33it/s, bio_penalty=0.0078, clustering_loss=0.0195, elbo=493.8986, epoch=727/1001, vae_loss=493.9258]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 728/1000 [00:14<00:05, 50.33it/s, bio_penalty=0.0086, clustering_loss=0.0195, elbo=494.2218, epoch=728/1001, vae_loss=494.2498]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 729/1000 [00:14<00:05, 50.33it/s, bio_penalty=0.0094, clustering_loss=0.0195, elbo=495.2133, epoch=729/1001, vae_loss=495.2422]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 730/1000 [00:14<00:05, 50.33it/s, bio_penalty=0.0079, clustering_loss=0.0195, elbo=492.3852, epoch=730/1001, vae_loss=492.4125]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 731/1000 [00:14<00:05, 50.33it/s, bio_penalty=0.0086, clustering_loss=0.0195, elbo=492.9168, epoch=731/1001, vae_loss=492.9449]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 732/1000 [00:14<00:05, 50.51it/s, bio_penalty=0.0086, clustering_loss=0.0195, elbo=492.9168, epoch=731/1001, vae_loss=492.9449]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 732/1000 [00:14<00:05, 50.51it/s, bio_penalty=0.0080, clustering_loss=0.0195, elbo=490.6519, epoch=732/1001, vae_loss=490.6794]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 733/1000 [00:14<00:05, 50.51it/s, bio_penalty=0.0109, clustering_loss=0.0195, elbo=494.8837, epoch=733/1001, vae_loss=494.9140]
Training: VAE for learning meaningful embeddings:  73%|███████▎  | 734/1000 [00:15<00:05, 50.51it/s, bio_penalty=0.0076, clustering_loss=0.0195, elbo=491.0552, epoch=734/1001, vae_loss=491.0823]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 735/1000 [00:15<00:05, 50.51it/s, bio_penalty=0.0077, clustering_loss=0.0195, elbo=491.0031, epoch=735/1001, vae_loss=491.0303]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 736/1000 [00:15<00:05, 50.51it/s, bio_penalty=0.0078, clustering_loss=0.0195, elbo=490.3900, epoch=736/1001, vae_loss=490.4173]
Training: VAE for learning meaningful embeddings:  74%|███████▎  | 737/1000 [00:15<00:05, 50.51it/s, bio_penalty=0.0076, clustering_loss=0.0195, elbo=513.7664, epoch=737/1001, vae_loss=513.7934]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 738/1000 [00:15<00:05, 50.45it/s, bio_penalty=0.0076, clustering_loss=0.0195, elbo=513.7664, epoch=737/1001, vae_loss=513.7934]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 738/1000 [00:15<00:05, 50.45it/s, bio_penalty=0.0108, clustering_loss=0.0195, elbo=496.3522, epoch=738/1001, vae_loss=496.3825]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 739/1000 [00:15<00:05, 50.45it/s, bio_penalty=0.0079, clustering_loss=0.0195, elbo=492.5806, epoch=739/1001, vae_loss=492.6079]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 740/1000 [00:15<00:05, 50.45it/s, bio_penalty=0.0077, clustering_loss=0.0194, elbo=495.7411, epoch=740/1001, vae_loss=495.7682]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 741/1000 [00:15<00:05, 50.45it/s, bio_penalty=0.0072, clustering_loss=0.0194, elbo=492.5944, epoch=741/1001, vae_loss=492.6210]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 742/1000 [00:15<00:05, 50.45it/s, bio_penalty=0.0073, clustering_loss=0.0194, elbo=493.3190, epoch=742/1001, vae_loss=493.3458]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 743/1000 [00:15<00:05, 50.45it/s, bio_penalty=0.0075, clustering_loss=0.0194, elbo=493.1232, epoch=743/1001, vae_loss=493.1501]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 744/1000 [00:15<00:05, 50.93it/s, bio_penalty=0.0075, clustering_loss=0.0194, elbo=493.1232, epoch=743/1001, vae_loss=493.1501]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 744/1000 [00:15<00:05, 50.93it/s, bio_penalty=0.0075, clustering_loss=0.0194, elbo=493.2570, epoch=744/1001, vae_loss=493.2840]
Training: VAE for learning meaningful embeddings:  74%|███████▍  | 745/1000 [00:15<00:05, 50.93it/s, bio_penalty=0.0073, clustering_loss=0.0194, elbo=491.6796, epoch=745/1001, vae_loss=491.7063]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 746/1000 [00:15<00:04, 50.93it/s, bio_penalty=0.0072, clustering_loss=0.0194, elbo=494.5601, epoch=746/1001, vae_loss=494.5867]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 747/1000 [00:15<00:04, 50.93it/s, bio_penalty=0.0075, clustering_loss=0.0194, elbo=490.9484, epoch=747/1001, vae_loss=490.9754]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 748/1000 [00:15<00:04, 50.93it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=494.4880, epoch=748/1001, vae_loss=494.5157]
Training: VAE for learning meaningful embeddings:  75%|███████▍  | 749/1000 [00:15<00:04, 50.93it/s, bio_penalty=0.0071, clustering_loss=0.0194, elbo=490.3862, epoch=749/1001, vae_loss=490.4128]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 750/1000 [00:15<00:04, 51.15it/s, bio_penalty=0.0071, clustering_loss=0.0194, elbo=490.3862, epoch=749/1001, vae_loss=490.4128]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 750/1000 [00:15<00:04, 51.15it/s, bio_penalty=0.0088, clustering_loss=0.0194, elbo=493.6934, epoch=750/1001, vae_loss=493.7217]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 751/1000 [00:15<00:04, 51.15it/s, bio_penalty=0.0081, clustering_loss=0.0194, elbo=494.8921, epoch=751/1001, vae_loss=494.9196]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 752/1000 [00:15<00:04, 51.15it/s, bio_penalty=0.0073, clustering_loss=0.0194, elbo=490.4531, epoch=752/1001, vae_loss=490.4798]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 753/1000 [00:15<00:04, 51.15it/s, bio_penalty=0.0091, clustering_loss=0.0194, elbo=490.2372, epoch=753/1001, vae_loss=490.2657]
Training: VAE for learning meaningful embeddings:  75%|███████▌  | 754/1000 [00:15<00:04, 51.15it/s, bio_penalty=0.0071, clustering_loss=0.0194, elbo=488.1125, epoch=754/1001, vae_loss=488.1390]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 755/1000 [00:15<00:04, 51.15it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=489.3264, epoch=755/1001, vae_loss=489.3540]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 756/1000 [00:15<00:04, 51.03it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=489.3264, epoch=755/1001, vae_loss=489.3540]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 756/1000 [00:15<00:04, 51.03it/s, bio_penalty=0.0073, clustering_loss=0.0194, elbo=489.5838, epoch=756/1001, vae_loss=489.6106]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 757/1000 [00:15<00:04, 51.03it/s, bio_penalty=0.0096, clustering_loss=0.0194, elbo=491.4560, epoch=757/1001, vae_loss=491.4850]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 758/1000 [00:15<00:04, 51.03it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=490.4458, epoch=758/1001, vae_loss=490.4734]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 759/1000 [00:15<00:04, 51.03it/s, bio_penalty=0.0080, clustering_loss=0.0194, elbo=489.1527, epoch=759/1001, vae_loss=489.1801]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 760/1000 [00:15<00:04, 51.03it/s, bio_penalty=0.0074, clustering_loss=0.0194, elbo=488.3427, epoch=760/1001, vae_loss=488.3695]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 761/1000 [00:15<00:04, 51.03it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=487.5402, epoch=761/1001, vae_loss=487.5678]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 762/1000 [00:15<00:04, 50.98it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=487.5402, epoch=761/1001, vae_loss=487.5678]
Training: VAE for learning meaningful embeddings:  76%|███████▌  | 762/1000 [00:15<00:04, 50.98it/s, bio_penalty=0.0078, clustering_loss=0.0194, elbo=488.0741, epoch=762/1001, vae_loss=488.1013]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 763/1000 [00:15<00:04, 50.98it/s, bio_penalty=0.0081, clustering_loss=0.0194, elbo=488.8754, epoch=763/1001, vae_loss=488.9029]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 764/1000 [00:15<00:04, 50.98it/s, bio_penalty=0.0084, clustering_loss=0.0194, elbo=487.2973, epoch=764/1001, vae_loss=487.3251]
Training: VAE for learning meaningful embeddings:  76%|███████▋  | 765/1000 [00:15<00:04, 50.98it/s, bio_penalty=0.0072, clustering_loss=0.0194, elbo=488.1184, epoch=765/1001, vae_loss=488.1450]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 766/1000 [00:15<00:04, 50.98it/s, bio_penalty=0.0076, clustering_loss=0.0194, elbo=490.8167, epoch=766/1001, vae_loss=490.8438]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 767/1000 [00:15<00:04, 50.98it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=489.6784, epoch=767/1001, vae_loss=489.7060]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 768/1000 [00:15<00:04, 50.80it/s, bio_penalty=0.0082, clustering_loss=0.0194, elbo=489.6784, epoch=767/1001, vae_loss=489.7060]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 768/1000 [00:15<00:04, 50.80it/s, bio_penalty=0.0073, clustering_loss=0.0194, elbo=487.1255, epoch=768/1001, vae_loss=487.1522]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 769/1000 [00:15<00:04, 50.80it/s, bio_penalty=0.0070, clustering_loss=0.0194, elbo=496.2292, epoch=769/1001, vae_loss=496.2556]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 770/1000 [00:15<00:04, 50.80it/s, bio_penalty=0.0146, clustering_loss=0.0194, elbo=493.2778, epoch=770/1001, vae_loss=493.3118]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 771/1000 [00:15<00:04, 50.80it/s, bio_penalty=0.0085, clustering_loss=0.0194, elbo=486.6437, epoch=771/1001, vae_loss=486.6716]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 772/1000 [00:15<00:04, 50.80it/s, bio_penalty=0.0071, clustering_loss=0.0194, elbo=493.3705, epoch=772/1001, vae_loss=493.3971]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 773/1000 [00:15<00:04, 50.80it/s, bio_penalty=0.0085, clustering_loss=0.0194, elbo=487.4664, epoch=773/1001, vae_loss=487.4943]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 774/1000 [00:15<00:04, 51.06it/s, bio_penalty=0.0085, clustering_loss=0.0194, elbo=487.4664, epoch=773/1001, vae_loss=487.4943]
Training: VAE for learning meaningful embeddings:  77%|███████▋  | 774/1000 [00:15<00:04, 51.06it/s, bio_penalty=0.0090, clustering_loss=0.0194, elbo=488.8521, epoch=774/1001, vae_loss=488.8805]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 775/1000 [00:15<00:04, 51.06it/s, bio_penalty=0.0077, clustering_loss=0.0194, elbo=493.0334, epoch=775/1001, vae_loss=493.0606]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 776/1000 [00:15<00:04, 51.06it/s, bio_penalty=0.0073, clustering_loss=0.0194, elbo=484.6363, epoch=776/1001, vae_loss=484.6629]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 777/1000 [00:15<00:04, 51.06it/s, bio_penalty=0.0098, clustering_loss=0.0194, elbo=491.4157, epoch=777/1001, vae_loss=491.4449]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 778/1000 [00:15<00:04, 51.06it/s, bio_penalty=0.0068, clustering_loss=0.0194, elbo=485.8906, epoch=778/1001, vae_loss=485.9167]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 779/1000 [00:15<00:04, 51.06it/s, bio_penalty=0.0072, clustering_loss=0.0194, elbo=485.9978, epoch=779/1001, vae_loss=486.0244]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 780/1000 [00:15<00:04, 51.36it/s, bio_penalty=0.0072, clustering_loss=0.0194, elbo=485.9978, epoch=779/1001, vae_loss=486.0244]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 780/1000 [00:15<00:04, 51.36it/s, bio_penalty=0.0068, clustering_loss=0.0194, elbo=485.2658, epoch=780/1001, vae_loss=485.2920]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 781/1000 [00:15<00:04, 51.36it/s, bio_penalty=0.0068, clustering_loss=0.0194, elbo=488.4735, epoch=781/1001, vae_loss=488.4997]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 782/1000 [00:15<00:04, 51.36it/s, bio_penalty=0.0083, clustering_loss=0.0194, elbo=489.9746, epoch=782/1001, vae_loss=490.0023]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 783/1000 [00:15<00:04, 51.36it/s, bio_penalty=0.0064, clustering_loss=0.0194, elbo=482.3753, epoch=783/1001, vae_loss=482.4010]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 784/1000 [00:15<00:04, 51.36it/s, bio_penalty=0.0075, clustering_loss=0.0194, elbo=488.9040, epoch=784/1001, vae_loss=488.9309]
Training: VAE for learning meaningful embeddings:  78%|███████▊  | 785/1000 [00:15<00:04, 51.36it/s, bio_penalty=0.0064, clustering_loss=0.0194, elbo=484.5911, epoch=785/1001, vae_loss=484.6169]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 786/1000 [00:15<00:04, 51.38it/s, bio_penalty=0.0064, clustering_loss=0.0194, elbo=484.5911, epoch=785/1001, vae_loss=484.6169]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 786/1000 [00:16<00:04, 51.38it/s, bio_penalty=0.0070, clustering_loss=0.0194, elbo=487.9671, epoch=786/1001, vae_loss=487.9936]
Training: VAE for learning meaningful embeddings:  79%|███████▊  | 787/1000 [00:16<00:04, 51.38it/s, bio_penalty=0.0065, clustering_loss=0.0194, elbo=487.2661, epoch=787/1001, vae_loss=487.2920]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 788/1000 [00:16<00:04, 51.38it/s, bio_penalty=0.0067, clustering_loss=0.0194, elbo=485.9913, epoch=788/1001, vae_loss=486.0174]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 789/1000 [00:16<00:04, 51.38it/s, bio_penalty=0.0074, clustering_loss=0.0194, elbo=494.1980, epoch=789/1001, vae_loss=494.2247]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 790/1000 [00:16<00:04, 51.38it/s, bio_penalty=0.0064, clustering_loss=0.0194, elbo=484.2468, epoch=790/1001, vae_loss=484.2726]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 791/1000 [00:16<00:04, 51.38it/s, bio_penalty=0.0061, clustering_loss=0.0194, elbo=487.4665, epoch=791/1001, vae_loss=487.4920]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 792/1000 [00:16<00:04, 51.51it/s, bio_penalty=0.0061, clustering_loss=0.0194, elbo=487.4665, epoch=791/1001, vae_loss=487.4920]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 792/1000 [00:16<00:04, 51.51it/s, bio_penalty=0.0070, clustering_loss=0.0194, elbo=483.3070, epoch=792/1001, vae_loss=483.3333]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 793/1000 [00:16<00:04, 51.51it/s, bio_penalty=0.0068, clustering_loss=0.0194, elbo=483.9038, epoch=793/1001, vae_loss=483.9300]
Training: VAE for learning meaningful embeddings:  79%|███████▉  | 794/1000 [00:16<00:03, 51.51it/s, bio_penalty=0.0059, clustering_loss=0.0194, elbo=486.8391, epoch=794/1001, vae_loss=486.8644]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 795/1000 [00:16<00:03, 51.51it/s, bio_penalty=0.0059, clustering_loss=0.0194, elbo=482.0652, epoch=795/1001, vae_loss=482.0905]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 796/1000 [00:16<00:03, 51.51it/s, bio_penalty=0.0062, clustering_loss=0.0194, elbo=484.7119, epoch=796/1001, vae_loss=484.7375]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 797/1000 [00:16<00:03, 51.51it/s, bio_penalty=0.0069, clustering_loss=0.0194, elbo=481.1041, epoch=797/1001, vae_loss=481.1303]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 798/1000 [00:16<00:03, 51.56it/s, bio_penalty=0.0069, clustering_loss=0.0194, elbo=481.1041, epoch=797/1001, vae_loss=481.1303]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 798/1000 [00:16<00:03, 51.56it/s, bio_penalty=0.0067, clustering_loss=0.0194, elbo=484.1739, epoch=798/1001, vae_loss=484.1999]
Training: VAE for learning meaningful embeddings:  80%|███████▉  | 799/1000 [00:16<00:03, 51.56it/s, bio_penalty=0.0061, clustering_loss=0.0194, elbo=482.2479, epoch=799/1001, vae_loss=482.2734]
Training: VAE for learning meaningful embeddings:  80%|████████  | 800/1000 [00:16<00:03, 51.56it/s, bio_penalty=0.0064, clustering_loss=0.0194, elbo=483.4538, epoch=800/1001, vae_loss=483.4796]
Training: VAE for learning meaningful embeddings:  80%|████████  | 801/1000 [00:16<00:03, 51.56it/s, bio_penalty=0.0071, clustering_loss=0.0194, elbo=486.0161, epoch=801/1001, vae_loss=486.0426]
Training: VAE for learning meaningful embeddings:  80%|████████  | 802/1000 [00:16<00:03, 51.56it/s, bio_penalty=0.0063, clustering_loss=0.0194, elbo=482.3201, epoch=802/1001, vae_loss=482.3458]
Training: VAE for learning meaningful embeddings:  80%|████████  | 803/1000 [00:16<00:03, 51.56it/s, bio_penalty=0.0058, clustering_loss=0.0194, elbo=483.5593, epoch=803/1001, vae_loss=483.5844]
Training: VAE for learning meaningful embeddings:  80%|████████  | 804/1000 [00:16<00:03, 51.11it/s, bio_penalty=0.0058, clustering_loss=0.0194, elbo=483.5593, epoch=803/1001, vae_loss=483.5844]
Training: VAE for learning meaningful embeddings:  80%|████████  | 804/1000 [00:16<00:03, 51.11it/s, bio_penalty=0.0068, clustering_loss=0.0194, elbo=480.4701, epoch=804/1001, vae_loss=480.4962]
Training: VAE for learning meaningful embeddings:  80%|████████  | 805/1000 [00:16<00:03, 51.11it/s, bio_penalty=0.0065, clustering_loss=0.0194, elbo=485.1569, epoch=805/1001, vae_loss=485.1827]
Training: VAE for learning meaningful embeddings:  81%|████████  | 806/1000 [00:16<00:03, 51.11it/s, bio_penalty=0.0066, clustering_loss=0.0194, elbo=479.9494, epoch=806/1001, vae_loss=479.9753]
Training: VAE for learning meaningful embeddings:  81%|████████  | 807/1000 [00:16<00:03, 51.11it/s, bio_penalty=0.0073, clustering_loss=0.0194, elbo=483.6935, epoch=807/1001, vae_loss=483.7201]
Training: VAE for learning meaningful embeddings:  81%|████████  | 808/1000 [00:16<00:03, 51.11it/s, bio_penalty=0.0060, clustering_loss=0.0194, elbo=483.5016, epoch=808/1001, vae_loss=483.5269]
Training: VAE for learning meaningful embeddings:  81%|████████  | 809/1000 [00:16<00:03, 51.11it/s, bio_penalty=0.0060, clustering_loss=0.0194, elbo=482.9779, epoch=809/1001, vae_loss=483.0033]
Training: VAE for learning meaningful embeddings:  81%|████████  | 810/1000 [00:16<00:03, 50.90it/s, bio_penalty=0.0060, clustering_loss=0.0194, elbo=482.9779, epoch=809/1001, vae_loss=483.0033]
Training: VAE for learning meaningful embeddings:  81%|████████  | 810/1000 [00:16<00:03, 50.90it/s, bio_penalty=0.0077, clustering_loss=0.0194, elbo=482.0271, epoch=810/1001, vae_loss=482.0542]
Training: VAE for learning meaningful embeddings:  81%|████████  | 811/1000 [00:16<00:03, 50.90it/s, bio_penalty=0.0059, clustering_loss=0.0194, elbo=481.0391, epoch=811/1001, vae_loss=481.0644]
Training: VAE for learning meaningful embeddings:  81%|████████  | 812/1000 [00:16<00:03, 50.90it/s, bio_penalty=0.0064, clustering_loss=0.0194, elbo=482.5656, epoch=812/1001, vae_loss=482.5913]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 813/1000 [00:16<00:03, 50.90it/s, bio_penalty=0.0059, clustering_loss=0.0194, elbo=481.7284, epoch=813/1001, vae_loss=481.7537]
Training: VAE for learning meaningful embeddings:  81%|████████▏ | 814/1000 [00:16<00:03, 50.90it/s, bio_penalty=0.0086, clustering_loss=0.0193, elbo=480.7340, epoch=814/1001, vae_loss=480.7619]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 815/1000 [00:16<00:03, 50.90it/s, bio_penalty=0.0068, clustering_loss=0.0193, elbo=479.9781, epoch=815/1001, vae_loss=480.0043]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 816/1000 [00:16<00:03, 51.04it/s, bio_penalty=0.0068, clustering_loss=0.0193, elbo=479.9781, epoch=815/1001, vae_loss=480.0043]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 816/1000 [00:16<00:03, 51.04it/s, bio_penalty=0.0054, clustering_loss=0.0193, elbo=481.1781, epoch=816/1001, vae_loss=481.2029]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 817/1000 [00:16<00:03, 51.04it/s, bio_penalty=0.0055, clustering_loss=0.0193, elbo=479.8096, epoch=817/1001, vae_loss=479.8344]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 818/1000 [00:16<00:03, 51.04it/s, bio_penalty=0.0053, clustering_loss=0.0193, elbo=481.6936, epoch=818/1001, vae_loss=481.7183]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 819/1000 [00:16<00:03, 51.04it/s, bio_penalty=0.0051, clustering_loss=0.0193, elbo=480.6054, epoch=819/1001, vae_loss=480.6299]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 820/1000 [00:16<00:03, 51.04it/s, bio_penalty=0.0053, clustering_loss=0.0193, elbo=480.6233, epoch=820/1001, vae_loss=480.6480]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 821/1000 [00:16<00:03, 51.04it/s, bio_penalty=0.0056, clustering_loss=0.0193, elbo=480.1754, epoch=821/1001, vae_loss=480.2004]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 822/1000 [00:16<00:03, 50.61it/s, bio_penalty=0.0056, clustering_loss=0.0193, elbo=480.1754, epoch=821/1001, vae_loss=480.2004]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 822/1000 [00:16<00:03, 50.61it/s, bio_penalty=0.0054, clustering_loss=0.0193, elbo=478.9374, epoch=822/1001, vae_loss=478.9621]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 823/1000 [00:16<00:03, 50.61it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=480.8897, epoch=823/1001, vae_loss=480.9149]
Training: VAE for learning meaningful embeddings:  82%|████████▏ | 824/1000 [00:16<00:03, 50.61it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=478.8741, epoch=824/1001, vae_loss=478.8995]
Training: VAE for learning meaningful embeddings:  82%|████████▎ | 825/1000 [00:16<00:03, 50.61it/s, bio_penalty=0.0054, clustering_loss=0.0193, elbo=479.3248, epoch=825/1001, vae_loss=479.3496]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 826/1000 [00:16<00:03, 50.61it/s, bio_penalty=0.0055, clustering_loss=0.0193, elbo=479.1122, epoch=826/1001, vae_loss=479.1370]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 827/1000 [00:16<00:03, 50.61it/s, bio_penalty=0.0057, clustering_loss=0.0193, elbo=478.7102, epoch=827/1001, vae_loss=478.7352]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 828/1000 [00:16<00:03, 50.53it/s, bio_penalty=0.0057, clustering_loss=0.0193, elbo=478.7102, epoch=827/1001, vae_loss=478.7352]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 828/1000 [00:16<00:03, 50.53it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=479.4081, epoch=828/1001, vae_loss=479.4332]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 829/1000 [00:16<00:03, 50.53it/s, bio_penalty=0.0062, clustering_loss=0.0193, elbo=477.0792, epoch=829/1001, vae_loss=477.1047]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 830/1000 [00:16<00:03, 50.53it/s, bio_penalty=0.0062, clustering_loss=0.0193, elbo=477.9750, epoch=830/1001, vae_loss=478.0006]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 831/1000 [00:16<00:03, 50.53it/s, bio_penalty=0.0063, clustering_loss=0.0193, elbo=477.3658, epoch=831/1001, vae_loss=477.3914]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 832/1000 [00:16<00:03, 50.53it/s, bio_penalty=0.0057, clustering_loss=0.0193, elbo=477.9726, epoch=832/1001, vae_loss=477.9976]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 833/1000 [00:16<00:03, 50.53it/s, bio_penalty=0.0059, clustering_loss=0.0193, elbo=477.0225, epoch=833/1001, vae_loss=477.0477]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 834/1000 [00:16<00:03, 50.65it/s, bio_penalty=0.0059, clustering_loss=0.0193, elbo=477.0225, epoch=833/1001, vae_loss=477.0477]
Training: VAE for learning meaningful embeddings:  83%|████████▎ | 834/1000 [00:16<00:03, 50.65it/s, bio_penalty=0.0068, clustering_loss=0.0193, elbo=477.5956, epoch=834/1001, vae_loss=477.6217]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 835/1000 [00:16<00:03, 50.65it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=476.4291, epoch=835/1001, vae_loss=476.4545]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 836/1000 [00:17<00:03, 50.65it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=476.4506, epoch=836/1001, vae_loss=476.4758]
Training: VAE for learning meaningful embeddings:  84%|████████▎ | 837/1000 [00:17<00:03, 50.65it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=475.5019, epoch=837/1001, vae_loss=475.5269]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 838/1000 [00:17<00:03, 50.65it/s, bio_penalty=0.0054, clustering_loss=0.0193, elbo=476.2189, epoch=838/1001, vae_loss=476.2436]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 839/1000 [00:17<00:03, 50.65it/s, bio_penalty=0.0055, clustering_loss=0.0193, elbo=477.0844, epoch=839/1001, vae_loss=477.1092]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 840/1000 [00:17<00:03, 50.82it/s, bio_penalty=0.0055, clustering_loss=0.0193, elbo=477.0844, epoch=839/1001, vae_loss=477.1092]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 840/1000 [00:17<00:03, 50.82it/s, bio_penalty=0.0062, clustering_loss=0.0193, elbo=477.6232, epoch=840/1001, vae_loss=477.6487]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 841/1000 [00:17<00:03, 50.82it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=475.9795, epoch=841/1001, vae_loss=476.0048]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 842/1000 [00:17<00:03, 50.82it/s, bio_penalty=0.0059, clustering_loss=0.0193, elbo=492.2779, epoch=842/1001, vae_loss=492.3031]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 843/1000 [00:17<00:03, 50.82it/s, bio_penalty=0.0074, clustering_loss=0.0193, elbo=482.2672, epoch=843/1001, vae_loss=482.2939]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 844/1000 [00:17<00:03, 50.82it/s, bio_penalty=0.0056, clustering_loss=0.0193, elbo=476.5883, epoch=844/1001, vae_loss=476.6132]
Training: VAE for learning meaningful embeddings:  84%|████████▍ | 845/1000 [00:17<00:03, 50.82it/s, bio_penalty=0.0066, clustering_loss=0.0193, elbo=480.3318, epoch=845/1001, vae_loss=480.3577]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 846/1000 [00:17<00:03, 50.50it/s, bio_penalty=0.0066, clustering_loss=0.0193, elbo=480.3318, epoch=845/1001, vae_loss=480.3577]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 846/1000 [00:17<00:03, 50.50it/s, bio_penalty=0.0055, clustering_loss=0.0193, elbo=477.2312, epoch=846/1001, vae_loss=477.2560]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 847/1000 [00:17<00:03, 50.50it/s, bio_penalty=0.0055, clustering_loss=0.0193, elbo=480.6488, epoch=847/1001, vae_loss=480.6736]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 848/1000 [00:17<00:03, 50.50it/s, bio_penalty=0.0056, clustering_loss=0.0193, elbo=480.4814, epoch=848/1001, vae_loss=480.5063]
Training: VAE for learning meaningful embeddings:  85%|████████▍ | 849/1000 [00:17<00:02, 50.50it/s, bio_penalty=0.0061, clustering_loss=0.0193, elbo=479.9094, epoch=849/1001, vae_loss=479.9348]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 850/1000 [00:17<00:02, 50.50it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=475.8858, epoch=850/1001, vae_loss=475.9109]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 851/1000 [00:17<00:02, 50.50it/s, bio_penalty=0.0052, clustering_loss=0.0193, elbo=479.8097, epoch=851/1001, vae_loss=479.8341]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 852/1000 [00:17<00:02, 50.81it/s, bio_penalty=0.0052, clustering_loss=0.0193, elbo=479.8097, epoch=851/1001, vae_loss=479.8341]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 852/1000 [00:17<00:02, 50.81it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=475.0444, epoch=852/1001, vae_loss=475.0697]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 853/1000 [00:17<00:02, 50.81it/s, bio_penalty=0.0067, clustering_loss=0.0193, elbo=480.8587, epoch=853/1001, vae_loss=480.8847]
Training: VAE for learning meaningful embeddings:  85%|████████▌ | 854/1000 [00:17<00:02, 50.81it/s, bio_penalty=0.0054, clustering_loss=0.0193, elbo=475.1978, epoch=854/1001, vae_loss=475.2224]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 855/1000 [00:17<00:02, 50.81it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=479.5382, epoch=855/1001, vae_loss=479.5635]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 856/1000 [00:17<00:02, 50.81it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=475.5543, epoch=856/1001, vae_loss=475.5794]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 857/1000 [00:17<00:02, 50.81it/s, bio_penalty=0.0062, clustering_loss=0.0193, elbo=478.2315, epoch=857/1001, vae_loss=478.2570]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 858/1000 [00:17<00:02, 50.93it/s, bio_penalty=0.0062, clustering_loss=0.0193, elbo=478.2315, epoch=857/1001, vae_loss=478.2570]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 858/1000 [00:17<00:02, 50.93it/s, bio_penalty=0.0068, clustering_loss=0.0193, elbo=474.8666, epoch=858/1001, vae_loss=474.8927]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 859/1000 [00:17<00:02, 50.93it/s, bio_penalty=0.0071, clustering_loss=0.0193, elbo=478.5458, epoch=859/1001, vae_loss=478.5722]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 860/1000 [00:17<00:02, 50.93it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=474.3633, epoch=860/1001, vae_loss=474.3886]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 861/1000 [00:17<00:02, 50.93it/s, bio_penalty=0.0064, clustering_loss=0.0193, elbo=478.1593, epoch=861/1001, vae_loss=478.1850]
Training: VAE for learning meaningful embeddings:  86%|████████▌ | 862/1000 [00:17<00:02, 50.93it/s, bio_penalty=0.0059, clustering_loss=0.0193, elbo=472.8239, epoch=862/1001, vae_loss=472.8491]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 863/1000 [00:17<00:02, 50.93it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=476.8230, epoch=863/1001, vae_loss=476.8481]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 864/1000 [00:17<00:02, 51.02it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=476.8230, epoch=863/1001, vae_loss=476.8481]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 864/1000 [00:17<00:02, 51.02it/s, bio_penalty=0.0056, clustering_loss=0.0193, elbo=473.0473, epoch=864/1001, vae_loss=473.0721]
Training: VAE for learning meaningful embeddings:  86%|████████▋ | 865/1000 [00:17<00:02, 51.02it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=475.3639, epoch=865/1001, vae_loss=475.3889]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 866/1000 [00:17<00:02, 51.02it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=474.6486, epoch=866/1001, vae_loss=474.6739]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 867/1000 [00:17<00:02, 51.02it/s, bio_penalty=0.0064, clustering_loss=0.0193, elbo=475.7499, epoch=867/1001, vae_loss=475.7756]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 868/1000 [00:17<00:02, 51.02it/s, bio_penalty=0.0064, clustering_loss=0.0193, elbo=472.9653, epoch=868/1001, vae_loss=472.9909]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 869/1000 [00:17<00:02, 51.02it/s, bio_penalty=0.0071, clustering_loss=0.0193, elbo=474.3298, epoch=869/1001, vae_loss=474.3561]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 870/1000 [00:17<00:02, 50.80it/s, bio_penalty=0.0071, clustering_loss=0.0193, elbo=474.3298, epoch=869/1001, vae_loss=474.3561]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 870/1000 [00:17<00:02, 50.80it/s, bio_penalty=0.0059, clustering_loss=0.0193, elbo=474.4852, epoch=870/1001, vae_loss=474.5104]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 871/1000 [00:17<00:02, 50.80it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=474.4527, epoch=871/1001, vae_loss=474.4777]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 872/1000 [00:17<00:02, 50.80it/s, bio_penalty=0.0060, clustering_loss=0.0193, elbo=474.4825, epoch=872/1001, vae_loss=474.5077]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 873/1000 [00:17<00:02, 50.80it/s, bio_penalty=0.0067, clustering_loss=0.0193, elbo=473.0298, epoch=873/1001, vae_loss=473.0557]
Training: VAE for learning meaningful embeddings:  87%|████████▋ | 874/1000 [00:17<00:02, 50.80it/s, bio_penalty=0.0056, clustering_loss=0.0193, elbo=471.1030, epoch=874/1001, vae_loss=471.1278]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 875/1000 [00:17<00:02, 50.80it/s, bio_penalty=0.0057, clustering_loss=0.0193, elbo=473.5398, epoch=875/1001, vae_loss=473.5647]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 876/1000 [00:17<00:02, 51.08it/s, bio_penalty=0.0057, clustering_loss=0.0193, elbo=473.5398, epoch=875/1001, vae_loss=473.5647]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 876/1000 [00:17<00:02, 51.08it/s, bio_penalty=0.0058, clustering_loss=0.0193, elbo=471.5690, epoch=876/1001, vae_loss=471.5941]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 877/1000 [00:17<00:02, 51.08it/s, bio_penalty=0.0062, clustering_loss=0.0193, elbo=473.6316, epoch=877/1001, vae_loss=473.6571]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 878/1000 [00:17<00:02, 51.08it/s, bio_penalty=0.0062, clustering_loss=0.0192, elbo=473.3685, epoch=878/1001, vae_loss=473.3940]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 879/1000 [00:17<00:02, 51.08it/s, bio_penalty=0.0054, clustering_loss=0.0192, elbo=472.8391, epoch=879/1001, vae_loss=472.8638]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 880/1000 [00:17<00:02, 51.08it/s, bio_penalty=0.0059, clustering_loss=0.0192, elbo=474.7797, epoch=880/1001, vae_loss=474.8048]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 881/1000 [00:17<00:02, 51.08it/s, bio_penalty=0.0055, clustering_loss=0.0192, elbo=473.3542, epoch=881/1001, vae_loss=473.3789]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 882/1000 [00:17<00:02, 50.88it/s, bio_penalty=0.0055, clustering_loss=0.0192, elbo=473.3542, epoch=881/1001, vae_loss=473.3789]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 882/1000 [00:17<00:02, 50.88it/s, bio_penalty=0.0051, clustering_loss=0.0192, elbo=471.5945, epoch=882/1001, vae_loss=471.6189]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 883/1000 [00:17<00:02, 50.88it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=473.2936, epoch=883/1001, vae_loss=473.3177]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 884/1000 [00:17<00:02, 50.88it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=471.0191, epoch=884/1001, vae_loss=471.0431]
Training: VAE for learning meaningful embeddings:  88%|████████▊ | 885/1000 [00:17<00:02, 50.88it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=471.2214, epoch=885/1001, vae_loss=471.2455]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 886/1000 [00:17<00:02, 50.88it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=470.2294, epoch=886/1001, vae_loss=470.2534]
Training: VAE for learning meaningful embeddings:  89%|████████▊ | 887/1000 [00:18<00:02, 50.88it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=473.1274, epoch=887/1001, vae_loss=473.1516]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 888/1000 [00:18<00:02, 50.99it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=473.1274, epoch=887/1001, vae_loss=473.1516]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 888/1000 [00:18<00:02, 50.99it/s, bio_penalty=0.0057, clustering_loss=0.0192, elbo=470.9812, epoch=888/1001, vae_loss=471.0061]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 889/1000 [00:18<00:02, 50.99it/s, bio_penalty=0.0066, clustering_loss=0.0192, elbo=470.8315, epoch=889/1001, vae_loss=470.8574]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 890/1000 [00:18<00:02, 50.99it/s, bio_penalty=0.0052, clustering_loss=0.0192, elbo=470.1706, epoch=890/1001, vae_loss=470.1950]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 891/1000 [00:18<00:02, 50.99it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=471.3418, epoch=891/1001, vae_loss=471.3659]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 892/1000 [00:18<00:02, 50.99it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=470.0355, epoch=892/1001, vae_loss=470.0595]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 893/1000 [00:18<00:02, 50.99it/s, bio_penalty=0.0047, clustering_loss=0.0192, elbo=470.2088, epoch=893/1001, vae_loss=470.2328]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 894/1000 [00:18<00:02, 51.24it/s, bio_penalty=0.0047, clustering_loss=0.0192, elbo=470.2088, epoch=893/1001, vae_loss=470.2328]
Training: VAE for learning meaningful embeddings:  89%|████████▉ | 894/1000 [00:18<00:02, 51.24it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=469.8095, epoch=894/1001, vae_loss=469.8335]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 895/1000 [00:18<00:02, 51.24it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=470.1009, epoch=895/1001, vae_loss=470.1251]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 896/1000 [00:18<00:02, 51.24it/s, bio_penalty=0.0051, clustering_loss=0.0192, elbo=470.3614, epoch=896/1001, vae_loss=470.3857]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 897/1000 [00:18<00:02, 51.24it/s, bio_penalty=0.0051, clustering_loss=0.0192, elbo=469.5740, epoch=897/1001, vae_loss=469.5984]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 898/1000 [00:18<00:01, 51.24it/s, bio_penalty=0.0051, clustering_loss=0.0192, elbo=468.8282, epoch=898/1001, vae_loss=468.8524]
Training: VAE for learning meaningful embeddings:  90%|████████▉ | 899/1000 [00:18<00:01, 51.24it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=469.5461, epoch=899/1001, vae_loss=469.5702]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 900/1000 [00:18<00:01, 50.69it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=469.5461, epoch=899/1001, vae_loss=469.5702]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 900/1000 [00:18<00:01, 50.69it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=468.1764, epoch=900/1001, vae_loss=468.2006]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 901/1000 [00:18<00:01, 50.69it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=470.7146, epoch=901/1001, vae_loss=470.7388]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 902/1000 [00:18<00:01, 50.69it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=468.6054, epoch=902/1001, vae_loss=468.6296]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 903/1000 [00:18<00:01, 50.69it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=470.7310, epoch=903/1001, vae_loss=470.7552]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 904/1000 [00:18<00:01, 50.69it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=468.6070, epoch=904/1001, vae_loss=468.6312]
Training: VAE for learning meaningful embeddings:  90%|█████████ | 905/1000 [00:18<00:01, 50.69it/s, bio_penalty=0.0051, clustering_loss=0.0192, elbo=469.3358, epoch=905/1001, vae_loss=469.3601]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 906/1000 [00:18<00:01, 50.60it/s, bio_penalty=0.0051, clustering_loss=0.0192, elbo=469.3358, epoch=905/1001, vae_loss=469.3601]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 906/1000 [00:18<00:01, 50.60it/s, bio_penalty=0.0055, clustering_loss=0.0192, elbo=468.6195, epoch=906/1001, vae_loss=468.6443]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 907/1000 [00:18<00:01, 50.60it/s, bio_penalty=0.0052, clustering_loss=0.0192, elbo=469.3850, epoch=907/1001, vae_loss=469.4094]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 908/1000 [00:18<00:01, 50.60it/s, bio_penalty=0.0066, clustering_loss=0.0192, elbo=470.0180, epoch=908/1001, vae_loss=470.0438]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 909/1000 [00:18<00:01, 50.60it/s, bio_penalty=0.0066, clustering_loss=0.0192, elbo=468.6573, epoch=909/1001, vae_loss=468.6831]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 910/1000 [00:18<00:01, 50.60it/s, bio_penalty=0.0054, clustering_loss=0.0192, elbo=469.1894, epoch=910/1001, vae_loss=469.2140]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 911/1000 [00:18<00:01, 50.60it/s, bio_penalty=0.0056, clustering_loss=0.0192, elbo=468.3580, epoch=911/1001, vae_loss=468.3828]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 912/1000 [00:18<00:01, 50.37it/s, bio_penalty=0.0056, clustering_loss=0.0192, elbo=468.3580, epoch=911/1001, vae_loss=468.3828]
Training: VAE for learning meaningful embeddings:  91%|█████████ | 912/1000 [00:18<00:01, 50.37it/s, bio_penalty=0.0056, clustering_loss=0.0192, elbo=469.1606, epoch=912/1001, vae_loss=469.1855]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 913/1000 [00:18<00:01, 50.37it/s, bio_penalty=0.0053, clustering_loss=0.0192, elbo=469.2122, epoch=913/1001, vae_loss=469.2368]
Training: VAE for learning meaningful embeddings:  91%|█████████▏| 914/1000 [00:18<00:01, 50.37it/s, bio_penalty=0.0053, clustering_loss=0.0192, elbo=468.8846, epoch=914/1001, vae_loss=468.9091]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 915/1000 [00:18<00:01, 50.37it/s, bio_penalty=0.0055, clustering_loss=0.0192, elbo=468.4648, epoch=915/1001, vae_loss=468.4894]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 916/1000 [00:18<00:01, 50.37it/s, bio_penalty=0.0059, clustering_loss=0.0192, elbo=470.1148, epoch=916/1001, vae_loss=470.1400]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 917/1000 [00:18<00:01, 50.37it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=469.8818, epoch=917/1001, vae_loss=469.9058]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 918/1000 [00:18<00:01, 50.26it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=469.8818, epoch=917/1001, vae_loss=469.9058]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 918/1000 [00:18<00:01, 50.26it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=469.9792, epoch=918/1001, vae_loss=470.0035]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 919/1000 [00:18<00:01, 50.26it/s, bio_penalty=0.0055, clustering_loss=0.0192, elbo=468.8473, epoch=919/1001, vae_loss=468.8719]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 920/1000 [00:18<00:01, 50.26it/s, bio_penalty=0.0052, clustering_loss=0.0192, elbo=469.9612, epoch=920/1001, vae_loss=469.9855]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 921/1000 [00:18<00:01, 50.26it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=467.7282, epoch=921/1001, vae_loss=467.7523]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 922/1000 [00:18<00:01, 50.26it/s, bio_penalty=0.0055, clustering_loss=0.0192, elbo=469.6804, epoch=922/1001, vae_loss=469.7051]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 923/1000 [00:18<00:01, 50.26it/s, bio_penalty=0.0057, clustering_loss=0.0192, elbo=467.6086, epoch=923/1001, vae_loss=467.6335]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 924/1000 [00:18<00:01, 50.07it/s, bio_penalty=0.0057, clustering_loss=0.0192, elbo=467.6086, epoch=923/1001, vae_loss=467.6335]
Training: VAE for learning meaningful embeddings:  92%|█████████▏| 924/1000 [00:18<00:01, 50.07it/s, bio_penalty=0.0055, clustering_loss=0.0192, elbo=470.8615, epoch=924/1001, vae_loss=470.8862]
Training: VAE for learning meaningful embeddings:  92%|█████████▎| 925/1000 [00:18<00:01, 50.07it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=470.0328, epoch=925/1001, vae_loss=470.0568]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 926/1000 [00:18<00:01, 50.07it/s, bio_penalty=0.0046, clustering_loss=0.0192, elbo=467.4619, epoch=926/1001, vae_loss=467.4857]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 927/1000 [00:18<00:01, 50.07it/s, bio_penalty=0.0049, clustering_loss=0.0192, elbo=468.9857, epoch=927/1001, vae_loss=469.0098]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 928/1000 [00:18<00:01, 50.07it/s, bio_penalty=0.0046, clustering_loss=0.0192, elbo=467.0213, epoch=928/1001, vae_loss=467.0451]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 929/1000 [00:18<00:01, 50.07it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=467.8463, epoch=929/1001, vae_loss=467.8703]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 930/1000 [00:18<00:01, 49.88it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=467.8463, epoch=929/1001, vae_loss=467.8703]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 930/1000 [00:18<00:01, 49.88it/s, bio_penalty=0.0052, clustering_loss=0.0192, elbo=465.8995, epoch=930/1001, vae_loss=465.9240]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 931/1000 [00:18<00:01, 49.88it/s, bio_penalty=0.0057, clustering_loss=0.0192, elbo=467.4570, epoch=931/1001, vae_loss=467.4819]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 932/1000 [00:18<00:01, 49.88it/s, bio_penalty=0.0054, clustering_loss=0.0192, elbo=467.2780, epoch=932/1001, vae_loss=467.3026]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 933/1000 [00:18<00:01, 49.88it/s, bio_penalty=0.0047, clustering_loss=0.0192, elbo=470.2566, epoch=933/1001, vae_loss=470.2805]
Training: VAE for learning meaningful embeddings:  93%|█████████▎| 934/1000 [00:18<00:01, 49.88it/s, bio_penalty=0.0047, clustering_loss=0.0192, elbo=467.7827, epoch=934/1001, vae_loss=467.8066]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 935/1000 [00:18<00:01, 49.88it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=467.6253, epoch=935/1001, vae_loss=467.6493]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 936/1000 [00:18<00:01, 50.19it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=467.6253, epoch=935/1001, vae_loss=467.6493]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 936/1000 [00:18<00:01, 50.19it/s, bio_penalty=0.0050, clustering_loss=0.0192, elbo=470.0423, epoch=936/1001, vae_loss=470.0664]
Training: VAE for learning meaningful embeddings:  94%|█████████▎| 937/1000 [00:18<00:01, 50.19it/s, bio_penalty=0.0062, clustering_loss=0.0192, elbo=469.0747, epoch=937/1001, vae_loss=469.1001]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 938/1000 [00:19<00:01, 50.19it/s, bio_penalty=0.0048, clustering_loss=0.0192, elbo=467.3166, epoch=938/1001, vae_loss=467.3406]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 939/1000 [00:19<00:01, 50.19it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=468.0448, epoch=939/1001, vae_loss=468.0685]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 940/1000 [00:19<00:01, 50.19it/s, bio_penalty=0.0052, clustering_loss=0.0191, elbo=467.1522, epoch=940/1001, vae_loss=467.1766]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 941/1000 [00:19<00:01, 50.19it/s, bio_penalty=0.0048, clustering_loss=0.0191, elbo=466.1215, epoch=941/1001, vae_loss=466.1454]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 942/1000 [00:19<00:01, 50.36it/s, bio_penalty=0.0048, clustering_loss=0.0191, elbo=466.1215, epoch=941/1001, vae_loss=466.1454]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 942/1000 [00:19<00:01, 50.36it/s, bio_penalty=0.0047, clustering_loss=0.0191, elbo=467.2737, epoch=942/1001, vae_loss=467.2975]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 943/1000 [00:19<00:01, 50.36it/s, bio_penalty=0.0044, clustering_loss=0.0191, elbo=468.3753, epoch=943/1001, vae_loss=468.3989]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 944/1000 [00:19<00:01, 50.36it/s, bio_penalty=0.0050, clustering_loss=0.0191, elbo=467.8744, epoch=944/1001, vae_loss=467.8985]
Training: VAE for learning meaningful embeddings:  94%|█████████▍| 945/1000 [00:19<00:01, 50.36it/s, bio_penalty=0.0046, clustering_loss=0.0191, elbo=466.5185, epoch=945/1001, vae_loss=466.5423]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 946/1000 [00:19<00:01, 50.36it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=465.4670, epoch=946/1001, vae_loss=465.4907]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 947/1000 [00:19<00:01, 50.36it/s, bio_penalty=0.0046, clustering_loss=0.0191, elbo=466.1224, epoch=947/1001, vae_loss=466.1461]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 948/1000 [00:19<00:01, 50.46it/s, bio_penalty=0.0046, clustering_loss=0.0191, elbo=466.1224, epoch=947/1001, vae_loss=466.1461]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 948/1000 [00:19<00:01, 50.46it/s, bio_penalty=0.0049, clustering_loss=0.0191, elbo=466.4543, epoch=948/1001, vae_loss=466.4784]
Training: VAE for learning meaningful embeddings:  95%|█████████▍| 949/1000 [00:19<00:01, 50.46it/s, bio_penalty=0.0044, clustering_loss=0.0191, elbo=465.7671, epoch=949/1001, vae_loss=465.7906]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 950/1000 [00:19<00:00, 50.46it/s, bio_penalty=0.0041, clustering_loss=0.0191, elbo=466.7119, epoch=950/1001, vae_loss=466.7351]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 951/1000 [00:19<00:00, 50.46it/s, bio_penalty=0.0040, clustering_loss=0.0191, elbo=465.1258, epoch=951/1001, vae_loss=465.1490]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 952/1000 [00:19<00:00, 50.46it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=466.7715, epoch=952/1001, vae_loss=466.7951]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 953/1000 [00:19<00:00, 50.46it/s, bio_penalty=0.0051, clustering_loss=0.0191, elbo=464.4326, epoch=953/1001, vae_loss=464.4568]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 954/1000 [00:19<00:00, 50.77it/s, bio_penalty=0.0051, clustering_loss=0.0191, elbo=464.4326, epoch=953/1001, vae_loss=464.4568]
Training: VAE for learning meaningful embeddings:  95%|█████████▌| 954/1000 [00:19<00:00, 50.77it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=464.6968, epoch=954/1001, vae_loss=464.7201]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 955/1000 [00:19<00:00, 50.77it/s, bio_penalty=0.0041, clustering_loss=0.0191, elbo=465.8786, epoch=955/1001, vae_loss=465.9018]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 956/1000 [00:19<00:00, 50.77it/s, bio_penalty=0.0044, clustering_loss=0.0191, elbo=463.8854, epoch=956/1001, vae_loss=463.9090]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 957/1000 [00:19<00:00, 50.77it/s, bio_penalty=0.0062, clustering_loss=0.0191, elbo=467.1610, epoch=957/1001, vae_loss=467.1863]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 958/1000 [00:19<00:00, 50.77it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=465.7780, epoch=958/1001, vae_loss=465.8013]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 959/1000 [00:19<00:00, 50.77it/s, bio_penalty=0.0046, clustering_loss=0.0191, elbo=468.6887, epoch=959/1001, vae_loss=468.7124]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 960/1000 [00:19<00:00, 51.02it/s, bio_penalty=0.0046, clustering_loss=0.0191, elbo=468.6887, epoch=959/1001, vae_loss=468.7124]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 960/1000 [00:19<00:00, 51.02it/s, bio_penalty=0.0051, clustering_loss=0.0191, elbo=465.5532, epoch=960/1001, vae_loss=465.5774]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 961/1000 [00:19<00:00, 51.02it/s, bio_penalty=0.0051, clustering_loss=0.0191, elbo=464.9130, epoch=961/1001, vae_loss=464.9372]
Training: VAE for learning meaningful embeddings:  96%|█████████▌| 962/1000 [00:19<00:00, 51.02it/s, bio_penalty=0.0057, clustering_loss=0.0191, elbo=468.9276, epoch=962/1001, vae_loss=468.9525]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 963/1000 [00:19<00:00, 51.02it/s, bio_penalty=0.0043, clustering_loss=0.0191, elbo=464.4879, epoch=963/1001, vae_loss=464.5114]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 964/1000 [00:19<00:00, 51.02it/s, bio_penalty=0.0046, clustering_loss=0.0191, elbo=466.8556, epoch=964/1001, vae_loss=466.8793]
Training: VAE for learning meaningful embeddings:  96%|█████████▋| 965/1000 [00:19<00:00, 51.02it/s, bio_penalty=0.0050, clustering_loss=0.0191, elbo=468.5605, epoch=965/1001, vae_loss=468.5846]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 966/1000 [00:19<00:00, 51.29it/s, bio_penalty=0.0050, clustering_loss=0.0191, elbo=468.5605, epoch=965/1001, vae_loss=468.5846]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 966/1000 [00:19<00:00, 51.29it/s, bio_penalty=0.0044, clustering_loss=0.0191, elbo=465.0089, epoch=966/1001, vae_loss=465.0324]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 967/1000 [00:19<00:00, 51.29it/s, bio_penalty=0.0044, clustering_loss=0.0191, elbo=467.8687, epoch=967/1001, vae_loss=467.8923]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 968/1000 [00:19<00:00, 51.29it/s, bio_penalty=0.0046, clustering_loss=0.0191, elbo=465.7049, epoch=968/1001, vae_loss=465.7286]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 969/1000 [00:19<00:00, 51.29it/s, bio_penalty=0.0044, clustering_loss=0.0191, elbo=462.7974, epoch=969/1001, vae_loss=462.8210]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 970/1000 [00:19<00:00, 51.29it/s, bio_penalty=0.0043, clustering_loss=0.0191, elbo=466.4221, epoch=970/1001, vae_loss=466.4455]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 971/1000 [00:19<00:00, 51.29it/s, bio_penalty=0.0043, clustering_loss=0.0191, elbo=463.1075, epoch=971/1001, vae_loss=463.1309]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 972/1000 [00:19<00:00, 50.82it/s, bio_penalty=0.0043, clustering_loss=0.0191, elbo=463.1075, epoch=971/1001, vae_loss=463.1309]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 972/1000 [00:19<00:00, 50.82it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=468.9320, epoch=972/1001, vae_loss=468.9555]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 973/1000 [00:19<00:00, 50.82it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=465.1719, epoch=973/1001, vae_loss=465.1955]
Training: VAE for learning meaningful embeddings:  97%|█████████▋| 974/1000 [00:19<00:00, 50.82it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=465.9675, epoch=974/1001, vae_loss=465.9907]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 975/1000 [00:19<00:00, 50.82it/s, bio_penalty=0.0040, clustering_loss=0.0191, elbo=465.6289, epoch=975/1001, vae_loss=465.6520]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 976/1000 [00:19<00:00, 50.82it/s, bio_penalty=0.0048, clustering_loss=0.0191, elbo=464.8707, epoch=976/1001, vae_loss=464.8946]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 977/1000 [00:19<00:00, 50.82it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=462.4943, epoch=977/1001, vae_loss=462.5175]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 978/1000 [00:19<00:00, 51.25it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=462.4943, epoch=977/1001, vae_loss=462.5175]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 978/1000 [00:19<00:00, 51.25it/s, bio_penalty=0.0041, clustering_loss=0.0191, elbo=465.0648, epoch=978/1001, vae_loss=465.0881]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 979/1000 [00:19<00:00, 51.25it/s, bio_penalty=0.0041, clustering_loss=0.0191, elbo=464.7379, epoch=979/1001, vae_loss=464.7611]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 980/1000 [00:19<00:00, 51.25it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=465.7820, epoch=980/1001, vae_loss=465.8055]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 981/1000 [00:19<00:00, 51.25it/s, bio_penalty=0.0040, clustering_loss=0.0191, elbo=462.3398, epoch=981/1001, vae_loss=462.3629]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 982/1000 [00:19<00:00, 51.25it/s, bio_penalty=0.0044, clustering_loss=0.0191, elbo=463.7908, epoch=982/1001, vae_loss=463.8143]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 983/1000 [00:19<00:00, 51.25it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=463.8330, epoch=983/1001, vae_loss=463.8563]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 984/1000 [00:19<00:00, 50.95it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=463.8330, epoch=983/1001, vae_loss=463.8563]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 984/1000 [00:19<00:00, 50.95it/s, bio_penalty=0.0042, clustering_loss=0.0191, elbo=463.0326, epoch=984/1001, vae_loss=463.0559]
Training: VAE for learning meaningful embeddings:  98%|█████████▊| 985/1000 [00:19<00:00, 50.95it/s, bio_penalty=0.0051, clustering_loss=0.0191, elbo=463.7579, epoch=985/1001, vae_loss=463.7820]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 986/1000 [00:19<00:00, 50.95it/s, bio_penalty=0.0043, clustering_loss=0.0191, elbo=463.4096, epoch=986/1001, vae_loss=463.4330]
Training: VAE for learning meaningful embeddings:  99%|█████████▊| 987/1000 [00:19<00:00, 50.95it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=463.8232, epoch=987/1001, vae_loss=463.8468]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 988/1000 [00:19<00:00, 50.95it/s, bio_penalty=0.0047, clustering_loss=0.0191, elbo=461.7497, epoch=988/1001, vae_loss=461.7735]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 989/1000 [00:20<00:00, 50.95it/s, bio_penalty=0.0049, clustering_loss=0.0191, elbo=462.7540, epoch=989/1001, vae_loss=462.7779]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 990/1000 [00:20<00:00, 50.52it/s, bio_penalty=0.0049, clustering_loss=0.0191, elbo=462.7540, epoch=989/1001, vae_loss=462.7779]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 990/1000 [00:20<00:00, 50.52it/s, bio_penalty=0.0048, clustering_loss=0.0191, elbo=463.2816, epoch=990/1001, vae_loss=463.3054]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 991/1000 [00:20<00:00, 50.52it/s, bio_penalty=0.0048, clustering_loss=0.0191, elbo=463.8464, epoch=991/1001, vae_loss=463.8702]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 992/1000 [00:20<00:00, 50.52it/s, bio_penalty=0.0055, clustering_loss=0.0191, elbo=463.4625, epoch=992/1001, vae_loss=463.4870]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 993/1000 [00:20<00:00, 50.52it/s, bio_penalty=0.0050, clustering_loss=0.0191, elbo=466.2459, epoch=993/1001, vae_loss=466.2700]
Training: VAE for learning meaningful embeddings:  99%|█████████▉| 994/1000 [00:20<00:00, 50.52it/s, bio_penalty=0.0045, clustering_loss=0.0191, elbo=464.6583, epoch=994/1001, vae_loss=464.6818]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 995/1000 [00:20<00:00, 50.52it/s, bio_penalty=0.0045, clustering_loss=0.0190, elbo=461.0760, epoch=995/1001, vae_loss=461.0995]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 996/1000 [00:20<00:00, 50.77it/s, bio_penalty=0.0045, clustering_loss=0.0190, elbo=461.0760, epoch=995/1001, vae_loss=461.0995]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 996/1000 [00:20<00:00, 50.77it/s, bio_penalty=0.0050, clustering_loss=0.0190, elbo=464.8276, epoch=996/1001, vae_loss=464.8517]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 997/1000 [00:20<00:00, 50.77it/s, bio_penalty=0.0049, clustering_loss=0.0190, elbo=460.8474, epoch=997/1001, vae_loss=460.8713]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 998/1000 [00:20<00:00, 50.77it/s, bio_penalty=0.0064, clustering_loss=0.0190, elbo=464.1448, epoch=998/1001, vae_loss=464.1703]
Training: VAE for learning meaningful embeddings: 100%|█████████▉| 999/1000 [00:20<00:00, 50.77it/s, bio_penalty=0.0044, clustering_loss=0.0190, elbo=463.4958, epoch=999/1001, vae_loss=463.5193]
Training: VAE for learning meaningful embeddings: 100%|██████████| 1000/1000 [00:20<00:00, 49.47it/s, bio_penalty=0.0044, clustering_loss=0.0190, elbo=463.4958, epoch=999/1001, vae_loss=463.5193]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 0/2000 [00:00<?, ?it/s]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 0/2000 [00:00<?, ?it/s, adv_loss=-1.5886, bio_penalty=0.0942, clustering_loss=0.0190, disc_loss=1.5886, elbo=716.3171, epoch=0/2001, vae_loss=716.4304]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 1/2000 [00:00<01:42, 19.54it/s, adv_loss=-1.5886, bio_penalty=0.8117, clustering_loss=0.0190, disc_loss=1.5886, elbo=1197.0797, epoch=1/2001, vae_loss=1197.9104]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 2/2000 [00:00<01:16, 26.22it/s, adv_loss=-1.6066, bio_penalty=0.7586, clustering_loss=0.0190, disc_loss=1.6066, elbo=752.3898, epoch=2/2001, vae_loss=753.1675]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 3/2000 [00:00<01:07, 29.58it/s, adv_loss=-1.6145, bio_penalty=1.3713, clustering_loss=0.0190, disc_loss=1.6145, elbo=892.8636, epoch=3/2001, vae_loss=894.2540]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 4/2000 [00:00<00:51, 39.12it/s, adv_loss=-1.6145, bio_penalty=1.3713, clustering_loss=0.0190, disc_loss=1.6145, elbo=892.8636, epoch=3/2001, vae_loss=894.2540]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 4/2000 [00:00<00:51, 39.12it/s, adv_loss=-1.6021, bio_penalty=1.9278, clustering_loss=0.0190, disc_loss=1.6021, elbo=869.3705, epoch=4/2001, vae_loss=871.3173]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 5/2000 [00:00<00:50, 39.12it/s, adv_loss=-1.5988, bio_penalty=2.6915, clustering_loss=0.0190, disc_loss=1.5988, elbo=823.6823, epoch=5/2001, vae_loss=826.3928]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 6/2000 [00:00<00:50, 39.12it/s, adv_loss=-1.5930, bio_penalty=3.4625, clustering_loss=0.0190, disc_loss=1.5930, elbo=856.0369, epoch=6/2001, vae_loss=859.5184]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 7/2000 [00:00<00:50, 39.12it/s, adv_loss=-1.5981, bio_penalty=4.1783, clustering_loss=0.0190, disc_loss=1.5981, elbo=978.1987, epoch=7/2001, vae_loss=982.3961]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 8/2000 [00:00<00:51, 38.88it/s, adv_loss=-1.5981, bio_penalty=4.1783, clustering_loss=0.0190, disc_loss=1.5981, elbo=978.1987, epoch=7/2001, vae_loss=982.3961]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 8/2000 [00:00<00:51, 38.88it/s, adv_loss=-1.6047, bio_penalty=4.8110, clustering_loss=0.0190, disc_loss=1.6047, elbo=1019.2277, epoch=8/2001, vae_loss=1024.0576]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 9/2000 [00:00<00:51, 38.88it/s, adv_loss=-1.6136, bio_penalty=5.3501, clustering_loss=0.0190, disc_loss=1.6136, elbo=1037.7961, epoch=9/2001, vae_loss=1043.1653]
Training: Embeddings batch effect correction using adversrial training:   0%|          | 10/2000 [00:00<00:51, 38.88it/s, adv_loss=-1.6170, bio_penalty=5.6193, clustering_loss=0.0190, disc_loss=1.6170, elbo=1032.4724, epoch=10/2001, vae_loss=1038.1107]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 11/2000 [00:00<00:51, 38.88it/s, adv_loss=-1.6280, bio_penalty=5.6165, clustering_loss=0.0190, disc_loss=1.6280, elbo=1079.4739, epoch=11/2001, vae_loss=1085.1094]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 12/2000 [00:00<00:50, 39.17it/s, adv_loss=-1.6280, bio_penalty=5.6165, clustering_loss=0.0190, disc_loss=1.6280, elbo=1079.4739, epoch=11/2001, vae_loss=1085.1094]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 12/2000 [00:00<00:50, 39.17it/s, adv_loss=-1.6211, bio_penalty=5.3507, clustering_loss=0.0190, disc_loss=1.6211, elbo=1086.0677, epoch=12/2001, vae_loss=1091.4375]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 13/2000 [00:00<00:50, 39.17it/s, adv_loss=-1.6271, bio_penalty=5.1230, clustering_loss=0.0190, disc_loss=1.6271, elbo=1085.8817, epoch=13/2001, vae_loss=1091.0238]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 14/2000 [00:00<00:50, 39.17it/s, adv_loss=-1.6218, bio_penalty=4.8156, clustering_loss=0.0190, disc_loss=1.6218, elbo=1140.6636, epoch=14/2001, vae_loss=1145.4982]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 15/2000 [00:00<00:50, 39.17it/s, adv_loss=-1.6132, bio_penalty=4.3199, clustering_loss=0.0190, disc_loss=1.6132, elbo=1174.5901, epoch=15/2001, vae_loss=1178.9291]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 16/2000 [00:00<00:51, 38.76it/s, adv_loss=-1.6132, bio_penalty=4.3199, clustering_loss=0.0190, disc_loss=1.6132, elbo=1174.5901, epoch=15/2001, vae_loss=1178.9291]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 16/2000 [00:00<00:51, 38.76it/s, adv_loss=-1.6055, bio_penalty=3.7820, clustering_loss=0.0190, disc_loss=1.6055, elbo=1225.3318, epoch=16/2001, vae_loss=1229.1328]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 17/2000 [00:00<00:51, 38.76it/s, adv_loss=-1.5773, bio_penalty=3.2733, clustering_loss=0.0190, disc_loss=1.5773, elbo=1237.5305, epoch=17/2001, vae_loss=1240.8229]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 18/2000 [00:00<00:51, 38.76it/s, adv_loss=-1.5621, bio_penalty=2.8143, clustering_loss=0.0190, disc_loss=1.5621, elbo=1212.1807, epoch=18/2001, vae_loss=1215.0140]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 19/2000 [00:00<00:51, 38.76it/s, adv_loss=-1.5689, bio_penalty=2.3369, clustering_loss=0.0190, disc_loss=1.5689, elbo=1200.7173, epoch=19/2001, vae_loss=1203.0732]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 20/2000 [00:00<00:51, 38.81it/s, adv_loss=-1.5689, bio_penalty=2.3369, clustering_loss=0.0190, disc_loss=1.5689, elbo=1200.7173, epoch=19/2001, vae_loss=1203.0732]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 20/2000 [00:00<00:51, 38.81it/s, adv_loss=-1.5577, bio_penalty=1.9551, clustering_loss=0.0190, disc_loss=1.5577, elbo=1132.0837, epoch=20/2001, vae_loss=1134.0579]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 21/2000 [00:00<00:50, 38.81it/s, adv_loss=-1.5512, bio_penalty=1.6129, clustering_loss=0.0190, disc_loss=1.5512, elbo=1152.9077, epoch=21/2001, vae_loss=1154.5397]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 22/2000 [00:00<00:50, 38.81it/s, adv_loss=-1.5596, bio_penalty=1.3272, clustering_loss=0.0190, disc_loss=1.5596, elbo=1129.9808, epoch=22/2001, vae_loss=1131.3270]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 23/2000 [00:00<00:50, 38.81it/s, adv_loss=-1.5853, bio_penalty=1.1795, clustering_loss=0.0190, disc_loss=1.5853, elbo=1139.9978, epoch=23/2001, vae_loss=1141.1964]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 24/2000 [00:00<00:50, 38.78it/s, adv_loss=-1.5853, bio_penalty=1.1795, clustering_loss=0.0190, disc_loss=1.5853, elbo=1139.9978, epoch=23/2001, vae_loss=1141.1964]
Training: Embeddings batch effect correction using adversrial training:   1%|          | 24/2000 [00:00<00:50, 38.78it/s, adv_loss=-1.5796, bio_penalty=1.1558, clustering_loss=0.0190, disc_loss=1.5796, elbo=1151.2489, epoch=24/2001, vae_loss=1152.4238]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 25/2000 [00:00<00:50, 38.78it/s, adv_loss=-1.6142, bio_penalty=1.0494, clustering_loss=0.0190, disc_loss=1.6142, elbo=1138.9926, epoch=25/2001, vae_loss=1140.0610]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 26/2000 [00:00<00:50, 38.78it/s, adv_loss=-1.6114, bio_penalty=0.9370, clustering_loss=0.0190, disc_loss=1.6114, elbo=1125.4110, epoch=26/2001, vae_loss=1126.3671]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 27/2000 [00:00<00:50, 38.78it/s, adv_loss=-1.6497, bio_penalty=0.7552, clustering_loss=0.0190, disc_loss=1.6497, elbo=1096.5397, epoch=27/2001, vae_loss=1097.3140]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 28/2000 [00:00<00:50, 38.85it/s, adv_loss=-1.6497, bio_penalty=0.7552, clustering_loss=0.0190, disc_loss=1.6497, elbo=1096.5397, epoch=27/2001, vae_loss=1097.3140]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 28/2000 [00:00<00:50, 38.85it/s, adv_loss=-1.6728, bio_penalty=0.6070, clustering_loss=0.0190, disc_loss=1.6728, elbo=1119.6915, epoch=28/2001, vae_loss=1120.3176]
Training: Embeddings batch effect correction using adversrial training:   1%|▏         | 29/2000 [00:00<00:50, 38.85it/s, adv_loss=-1.6735, bio_penalty=0.5978, clustering_loss=0.0190, disc_loss=1.6735, elbo=1102.5007, epoch=29/2001, vae_loss=1103.1177]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 30/2000 [00:00<00:50, 38.85it/s, adv_loss=-1.6817, bio_penalty=0.6146, clustering_loss=0.0190, disc_loss=1.6817, elbo=1121.6382, epoch=30/2001, vae_loss=1122.2719]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 31/2000 [00:00<00:50, 38.85it/s, adv_loss=-1.6879, bio_penalty=0.7049, clustering_loss=0.0190, disc_loss=1.6879, elbo=1152.8018, epoch=31/2001, vae_loss=1153.5258]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 32/2000 [00:00<00:50, 38.91it/s, adv_loss=-1.6879, bio_penalty=0.7049, clustering_loss=0.0190, disc_loss=1.6879, elbo=1152.8018, epoch=31/2001, vae_loss=1153.5258]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 32/2000 [00:00<00:50, 38.91it/s, adv_loss=-1.7080, bio_penalty=0.9095, clustering_loss=0.0190, disc_loss=1.7080, elbo=1178.7365, epoch=32/2001, vae_loss=1179.6649]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 33/2000 [00:00<00:50, 38.91it/s, adv_loss=-1.6997, bio_penalty=1.1541, clustering_loss=0.0190, disc_loss=1.6997, elbo=1162.1477, epoch=33/2001, vae_loss=1163.3208]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 34/2000 [00:00<00:50, 38.91it/s, adv_loss=-1.7108, bio_penalty=1.3441, clustering_loss=0.0190, disc_loss=1.7108, elbo=1179.6899, epoch=34/2001, vae_loss=1181.0531]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 35/2000 [00:00<00:50, 38.91it/s, adv_loss=-1.7025, bio_penalty=1.4302, clustering_loss=0.0190, disc_loss=1.7025, elbo=1174.3458, epoch=35/2001, vae_loss=1175.7950]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 36/2000 [00:00<00:50, 38.91it/s, adv_loss=-1.6788, bio_penalty=1.4324, clustering_loss=0.0190, disc_loss=1.6788, elbo=1216.4253, epoch=36/2001, vae_loss=1217.8768]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 37/2000 [00:00<00:49, 39.30it/s, adv_loss=-1.6788, bio_penalty=1.4324, clustering_loss=0.0190, disc_loss=1.6788, elbo=1216.4253, epoch=36/2001, vae_loss=1217.8768]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 37/2000 [00:00<00:49, 39.30it/s, adv_loss=-1.6740, bio_penalty=1.3688, clustering_loss=0.0190, disc_loss=1.6740, elbo=1274.1232, epoch=37/2001, vae_loss=1275.5111]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 38/2000 [00:00<00:49, 39.30it/s, adv_loss=-1.6424, bio_penalty=1.1628, clustering_loss=0.0190, disc_loss=1.6424, elbo=1277.3124, epoch=38/2001, vae_loss=1278.4943]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 39/2000 [00:01<00:49, 39.30it/s, adv_loss=-1.6179, bio_penalty=0.9286, clustering_loss=0.0190, disc_loss=1.6179, elbo=1218.6256, epoch=39/2001, vae_loss=1219.5732]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 40/2000 [00:01<00:49, 39.30it/s, adv_loss=-1.5907, bio_penalty=0.6869, clustering_loss=0.0190, disc_loss=1.5907, elbo=1155.5728, epoch=40/2001, vae_loss=1156.2787]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 41/2000 [00:01<00:49, 39.42it/s, adv_loss=-1.5907, bio_penalty=0.6869, clustering_loss=0.0190, disc_loss=1.5907, elbo=1155.5728, epoch=40/2001, vae_loss=1156.2787]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 41/2000 [00:01<00:49, 39.42it/s, adv_loss=-1.5914, bio_penalty=0.5867, clustering_loss=0.0190, disc_loss=1.5914, elbo=1139.1150, epoch=41/2001, vae_loss=1139.7208]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 42/2000 [00:01<00:49, 39.42it/s, adv_loss=-1.6040, bio_penalty=0.8077, clustering_loss=0.0190, disc_loss=1.6040, elbo=1137.1327, epoch=42/2001, vae_loss=1137.9594]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 43/2000 [00:01<00:49, 39.42it/s, adv_loss=-1.6148, bio_penalty=1.2410, clustering_loss=0.0190, disc_loss=1.6148, elbo=1154.7920, epoch=43/2001, vae_loss=1156.0520]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 44/2000 [00:01<00:49, 39.42it/s, adv_loss=-1.6314, bio_penalty=1.5449, clustering_loss=0.0190, disc_loss=1.6314, elbo=1107.0425, epoch=44/2001, vae_loss=1108.6064]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 45/2000 [00:01<00:49, 39.43it/s, adv_loss=-1.6314, bio_penalty=1.5449, clustering_loss=0.0190, disc_loss=1.6314, elbo=1107.0425, epoch=44/2001, vae_loss=1108.6064]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 45/2000 [00:01<00:49, 39.43it/s, adv_loss=-1.6688, bio_penalty=1.7354, clustering_loss=0.0190, disc_loss=1.6688, elbo=1095.2585, epoch=45/2001, vae_loss=1097.0131]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 46/2000 [00:01<00:49, 39.43it/s, adv_loss=-1.6882, bio_penalty=1.9833, clustering_loss=0.0190, disc_loss=1.6882, elbo=1122.0709, epoch=46/2001, vae_loss=1124.0732]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 47/2000 [00:01<00:49, 39.43it/s, adv_loss=-1.7274, bio_penalty=2.3820, clustering_loss=0.0190, disc_loss=1.7274, elbo=1155.6338, epoch=47/2001, vae_loss=1158.0348]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 48/2000 [00:01<00:49, 39.43it/s, adv_loss=-1.7622, bio_penalty=3.0412, clustering_loss=0.0190, disc_loss=1.7622, elbo=1214.4358, epoch=48/2001, vae_loss=1217.4961]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 49/2000 [00:01<00:49, 39.51it/s, adv_loss=-1.7622, bio_penalty=3.0412, clustering_loss=0.0190, disc_loss=1.7622, elbo=1214.4358, epoch=48/2001, vae_loss=1217.4961]
Training: Embeddings batch effect correction using adversrial training:   2%|▏         | 49/2000 [00:01<00:49, 39.51it/s, adv_loss=-1.8002, bio_penalty=4.0061, clustering_loss=0.0190, disc_loss=1.8002, elbo=1305.2251, epoch=49/2001, vae_loss=1309.2502]
Training: Embeddings batch effect correction using adversrial training:   2%|▎         | 50/2000 [00:01<00:49, 39.51it/s, adv_loss=-1.8155, bio_penalty=5.0301, clustering_loss=0.0190, disc_loss=1.8155, elbo=1374.6781, epoch=50/2001, vae_loss=1379.7273]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 51/2000 [00:01<00:49, 39.51it/s, adv_loss=-1.8314, bio_penalty=5.9864, clustering_loss=0.0190, disc_loss=1.8314, elbo=1541.8995, epoch=51/2001, vae_loss=1547.9050]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 52/2000 [00:01<00:49, 39.51it/s, adv_loss=-1.8203, bio_penalty=6.6565, clustering_loss=0.0190, disc_loss=1.8203, elbo=1748.5354, epoch=52/2001, vae_loss=1755.2109]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 53/2000 [00:01<00:49, 39.29it/s, adv_loss=-1.8203, bio_penalty=6.6565, clustering_loss=0.0190, disc_loss=1.8203, elbo=1748.5354, epoch=52/2001, vae_loss=1755.2109]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 53/2000 [00:01<00:49, 39.29it/s, adv_loss=-1.7949, bio_penalty=6.9568, clustering_loss=0.0190, disc_loss=1.7949, elbo=1785.6909, epoch=53/2001, vae_loss=1792.6667]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 54/2000 [00:01<00:49, 39.29it/s, adv_loss=-1.7601, bio_penalty=6.8172, clustering_loss=0.0190, disc_loss=1.7601, elbo=1843.4297, epoch=54/2001, vae_loss=1850.2660]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 55/2000 [00:01<00:49, 39.29it/s, adv_loss=-1.7470, bio_penalty=6.3127, clustering_loss=0.0190, disc_loss=1.7470, elbo=2282.8235, epoch=55/2001, vae_loss=2289.1553]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 56/2000 [00:01<00:49, 39.29it/s, adv_loss=-1.7311, bio_penalty=5.2762, clustering_loss=0.0190, disc_loss=1.7311, elbo=2094.5381, epoch=56/2001, vae_loss=2099.8335]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 57/2000 [00:01<00:49, 39.24it/s, adv_loss=-1.7311, bio_penalty=5.2762, clustering_loss=0.0190, disc_loss=1.7311, elbo=2094.5381, epoch=56/2001, vae_loss=2099.8335]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 57/2000 [00:01<00:49, 39.24it/s, adv_loss=-1.7389, bio_penalty=3.8188, clustering_loss=0.0190, disc_loss=1.7389, elbo=2137.9463, epoch=57/2001, vae_loss=2141.7842]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 58/2000 [00:01<00:49, 39.24it/s, adv_loss=-1.7379, bio_penalty=2.4874, clustering_loss=0.0190, disc_loss=1.7379, elbo=2240.1099, epoch=58/2001, vae_loss=2242.6165]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 59/2000 [00:01<00:49, 39.24it/s, adv_loss=-1.7110, bio_penalty=1.7275, clustering_loss=0.0190, disc_loss=1.7110, elbo=1978.6183, epoch=59/2001, vae_loss=1980.3649]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 60/2000 [00:01<00:49, 39.24it/s, adv_loss=-1.6992, bio_penalty=1.9725, clustering_loss=0.0190, disc_loss=1.6992, elbo=2945.6785, epoch=60/2001, vae_loss=2947.6699]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 61/2000 [00:01<00:49, 39.13it/s, adv_loss=-1.6992, bio_penalty=1.9725, clustering_loss=0.0190, disc_loss=1.6992, elbo=2945.6785, epoch=60/2001, vae_loss=2947.6699]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 61/2000 [00:01<00:49, 39.13it/s, adv_loss=-1.6565, bio_penalty=3.1494, clustering_loss=0.0190, disc_loss=1.6565, elbo=3198.1194, epoch=61/2001, vae_loss=3201.2878]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 62/2000 [00:01<00:49, 39.13it/s, adv_loss=-1.6154, bio_penalty=3.9224, clustering_loss=0.0190, disc_loss=1.6154, elbo=2918.0918, epoch=62/2001, vae_loss=2922.0332]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 63/2000 [00:01<00:49, 39.13it/s, adv_loss=-1.5953, bio_penalty=4.3347, clustering_loss=0.0190, disc_loss=1.5953, elbo=2517.2681, epoch=63/2001, vae_loss=2521.6218]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 64/2000 [00:01<00:49, 39.13it/s, adv_loss=-1.5915, bio_penalty=4.5830, clustering_loss=0.0190, disc_loss=1.5915, elbo=2151.8203, epoch=64/2001, vae_loss=2156.4224]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 65/2000 [00:01<00:49, 39.21it/s, adv_loss=-1.5915, bio_penalty=4.5830, clustering_loss=0.0190, disc_loss=1.5915, elbo=2151.8203, epoch=64/2001, vae_loss=2156.4224]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 65/2000 [00:01<00:49, 39.21it/s, adv_loss=-1.6099, bio_penalty=4.4019, clustering_loss=0.0190, disc_loss=1.6099, elbo=1814.1128, epoch=65/2001, vae_loss=1818.5338]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 66/2000 [00:01<00:49, 39.21it/s, adv_loss=-1.6219, bio_penalty=4.3292, clustering_loss=0.0190, disc_loss=1.6219, elbo=1620.8009, epoch=66/2001, vae_loss=1625.1492]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 67/2000 [00:01<00:49, 39.21it/s, adv_loss=-1.6181, bio_penalty=4.4872, clustering_loss=0.0190, disc_loss=1.6181, elbo=1508.6617, epoch=67/2001, vae_loss=1513.1680]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 68/2000 [00:01<00:49, 39.21it/s, adv_loss=-1.6232, bio_penalty=4.6698, clustering_loss=0.0190, disc_loss=1.6232, elbo=1376.9503, epoch=68/2001, vae_loss=1381.6392]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 69/2000 [00:01<00:49, 38.81it/s, adv_loss=-1.6232, bio_penalty=4.6698, clustering_loss=0.0190, disc_loss=1.6232, elbo=1376.9503, epoch=68/2001, vae_loss=1381.6392]
Training: Embeddings batch effect correction using adversrial training:   3%|▎         | 69/2000 [00:01<00:49, 38.81it/s, adv_loss=-1.6391, bio_penalty=4.9407, clustering_loss=0.0190, disc_loss=1.6391, elbo=1397.5948, epoch=69/2001, vae_loss=1402.5546]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 70/2000 [00:01<00:49, 38.81it/s, adv_loss=-1.6645, bio_penalty=5.2584, clustering_loss=0.0190, disc_loss=1.6645, elbo=1368.0552, epoch=70/2001, vae_loss=1373.3326]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 71/2000 [00:01<00:49, 38.81it/s, adv_loss=-1.6632, bio_penalty=5.4445, clustering_loss=0.0190, disc_loss=1.6632, elbo=1376.4056, epoch=71/2001, vae_loss=1381.8693]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 72/2000 [00:01<00:49, 38.81it/s, adv_loss=-1.6709, bio_penalty=5.4988, clustering_loss=0.0190, disc_loss=1.6709, elbo=1326.8820, epoch=72/2001, vae_loss=1332.3998]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 73/2000 [00:01<00:49, 38.66it/s, adv_loss=-1.6709, bio_penalty=5.4988, clustering_loss=0.0190, disc_loss=1.6709, elbo=1326.8820, epoch=72/2001, vae_loss=1332.3998]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 73/2000 [00:01<00:49, 38.66it/s, adv_loss=-1.6688, bio_penalty=5.5429, clustering_loss=0.0190, disc_loss=1.6688, elbo=1279.2222, epoch=73/2001, vae_loss=1284.7841]
Training: Embeddings batch effect correction using adversrial training:   4%|▎         | 74/2000 [00:01<00:49, 38.66it/s, adv_loss=-1.6923, bio_penalty=5.4981, clustering_loss=0.0190, disc_loss=1.6923, elbo=1289.8638, epoch=74/2001, vae_loss=1295.3810]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 75/2000 [00:01<00:49, 38.66it/s, adv_loss=-1.6892, bio_penalty=5.4254, clustering_loss=0.0190, disc_loss=1.6892, elbo=1267.5344, epoch=75/2001, vae_loss=1272.9789]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 76/2000 [00:01<00:49, 38.66it/s, adv_loss=-1.7000, bio_penalty=5.2963, clustering_loss=0.0190, disc_loss=1.7000, elbo=1246.7540, epoch=76/2001, vae_loss=1252.0693]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 77/2000 [00:01<00:49, 38.60it/s, adv_loss=-1.7000, bio_penalty=5.2963, clustering_loss=0.0190, disc_loss=1.7000, elbo=1246.7540, epoch=76/2001, vae_loss=1252.0693]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 77/2000 [00:01<00:49, 38.60it/s, adv_loss=-1.7078, bio_penalty=5.1486, clustering_loss=0.0190, disc_loss=1.7078, elbo=1250.5991, epoch=77/2001, vae_loss=1255.7668]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 78/2000 [00:02<00:49, 38.60it/s, adv_loss=-1.7129, bio_penalty=5.0135, clustering_loss=0.0190, disc_loss=1.7129, elbo=1255.3629, epoch=78/2001, vae_loss=1260.3955]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 79/2000 [00:02<00:49, 38.60it/s, adv_loss=-1.7199, bio_penalty=4.9706, clustering_loss=0.0190, disc_loss=1.7199, elbo=1261.4293, epoch=79/2001, vae_loss=1266.4189]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 80/2000 [00:02<00:49, 38.60it/s, adv_loss=-1.7111, bio_penalty=4.9992, clustering_loss=0.0190, disc_loss=1.7111, elbo=1302.1508, epoch=80/2001, vae_loss=1307.1689]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 81/2000 [00:02<00:49, 38.58it/s, adv_loss=-1.7111, bio_penalty=4.9992, clustering_loss=0.0190, disc_loss=1.7111, elbo=1302.1508, epoch=80/2001, vae_loss=1307.1689]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 81/2000 [00:02<00:49, 38.58it/s, adv_loss=-1.7035, bio_penalty=5.1065, clustering_loss=0.0190, disc_loss=1.7035, elbo=1327.8467, epoch=81/2001, vae_loss=1332.9722]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 82/2000 [00:02<00:49, 38.58it/s, adv_loss=-1.6978, bio_penalty=5.1573, clustering_loss=0.0190, disc_loss=1.6978, elbo=1328.4768, epoch=82/2001, vae_loss=1333.6531]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 83/2000 [00:02<00:49, 38.58it/s, adv_loss=-1.6852, bio_penalty=5.0228, clustering_loss=0.0190, disc_loss=1.6852, elbo=1339.2902, epoch=83/2001, vae_loss=1344.3320]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 84/2000 [00:02<00:49, 38.58it/s, adv_loss=-1.6937, bio_penalty=4.7960, clustering_loss=0.0190, disc_loss=1.6937, elbo=1371.0967, epoch=84/2001, vae_loss=1375.9117]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 85/2000 [00:02<00:49, 38.32it/s, adv_loss=-1.6937, bio_penalty=4.7960, clustering_loss=0.0190, disc_loss=1.6937, elbo=1371.0967, epoch=84/2001, vae_loss=1375.9117]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 85/2000 [00:02<00:49, 38.32it/s, adv_loss=-1.6763, bio_penalty=4.5713, clustering_loss=0.0190, disc_loss=1.6763, elbo=1406.4368, epoch=85/2001, vae_loss=1411.0271]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 86/2000 [00:02<00:49, 38.32it/s, adv_loss=-1.6790, bio_penalty=4.4648, clustering_loss=0.0190, disc_loss=1.6790, elbo=1380.4281, epoch=86/2001, vae_loss=1384.9120]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 87/2000 [00:02<00:49, 38.32it/s, adv_loss=-1.6822, bio_penalty=4.3199, clustering_loss=0.0190, disc_loss=1.6822, elbo=1435.8787, epoch=87/2001, vae_loss=1440.2175]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 88/2000 [00:02<00:49, 38.32it/s, adv_loss=-1.6676, bio_penalty=4.1011, clustering_loss=0.0190, disc_loss=1.6676, elbo=1419.9219, epoch=88/2001, vae_loss=1424.0420]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 89/2000 [00:02<00:50, 38.15it/s, adv_loss=-1.6676, bio_penalty=4.1011, clustering_loss=0.0190, disc_loss=1.6676, elbo=1419.9219, epoch=88/2001, vae_loss=1424.0420]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 89/2000 [00:02<00:50, 38.15it/s, adv_loss=-1.6815, bio_penalty=3.7883, clustering_loss=0.0190, disc_loss=1.6815, elbo=1462.9980, epoch=89/2001, vae_loss=1466.8054]
Training: Embeddings batch effect correction using adversrial training:   4%|▍         | 90/2000 [00:02<00:50, 38.15it/s, adv_loss=-1.6819, bio_penalty=3.3905, clustering_loss=0.0190, disc_loss=1.6819, elbo=1454.8828, epoch=90/2001, vae_loss=1458.2924]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 91/2000 [00:02<00:50, 38.15it/s, adv_loss=-1.6902, bio_penalty=3.4452, clustering_loss=0.0190, disc_loss=1.6902, elbo=1467.2322, epoch=91/2001, vae_loss=1470.6964]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 92/2000 [00:02<00:50, 38.15it/s, adv_loss=-1.6903, bio_penalty=3.6532, clustering_loss=0.0190, disc_loss=1.6903, elbo=1453.4468, epoch=92/2001, vae_loss=1457.1190]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 93/2000 [00:02<00:49, 38.16it/s, adv_loss=-1.6903, bio_penalty=3.6532, clustering_loss=0.0190, disc_loss=1.6903, elbo=1453.4468, epoch=92/2001, vae_loss=1457.1190]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 93/2000 [00:02<00:49, 38.16it/s, adv_loss=-1.6944, bio_penalty=3.4516, clustering_loss=0.0190, disc_loss=1.6944, elbo=1410.6853, epoch=93/2001, vae_loss=1414.1560]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 94/2000 [00:02<00:49, 38.16it/s, adv_loss=-1.6911, bio_penalty=3.1002, clustering_loss=0.0190, disc_loss=1.6911, elbo=1392.1489, epoch=94/2001, vae_loss=1395.2682]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 95/2000 [00:02<00:49, 38.16it/s, adv_loss=-1.6917, bio_penalty=2.8992, clustering_loss=0.0190, disc_loss=1.6917, elbo=1327.9885, epoch=95/2001, vae_loss=1330.9069]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 96/2000 [00:02<00:49, 38.16it/s, adv_loss=-1.6939, bio_penalty=2.7697, clustering_loss=0.0190, disc_loss=1.6939, elbo=1311.9471, epoch=96/2001, vae_loss=1314.7358]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 97/2000 [00:02<00:49, 38.22it/s, adv_loss=-1.6939, bio_penalty=2.7697, clustering_loss=0.0190, disc_loss=1.6939, elbo=1311.9471, epoch=96/2001, vae_loss=1314.7358]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 97/2000 [00:02<00:49, 38.22it/s, adv_loss=-1.6958, bio_penalty=2.7516, clustering_loss=0.0190, disc_loss=1.6958, elbo=1331.6310, epoch=97/2001, vae_loss=1334.4016]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 98/2000 [00:02<00:49, 38.22it/s, adv_loss=-1.7116, bio_penalty=2.7022, clustering_loss=0.0190, disc_loss=1.7116, elbo=1362.9551, epoch=98/2001, vae_loss=1365.6764]
Training: Embeddings batch effect correction using adversrial training:   5%|▍         | 99/2000 [00:02<00:49, 38.22it/s, adv_loss=-1.7170, bio_penalty=2.6196, clustering_loss=0.0190, disc_loss=1.7170, elbo=1375.8710, epoch=99/2001, vae_loss=1378.5096]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 100/2000 [00:02<00:49, 38.22it/s, adv_loss=-1.7117, bio_penalty=2.4487, clustering_loss=0.0190, disc_loss=1.7117, elbo=1377.8702, epoch=100/2001, vae_loss=1380.3380]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 101/2000 [00:02<00:49, 38.25it/s, adv_loss=-1.7117, bio_penalty=2.4487, clustering_loss=0.0190, disc_loss=1.7117, elbo=1377.8702, epoch=100/2001, vae_loss=1380.3380]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 101/2000 [00:02<00:49, 38.25it/s, adv_loss=-1.7213, bio_penalty=2.1705, clustering_loss=0.0190, disc_loss=1.7213, elbo=1356.2695, epoch=101/2001, vae_loss=1358.4590]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 102/2000 [00:02<00:49, 38.25it/s, adv_loss=-1.7442, bio_penalty=1.9325, clustering_loss=0.0190, disc_loss=1.7442, elbo=1363.8374, epoch=102/2001, vae_loss=1365.7889]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 103/2000 [00:02<00:49, 38.25it/s, adv_loss=-1.7582, bio_penalty=1.6840, clustering_loss=0.0190, disc_loss=1.7582, elbo=1435.9725, epoch=103/2001, vae_loss=1437.6755]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 104/2000 [00:02<00:49, 38.25it/s, adv_loss=-1.7777, bio_penalty=1.4710, clustering_loss=0.0190, disc_loss=1.7777, elbo=1461.2017, epoch=104/2001, vae_loss=1462.6917]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 105/2000 [00:02<00:49, 38.44it/s, adv_loss=-1.7777, bio_penalty=1.4710, clustering_loss=0.0190, disc_loss=1.7777, elbo=1461.2017, epoch=104/2001, vae_loss=1462.6917]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 105/2000 [00:02<00:49, 38.44it/s, adv_loss=-1.8052, bio_penalty=1.3277, clustering_loss=0.0190, disc_loss=1.8052, elbo=1558.7894, epoch=105/2001, vae_loss=1560.1361]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 106/2000 [00:02<00:49, 38.44it/s, adv_loss=-1.8085, bio_penalty=1.3290, clustering_loss=0.0190, disc_loss=1.8085, elbo=1636.7766, epoch=106/2001, vae_loss=1638.1246]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 107/2000 [00:02<00:49, 38.44it/s, adv_loss=-1.8080, bio_penalty=1.4598, clustering_loss=0.0190, disc_loss=1.8080, elbo=1698.6841, epoch=107/2001, vae_loss=1700.1628]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 108/2000 [00:02<00:49, 38.44it/s, adv_loss=-1.7833, bio_penalty=1.5989, clustering_loss=0.0190, disc_loss=1.7833, elbo=1780.2089, epoch=108/2001, vae_loss=1781.8268]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 109/2000 [00:02<00:49, 38.48it/s, adv_loss=-1.7833, bio_penalty=1.5989, clustering_loss=0.0190, disc_loss=1.7833, elbo=1780.2089, epoch=108/2001, vae_loss=1781.8268]
Training: Embeddings batch effect correction using adversrial training:   5%|▌         | 109/2000 [00:02<00:49, 38.48it/s, adv_loss=-1.7431, bio_penalty=1.7133, clustering_loss=0.0190, disc_loss=1.7431, elbo=1773.2019, epoch=109/2001, vae_loss=1774.9342]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 110/2000 [00:02<00:49, 38.48it/s, adv_loss=-1.7144, bio_penalty=1.8414, clustering_loss=0.0190, disc_loss=1.7144, elbo=1726.9529, epoch=110/2001, vae_loss=1728.8134]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 111/2000 [00:02<00:49, 38.48it/s, adv_loss=-1.6519, bio_penalty=2.0052, clustering_loss=0.0190, disc_loss=1.6519, elbo=1705.8307, epoch=111/2001, vae_loss=1707.8550]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 112/2000 [00:02<00:49, 38.48it/s, adv_loss=-1.6116, bio_penalty=2.2447, clustering_loss=0.0190, disc_loss=1.6116, elbo=1628.2609, epoch=112/2001, vae_loss=1630.5245]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 113/2000 [00:02<00:48, 38.88it/s, adv_loss=-1.6116, bio_penalty=2.2447, clustering_loss=0.0190, disc_loss=1.6116, elbo=1628.2609, epoch=112/2001, vae_loss=1630.5245]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 113/2000 [00:02<00:48, 38.88it/s, adv_loss=-1.5827, bio_penalty=2.4944, clustering_loss=0.0190, disc_loss=1.5827, elbo=1552.9111, epoch=113/2001, vae_loss=1555.4246]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 114/2000 [00:02<00:48, 38.88it/s, adv_loss=-1.5814, bio_penalty=2.5663, clustering_loss=0.0190, disc_loss=1.5814, elbo=1527.9250, epoch=114/2001, vae_loss=1530.5104]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 115/2000 [00:02<00:48, 38.88it/s, adv_loss=-1.5949, bio_penalty=2.5239, clustering_loss=0.0190, disc_loss=1.5949, elbo=1517.2500, epoch=115/2001, vae_loss=1519.7928]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 116/2000 [00:03<00:48, 38.88it/s, adv_loss=-1.5876, bio_penalty=2.4541, clustering_loss=0.0190, disc_loss=1.5876, elbo=1477.1903, epoch=116/2001, vae_loss=1479.6635]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 117/2000 [00:03<00:48, 39.11it/s, adv_loss=-1.5876, bio_penalty=2.4541, clustering_loss=0.0190, disc_loss=1.5876, elbo=1477.1903, epoch=116/2001, vae_loss=1479.6635]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 117/2000 [00:03<00:48, 39.11it/s, adv_loss=-1.5911, bio_penalty=2.3986, clustering_loss=0.0190, disc_loss=1.5911, elbo=1450.1952, epoch=117/2001, vae_loss=1452.6128]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 118/2000 [00:03<00:48, 39.11it/s, adv_loss=-1.6052, bio_penalty=2.2980, clustering_loss=0.0190, disc_loss=1.6052, elbo=1501.0269, epoch=118/2001, vae_loss=1503.3439]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 119/2000 [00:03<00:48, 39.11it/s, adv_loss=-1.6414, bio_penalty=2.3395, clustering_loss=0.0190, disc_loss=1.6414, elbo=1447.2340, epoch=119/2001, vae_loss=1449.5925]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 120/2000 [00:03<00:48, 39.11it/s, adv_loss=-1.6401, bio_penalty=2.4121, clustering_loss=0.0190, disc_loss=1.6401, elbo=1393.2007, epoch=120/2001, vae_loss=1395.6318]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 121/2000 [00:03<00:47, 39.28it/s, adv_loss=-1.6401, bio_penalty=2.4121, clustering_loss=0.0190, disc_loss=1.6401, elbo=1393.2007, epoch=120/2001, vae_loss=1395.6318]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 121/2000 [00:03<00:47, 39.28it/s, adv_loss=-1.6535, bio_penalty=2.5144, clustering_loss=0.0190, disc_loss=1.6535, elbo=1347.7560, epoch=121/2001, vae_loss=1350.2894]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 122/2000 [00:03<00:47, 39.28it/s, adv_loss=-1.6794, bio_penalty=2.5571, clustering_loss=0.0190, disc_loss=1.6794, elbo=1299.2922, epoch=122/2001, vae_loss=1301.8684]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 123/2000 [00:03<00:47, 39.28it/s, adv_loss=-1.6996, bio_penalty=2.5667, clustering_loss=0.0190, disc_loss=1.6996, elbo=1257.7216, epoch=123/2001, vae_loss=1260.3073]
Training: Embeddings batch effect correction using adversrial training:   6%|▌         | 124/2000 [00:03<00:47, 39.28it/s, adv_loss=-1.6844, bio_penalty=2.5857, clustering_loss=0.0190, disc_loss=1.6844, elbo=1191.8396, epoch=124/2001, vae_loss=1194.4443]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 125/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.6844, bio_penalty=2.5857, clustering_loss=0.0190, disc_loss=1.6844, elbo=1191.8396, epoch=124/2001, vae_loss=1194.4443]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 125/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.6854, bio_penalty=2.6665, clustering_loss=0.0190, disc_loss=1.6854, elbo=1206.4504, epoch=125/2001, vae_loss=1209.1360]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 126/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7576, bio_penalty=2.8372, clustering_loss=0.0190, disc_loss=1.7576, elbo=1218.1040, epoch=126/2001, vae_loss=1220.9603]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 127/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7876, bio_penalty=2.8057, clustering_loss=0.0190, disc_loss=1.7876, elbo=1204.7267, epoch=127/2001, vae_loss=1207.5514]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 128/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.8089, bio_penalty=2.5402, clustering_loss=0.0190, disc_loss=1.8089, elbo=1211.6948, epoch=128/2001, vae_loss=1214.2540]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 129/2000 [00:03<00:47, 39.54it/s, adv_loss=-1.8089, bio_penalty=2.5402, clustering_loss=0.0190, disc_loss=1.8089, elbo=1211.6948, epoch=128/2001, vae_loss=1214.2540]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 129/2000 [00:03<00:47, 39.54it/s, adv_loss=-1.8059, bio_penalty=2.1051, clustering_loss=0.0190, disc_loss=1.8059, elbo=1191.3835, epoch=129/2001, vae_loss=1193.5077]
Training: Embeddings batch effect correction using adversrial training:   6%|▋         | 130/2000 [00:03<00:47, 39.54it/s, adv_loss=-1.8224, bio_penalty=1.6023, clustering_loss=0.0190, disc_loss=1.8224, elbo=1191.2550, epoch=130/2001, vae_loss=1192.8763]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 131/2000 [00:03<00:47, 39.54it/s, adv_loss=-1.8317, bio_penalty=1.2620, clustering_loss=0.0190, disc_loss=1.8317, elbo=1202.4492, epoch=131/2001, vae_loss=1203.7303]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 132/2000 [00:03<00:47, 39.54it/s, adv_loss=-1.8326, bio_penalty=1.0141, clustering_loss=0.0190, disc_loss=1.8326, elbo=1289.6392, epoch=132/2001, vae_loss=1290.6722]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 133/2000 [00:03<00:47, 39.13it/s, adv_loss=-1.8326, bio_penalty=1.0141, clustering_loss=0.0190, disc_loss=1.8326, elbo=1289.6392, epoch=132/2001, vae_loss=1290.6722]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 133/2000 [00:03<00:47, 39.13it/s, adv_loss=-1.8356, bio_penalty=0.8255, clustering_loss=0.0190, disc_loss=1.8356, elbo=1383.1741, epoch=133/2001, vae_loss=1384.0187]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 134/2000 [00:03<00:47, 39.13it/s, adv_loss=-1.8094, bio_penalty=0.7344, clustering_loss=0.0190, disc_loss=1.8094, elbo=1469.9369, epoch=134/2001, vae_loss=1470.6903]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 135/2000 [00:03<00:47, 39.13it/s, adv_loss=-1.7976, bio_penalty=0.7149, clustering_loss=0.0190, disc_loss=1.7976, elbo=1546.1935, epoch=135/2001, vae_loss=1546.9275]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 136/2000 [00:03<00:47, 39.13it/s, adv_loss=-1.7656, bio_penalty=0.8297, clustering_loss=0.0190, disc_loss=1.7656, elbo=1608.8308, epoch=136/2001, vae_loss=1609.6796]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 137/2000 [00:03<00:47, 39.13it/s, adv_loss=-1.7483, bio_penalty=1.2142, clustering_loss=0.0190, disc_loss=1.7483, elbo=1693.5791, epoch=137/2001, vae_loss=1694.8124]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 138/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7483, bio_penalty=1.2142, clustering_loss=0.0190, disc_loss=1.7483, elbo=1693.5791, epoch=137/2001, vae_loss=1694.8124]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 138/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7304, bio_penalty=1.9859, clustering_loss=0.0190, disc_loss=1.7304, elbo=1739.3551, epoch=138/2001, vae_loss=1741.3600]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 139/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7299, bio_penalty=3.3449, clustering_loss=0.0190, disc_loss=1.7299, elbo=1826.7932, epoch=139/2001, vae_loss=1830.1571]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 140/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7519, bio_penalty=4.7833, clustering_loss=0.0190, disc_loss=1.7519, elbo=1957.8669, epoch=140/2001, vae_loss=1962.6693]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 141/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7621, bio_penalty=5.7614, clustering_loss=0.0190, disc_loss=1.7621, elbo=1929.1719, epoch=141/2001, vae_loss=1934.9523]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 142/2000 [00:03<00:47, 39.44it/s, adv_loss=-1.7729, bio_penalty=6.3192, clustering_loss=0.0190, disc_loss=1.7729, elbo=1894.0669, epoch=142/2001, vae_loss=1900.4052]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 143/2000 [00:03<00:46, 39.60it/s, adv_loss=-1.7729, bio_penalty=6.3192, clustering_loss=0.0190, disc_loss=1.7729, elbo=1894.0669, epoch=142/2001, vae_loss=1900.4052]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 143/2000 [00:03<00:46, 39.60it/s, adv_loss=-1.7617, bio_penalty=6.3888, clustering_loss=0.0190, disc_loss=1.7617, elbo=1954.6309, epoch=143/2001, vae_loss=1961.0387]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 144/2000 [00:03<00:46, 39.60it/s, adv_loss=-1.7351, bio_penalty=6.1875, clustering_loss=0.0190, disc_loss=1.7351, elbo=1894.0082, epoch=144/2001, vae_loss=1900.2147]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 145/2000 [00:03<00:46, 39.60it/s, adv_loss=-1.7115, bio_penalty=5.9038, clustering_loss=0.0190, disc_loss=1.7115, elbo=1841.9696, epoch=145/2001, vae_loss=1847.8925]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 146/2000 [00:03<00:46, 39.60it/s, adv_loss=-1.6778, bio_penalty=5.4844, clustering_loss=0.0190, disc_loss=1.6778, elbo=1775.3450, epoch=146/2001, vae_loss=1780.8484]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 147/2000 [00:03<00:46, 39.48it/s, adv_loss=-1.6778, bio_penalty=5.4844, clustering_loss=0.0190, disc_loss=1.6778, elbo=1775.3450, epoch=146/2001, vae_loss=1780.8484]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 147/2000 [00:03<00:46, 39.48it/s, adv_loss=-1.6501, bio_penalty=5.0677, clustering_loss=0.0190, disc_loss=1.6501, elbo=1695.8903, epoch=147/2001, vae_loss=1700.9771]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 148/2000 [00:03<00:46, 39.48it/s, adv_loss=-1.6303, bio_penalty=4.7847, clustering_loss=0.0190, disc_loss=1.6303, elbo=1611.6274, epoch=148/2001, vae_loss=1616.4312]
Training: Embeddings batch effect correction using adversrial training:   7%|▋         | 149/2000 [00:03<00:46, 39.48it/s, adv_loss=-1.6250, bio_penalty=4.6940, clustering_loss=0.0190, disc_loss=1.6250, elbo=1502.2671, epoch=149/2001, vae_loss=1506.9801]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 150/2000 [00:03<00:46, 39.48it/s, adv_loss=-1.6220, bio_penalty=4.8477, clustering_loss=0.0190, disc_loss=1.6220, elbo=1412.9808, epoch=150/2001, vae_loss=1417.8475]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 151/2000 [00:03<00:47, 39.23it/s, adv_loss=-1.6220, bio_penalty=4.8477, clustering_loss=0.0190, disc_loss=1.6220, elbo=1412.9808, epoch=150/2001, vae_loss=1417.8475]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 151/2000 [00:03<00:47, 39.23it/s, adv_loss=-1.6252, bio_penalty=5.1494, clustering_loss=0.0190, disc_loss=1.6252, elbo=1349.1591, epoch=151/2001, vae_loss=1354.3275]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 152/2000 [00:03<00:47, 39.23it/s, adv_loss=-1.6275, bio_penalty=5.3383, clustering_loss=0.0190, disc_loss=1.6275, elbo=1284.2433, epoch=152/2001, vae_loss=1289.6006]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 153/2000 [00:03<00:47, 39.23it/s, adv_loss=-1.6357, bio_penalty=5.2074, clustering_loss=0.0190, disc_loss=1.6357, elbo=1213.6636, epoch=153/2001, vae_loss=1218.8900]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 154/2000 [00:03<00:47, 39.23it/s, adv_loss=-1.6337, bio_penalty=4.7478, clustering_loss=0.0190, disc_loss=1.6337, elbo=1137.1127, epoch=154/2001, vae_loss=1141.8795]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 155/2000 [00:03<00:46, 39.27it/s, adv_loss=-1.6337, bio_penalty=4.7478, clustering_loss=0.0190, disc_loss=1.6337, elbo=1137.1127, epoch=154/2001, vae_loss=1141.8795]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 155/2000 [00:03<00:46, 39.27it/s, adv_loss=-1.6329, bio_penalty=3.9633, clustering_loss=0.0190, disc_loss=1.6329, elbo=1079.1414, epoch=155/2001, vae_loss=1083.1238]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 156/2000 [00:04<00:46, 39.27it/s, adv_loss=-1.6281, bio_penalty=3.2193, clustering_loss=0.0190, disc_loss=1.6281, elbo=1050.9277, epoch=156/2001, vae_loss=1054.1661]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 157/2000 [00:04<00:46, 39.27it/s, adv_loss=-1.6293, bio_penalty=2.7410, clustering_loss=0.0190, disc_loss=1.6293, elbo=1008.6509, epoch=157/2001, vae_loss=1011.4109]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 158/2000 [00:04<00:46, 39.27it/s, adv_loss=-1.6264, bio_penalty=2.4404, clustering_loss=0.0190, disc_loss=1.6264, elbo=998.7394, epoch=158/2001, vae_loss=1001.1989]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 159/2000 [00:04<00:46, 39.45it/s, adv_loss=-1.6264, bio_penalty=2.4404, clustering_loss=0.0190, disc_loss=1.6264, elbo=998.7394, epoch=158/2001, vae_loss=1001.1989]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 159/2000 [00:04<00:46, 39.45it/s, adv_loss=-1.6255, bio_penalty=2.2885, clustering_loss=0.0190, disc_loss=1.6255, elbo=987.8611, epoch=159/2001, vae_loss=990.1687]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 160/2000 [00:04<00:46, 39.45it/s, adv_loss=-1.6247, bio_penalty=2.1948, clustering_loss=0.0190, disc_loss=1.6247, elbo=964.1461, epoch=160/2001, vae_loss=966.3599]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 161/2000 [00:04<00:46, 39.45it/s, adv_loss=-1.6227, bio_penalty=2.0550, clustering_loss=0.0190, disc_loss=1.6227, elbo=970.6198, epoch=161/2001, vae_loss=972.6938]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 162/2000 [00:04<00:46, 39.45it/s, adv_loss=-1.6207, bio_penalty=1.9318, clustering_loss=0.0190, disc_loss=1.6207, elbo=956.0684, epoch=162/2001, vae_loss=958.0192]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 163/2000 [00:04<00:46, 39.48it/s, adv_loss=-1.6207, bio_penalty=1.9318, clustering_loss=0.0190, disc_loss=1.6207, elbo=956.0684, epoch=162/2001, vae_loss=958.0192]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 163/2000 [00:04<00:46, 39.48it/s, adv_loss=-1.6134, bio_penalty=1.8946, clustering_loss=0.0190, disc_loss=1.6134, elbo=943.7572, epoch=163/2001, vae_loss=945.6708]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 164/2000 [00:04<00:46, 39.48it/s, adv_loss=-1.6140, bio_penalty=1.8985, clustering_loss=0.0190, disc_loss=1.6140, elbo=925.9075, epoch=164/2001, vae_loss=927.8251]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 165/2000 [00:04<00:46, 39.48it/s, adv_loss=-1.6151, bio_penalty=1.9284, clustering_loss=0.0190, disc_loss=1.6151, elbo=913.3516, epoch=165/2001, vae_loss=915.2990]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 166/2000 [00:04<00:46, 39.48it/s, adv_loss=-1.6117, bio_penalty=1.8535, clustering_loss=0.0190, disc_loss=1.6117, elbo=880.2811, epoch=166/2001, vae_loss=882.1537]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 167/2000 [00:04<00:46, 39.25it/s, adv_loss=-1.6117, bio_penalty=1.8535, clustering_loss=0.0190, disc_loss=1.6117, elbo=880.2811, epoch=166/2001, vae_loss=882.1537]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 167/2000 [00:04<00:46, 39.25it/s, adv_loss=-1.6198, bio_penalty=1.7617, clustering_loss=0.0190, disc_loss=1.6198, elbo=866.2085, epoch=167/2001, vae_loss=867.9893]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 168/2000 [00:04<00:46, 39.25it/s, adv_loss=-1.6180, bio_penalty=1.6230, clustering_loss=0.0190, disc_loss=1.6180, elbo=861.1365, epoch=168/2001, vae_loss=862.7785]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 169/2000 [00:04<00:46, 39.25it/s, adv_loss=-1.6194, bio_penalty=1.5043, clustering_loss=0.0190, disc_loss=1.6194, elbo=858.4741, epoch=169/2001, vae_loss=859.9974]
Training: Embeddings batch effect correction using adversrial training:   8%|▊         | 170/2000 [00:04<00:46, 39.25it/s, adv_loss=-1.6223, bio_penalty=1.4059, clustering_loss=0.0190, disc_loss=1.6223, elbo=864.1140, epoch=170/2001, vae_loss=865.5390]
Training: Embeddings batch effect correction using adversrial training:   9%|▊         | 171/2000 [00:04<00:46, 39.18it/s, adv_loss=-1.6223, bio_penalty=1.4059, clustering_loss=0.0190, disc_loss=1.6223, elbo=864.1140, epoch=170/2001, vae_loss=865.5390]
Training: Embeddings batch effect correction using adversrial training:   9%|▊         | 171/2000 [00:04<00:46, 39.18it/s, adv_loss=-1.6276, bio_penalty=1.3596, clustering_loss=0.0190, disc_loss=1.6276, elbo=865.1859, epoch=171/2001, vae_loss=866.5646]
Training: Embeddings batch effect correction using adversrial training:   9%|▊         | 172/2000 [00:04<00:46, 39.18it/s, adv_loss=-1.6147, bio_penalty=1.2695, clustering_loss=0.0190, disc_loss=1.6147, elbo=846.6439, epoch=172/2001, vae_loss=847.9325]
Training: Embeddings batch effect correction using adversrial training:   9%|▊         | 173/2000 [00:04<00:46, 39.18it/s, adv_loss=-1.6202, bio_penalty=1.1090, clustering_loss=0.0190, disc_loss=1.6202, elbo=821.2866, epoch=173/2001, vae_loss=822.4146]
Training: Embeddings batch effect correction using adversrial training:   9%|▊         | 174/2000 [00:04<00:46, 39.18it/s, adv_loss=-1.6079, bio_penalty=0.9625, clustering_loss=0.0190, disc_loss=1.6079, elbo=842.2084, epoch=174/2001, vae_loss=843.1900]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 175/2000 [00:04<00:47, 38.75it/s, adv_loss=-1.6079, bio_penalty=0.9625, clustering_loss=0.0190, disc_loss=1.6079, elbo=842.2084, epoch=174/2001, vae_loss=843.1900]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 175/2000 [00:04<00:47, 38.75it/s, adv_loss=-1.6172, bio_penalty=0.8141, clustering_loss=0.0190, disc_loss=1.6172, elbo=852.1386, epoch=175/2001, vae_loss=852.9717]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 176/2000 [00:04<00:47, 38.75it/s, adv_loss=-1.6127, bio_penalty=0.6817, clustering_loss=0.0190, disc_loss=1.6127, elbo=849.5374, epoch=176/2001, vae_loss=850.2382]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 177/2000 [00:04<00:47, 38.75it/s, adv_loss=-1.6163, bio_penalty=0.5644, clustering_loss=0.0190, disc_loss=1.6163, elbo=855.4658, epoch=177/2001, vae_loss=856.0492]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 178/2000 [00:04<00:47, 38.75it/s, adv_loss=-1.6049, bio_penalty=0.4736, clustering_loss=0.0190, disc_loss=1.6049, elbo=858.5157, epoch=178/2001, vae_loss=859.0083]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 179/2000 [00:04<00:47, 38.68it/s, adv_loss=-1.6049, bio_penalty=0.4736, clustering_loss=0.0190, disc_loss=1.6049, elbo=858.5157, epoch=178/2001, vae_loss=859.0083]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 179/2000 [00:04<00:47, 38.68it/s, adv_loss=-1.6052, bio_penalty=0.4524, clustering_loss=0.0190, disc_loss=1.6052, elbo=891.8349, epoch=179/2001, vae_loss=892.3064]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 180/2000 [00:04<00:47, 38.68it/s, adv_loss=-1.5997, bio_penalty=0.4658, clustering_loss=0.0190, disc_loss=1.5997, elbo=876.9767, epoch=180/2001, vae_loss=877.4615]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 181/2000 [00:04<00:47, 38.68it/s, adv_loss=-1.6166, bio_penalty=0.4934, clustering_loss=0.0190, disc_loss=1.6166, elbo=874.5969, epoch=181/2001, vae_loss=875.1093]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 182/2000 [00:04<00:46, 38.68it/s, adv_loss=-1.6110, bio_penalty=0.5376, clustering_loss=0.0190, disc_loss=1.6110, elbo=864.7272, epoch=182/2001, vae_loss=865.2839]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 183/2000 [00:04<00:47, 38.61it/s, adv_loss=-1.6110, bio_penalty=0.5376, clustering_loss=0.0190, disc_loss=1.6110, elbo=864.7272, epoch=182/2001, vae_loss=865.2839]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 183/2000 [00:04<00:47, 38.61it/s, adv_loss=-1.6097, bio_penalty=0.5919, clustering_loss=0.0190, disc_loss=1.6097, elbo=871.2254, epoch=183/2001, vae_loss=871.8364]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 184/2000 [00:04<00:47, 38.61it/s, adv_loss=-1.6198, bio_penalty=0.6822, clustering_loss=0.0190, disc_loss=1.6198, elbo=877.3411, epoch=184/2001, vae_loss=878.0424]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 185/2000 [00:04<00:47, 38.61it/s, adv_loss=-1.6249, bio_penalty=0.7260, clustering_loss=0.0190, disc_loss=1.6249, elbo=850.7122, epoch=185/2001, vae_loss=851.4573]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 186/2000 [00:04<00:46, 38.61it/s, adv_loss=-1.6292, bio_penalty=0.8260, clustering_loss=0.0190, disc_loss=1.6292, elbo=856.9713, epoch=186/2001, vae_loss=857.8163]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 187/2000 [00:04<00:47, 38.51it/s, adv_loss=-1.6292, bio_penalty=0.8260, clustering_loss=0.0190, disc_loss=1.6292, elbo=856.9713, epoch=186/2001, vae_loss=857.8163]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 187/2000 [00:04<00:47, 38.51it/s, adv_loss=-1.6307, bio_penalty=0.9504, clustering_loss=0.0190, disc_loss=1.6307, elbo=859.4153, epoch=187/2001, vae_loss=860.3848]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 188/2000 [00:04<00:47, 38.51it/s, adv_loss=-1.6328, bio_penalty=0.9875, clustering_loss=0.0190, disc_loss=1.6328, elbo=871.3960, epoch=188/2001, vae_loss=872.4025]
Training: Embeddings batch effect correction using adversrial training:   9%|▉         | 189/2000 [00:04<00:47, 38.51it/s, adv_loss=-1.6413, bio_penalty=0.9878, clustering_loss=0.0190, disc_loss=1.6413, elbo=871.0820, epoch=189/2001, vae_loss=872.0889]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 190/2000 [00:04<00:46, 38.51it/s, adv_loss=-1.6462, bio_penalty=0.9569, clustering_loss=0.0190, disc_loss=1.6462, elbo=884.9938, epoch=190/2001, vae_loss=885.9697]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 191/2000 [00:04<00:46, 38.76it/s, adv_loss=-1.6462, bio_penalty=0.9569, clustering_loss=0.0190, disc_loss=1.6462, elbo=884.9938, epoch=190/2001, vae_loss=885.9697]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 191/2000 [00:04<00:46, 38.76it/s, adv_loss=-1.6423, bio_penalty=0.9815, clustering_loss=0.0190, disc_loss=1.6423, elbo=879.9973, epoch=191/2001, vae_loss=880.9978]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 192/2000 [00:04<00:46, 38.76it/s, adv_loss=-1.6428, bio_penalty=1.0051, clustering_loss=0.0190, disc_loss=1.6428, elbo=875.3373, epoch=192/2001, vae_loss=876.3615]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 193/2000 [00:04<00:46, 38.76it/s, adv_loss=-1.6506, bio_penalty=0.9229, clustering_loss=0.0190, disc_loss=1.6506, elbo=880.5972, epoch=193/2001, vae_loss=881.5391]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 194/2000 [00:05<00:46, 38.76it/s, adv_loss=-1.6542, bio_penalty=0.7918, clustering_loss=0.0190, disc_loss=1.6542, elbo=862.3434, epoch=194/2001, vae_loss=863.1542]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 195/2000 [00:05<00:46, 39.10it/s, adv_loss=-1.6542, bio_penalty=0.7918, clustering_loss=0.0190, disc_loss=1.6542, elbo=862.3434, epoch=194/2001, vae_loss=863.1542]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 195/2000 [00:05<00:46, 39.10it/s, adv_loss=-1.6535, bio_penalty=0.6246, clustering_loss=0.0190, disc_loss=1.6535, elbo=882.6057, epoch=195/2001, vae_loss=883.2493]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 196/2000 [00:05<00:46, 39.10it/s, adv_loss=-1.6490, bio_penalty=0.5375, clustering_loss=0.0190, disc_loss=1.6490, elbo=863.3521, epoch=196/2001, vae_loss=863.9086]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 197/2000 [00:05<00:46, 39.10it/s, adv_loss=-1.6494, bio_penalty=0.4949, clustering_loss=0.0190, disc_loss=1.6494, elbo=891.5234, epoch=197/2001, vae_loss=892.0373]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 198/2000 [00:05<00:46, 39.10it/s, adv_loss=-1.6529, bio_penalty=0.4289, clustering_loss=0.0190, disc_loss=1.6529, elbo=875.7129, epoch=198/2001, vae_loss=876.1609]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 199/2000 [00:05<00:46, 38.92it/s, adv_loss=-1.6529, bio_penalty=0.4289, clustering_loss=0.0190, disc_loss=1.6529, elbo=875.7129, epoch=198/2001, vae_loss=876.1609]
Training: Embeddings batch effect correction using adversrial training:  10%|▉         | 199/2000 [00:05<00:46, 38.92it/s, adv_loss=-1.6466, bio_penalty=0.3620, clustering_loss=0.0190, disc_loss=1.6466, elbo=864.0295, epoch=199/2001, vae_loss=864.4106]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 200/2000 [00:05<00:46, 38.92it/s, adv_loss=-1.6468, bio_penalty=0.3406, clustering_loss=0.0190, disc_loss=1.6468, elbo=846.6007, epoch=200/2001, vae_loss=846.9603]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 201/2000 [00:05<00:46, 38.92it/s, adv_loss=-1.6470, bio_penalty=0.3425, clustering_loss=0.0190, disc_loss=1.6470, elbo=837.0542, epoch=201/2001, vae_loss=837.4157]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 202/2000 [00:05<00:46, 38.92it/s, adv_loss=-1.6456, bio_penalty=0.3354, clustering_loss=0.0190, disc_loss=1.6456, elbo=834.9147, epoch=202/2001, vae_loss=835.2690]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 203/2000 [00:05<00:45, 39.11it/s, adv_loss=-1.6456, bio_penalty=0.3354, clustering_loss=0.0190, disc_loss=1.6456, elbo=834.9147, epoch=202/2001, vae_loss=835.2690]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 203/2000 [00:05<00:45, 39.11it/s, adv_loss=-1.6434, bio_penalty=0.3173, clustering_loss=0.0190, disc_loss=1.6434, elbo=838.6301, epoch=203/2001, vae_loss=838.9664]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 204/2000 [00:05<00:45, 39.11it/s, adv_loss=-1.6399, bio_penalty=0.3173, clustering_loss=0.0190, disc_loss=1.6399, elbo=830.8197, epoch=204/2001, vae_loss=831.1560]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 205/2000 [00:05<00:45, 39.11it/s, adv_loss=-1.6381, bio_penalty=0.2983, clustering_loss=0.0190, disc_loss=1.6381, elbo=828.6481, epoch=205/2001, vae_loss=828.9655]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 206/2000 [00:05<00:45, 39.11it/s, adv_loss=-1.6359, bio_penalty=0.2733, clustering_loss=0.0190, disc_loss=1.6359, elbo=830.1996, epoch=206/2001, vae_loss=830.4919]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 207/2000 [00:05<00:45, 39.34it/s, adv_loss=-1.6359, bio_penalty=0.2733, clustering_loss=0.0190, disc_loss=1.6359, elbo=830.1996, epoch=206/2001, vae_loss=830.4919]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 207/2000 [00:05<00:45, 39.34it/s, adv_loss=-1.6352, bio_penalty=0.2715, clustering_loss=0.0190, disc_loss=1.6352, elbo=841.4847, epoch=207/2001, vae_loss=841.7753]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 208/2000 [00:05<00:45, 39.34it/s, adv_loss=-1.6322, bio_penalty=0.2721, clustering_loss=0.0190, disc_loss=1.6322, elbo=836.8903, epoch=208/2001, vae_loss=837.1815]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 209/2000 [00:05<00:45, 39.34it/s, adv_loss=-1.6240, bio_penalty=0.2596, clustering_loss=0.0190, disc_loss=1.6240, elbo=839.5457, epoch=209/2001, vae_loss=839.8244]
Training: Embeddings batch effect correction using adversrial training:  10%|█         | 210/2000 [00:05<00:45, 39.34it/s, adv_loss=-1.6171, bio_penalty=0.2332, clustering_loss=0.0190, disc_loss=1.6171, elbo=824.1284, epoch=210/2001, vae_loss=824.3806]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 211/2000 [00:05<00:45, 39.01it/s, adv_loss=-1.6171, bio_penalty=0.2332, clustering_loss=0.0190, disc_loss=1.6171, elbo=824.1284, epoch=210/2001, vae_loss=824.3806]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 211/2000 [00:05<00:45, 39.01it/s, adv_loss=-1.6129, bio_penalty=0.2154, clustering_loss=0.0190, disc_loss=1.6129, elbo=819.3489, epoch=211/2001, vae_loss=819.5833]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 212/2000 [00:05<00:45, 39.01it/s, adv_loss=-1.6049, bio_penalty=0.2061, clustering_loss=0.0190, disc_loss=1.6049, elbo=820.5647, epoch=212/2001, vae_loss=820.7899]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 213/2000 [00:05<00:45, 39.01it/s, adv_loss=-1.5970, bio_penalty=0.2042, clustering_loss=0.0190, disc_loss=1.5970, elbo=821.1222, epoch=213/2001, vae_loss=821.3455]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 214/2000 [00:05<00:45, 39.01it/s, adv_loss=-1.5915, bio_penalty=0.2155, clustering_loss=0.0190, disc_loss=1.5915, elbo=802.7270, epoch=214/2001, vae_loss=802.9615]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 215/2000 [00:05<00:45, 39.30it/s, adv_loss=-1.5915, bio_penalty=0.2155, clustering_loss=0.0190, disc_loss=1.5915, elbo=802.7270, epoch=214/2001, vae_loss=802.9615]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 215/2000 [00:05<00:45, 39.30it/s, adv_loss=-1.5911, bio_penalty=0.2294, clustering_loss=0.0190, disc_loss=1.5911, elbo=793.1008, epoch=215/2001, vae_loss=793.3492]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 216/2000 [00:05<00:45, 39.30it/s, adv_loss=-1.5868, bio_penalty=0.2333, clustering_loss=0.0190, disc_loss=1.5868, elbo=793.3357, epoch=216/2001, vae_loss=793.5880]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 217/2000 [00:05<00:45, 39.30it/s, adv_loss=-1.5892, bio_penalty=0.2222, clustering_loss=0.0190, disc_loss=1.5892, elbo=786.6084, epoch=217/2001, vae_loss=786.8496]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 218/2000 [00:05<00:45, 39.30it/s, adv_loss=-1.5890, bio_penalty=0.2105, clustering_loss=0.0190, disc_loss=1.5890, elbo=783.7801, epoch=218/2001, vae_loss=784.0096]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 219/2000 [00:05<00:45, 39.30it/s, adv_loss=-1.5878, bio_penalty=0.1879, clustering_loss=0.0190, disc_loss=1.5878, elbo=774.2095, epoch=219/2001, vae_loss=774.4164]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 220/2000 [00:05<00:45, 39.52it/s, adv_loss=-1.5878, bio_penalty=0.1879, clustering_loss=0.0190, disc_loss=1.5878, elbo=774.2095, epoch=219/2001, vae_loss=774.4164]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 220/2000 [00:05<00:45, 39.52it/s, adv_loss=-1.5878, bio_penalty=0.1787, clustering_loss=0.0190, disc_loss=1.5878, elbo=765.2369, epoch=220/2001, vae_loss=765.4347]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 221/2000 [00:05<00:45, 39.52it/s, adv_loss=-1.5880, bio_penalty=0.1766, clustering_loss=0.0190, disc_loss=1.5880, elbo=754.8715, epoch=221/2001, vae_loss=755.0671]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 222/2000 [00:05<00:44, 39.52it/s, adv_loss=-1.5863, bio_penalty=0.1783, clustering_loss=0.0190, disc_loss=1.5863, elbo=744.8513, epoch=222/2001, vae_loss=745.0486]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 223/2000 [00:05<00:44, 39.52it/s, adv_loss=-1.5891, bio_penalty=0.1812, clustering_loss=0.0190, disc_loss=1.5891, elbo=745.9490, epoch=223/2001, vae_loss=746.1492]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 224/2000 [00:05<00:44, 39.54it/s, adv_loss=-1.5891, bio_penalty=0.1812, clustering_loss=0.0190, disc_loss=1.5891, elbo=745.9490, epoch=223/2001, vae_loss=746.1492]
Training: Embeddings batch effect correction using adversrial training:  11%|█         | 224/2000 [00:05<00:44, 39.54it/s, adv_loss=-1.5867, bio_penalty=0.1706, clustering_loss=0.0190, disc_loss=1.5867, elbo=738.1474, epoch=224/2001, vae_loss=738.3370]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 225/2000 [00:05<00:44, 39.54it/s, adv_loss=-1.5884, bio_penalty=0.1660, clustering_loss=0.0190, disc_loss=1.5884, elbo=737.8313, epoch=225/2001, vae_loss=738.0164]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 226/2000 [00:05<00:44, 39.54it/s, adv_loss=-1.5896, bio_penalty=0.1675, clustering_loss=0.0190, disc_loss=1.5896, elbo=733.1722, epoch=226/2001, vae_loss=733.3588]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 227/2000 [00:05<00:44, 39.54it/s, adv_loss=-1.5904, bio_penalty=0.1749, clustering_loss=0.0190, disc_loss=1.5904, elbo=737.0963, epoch=227/2001, vae_loss=737.2902]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 228/2000 [00:05<00:44, 39.52it/s, adv_loss=-1.5904, bio_penalty=0.1749, clustering_loss=0.0190, disc_loss=1.5904, elbo=737.0963, epoch=227/2001, vae_loss=737.2902]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 228/2000 [00:05<00:44, 39.52it/s, adv_loss=-1.5892, bio_penalty=0.1812, clustering_loss=0.0190, disc_loss=1.5892, elbo=734.3347, epoch=228/2001, vae_loss=734.5349]
Training: Embeddings batch effect correction using adversrial training:  11%|█▏        | 229/2000 [00:05<00:44, 39.52it/s, adv_loss=-1.5905, bio_penalty=0.1890, clustering_loss=0.0190, disc_loss=1.5905, elbo=740.2695, epoch=229/2001, vae_loss=740.4775]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 230/2000 [00:05<00:44, 39.52it/s, adv_loss=-1.5923, bio_penalty=0.1936, clustering_loss=0.0190, disc_loss=1.5923, elbo=729.5648, epoch=230/2001, vae_loss=729.7775]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 231/2000 [00:05<00:44, 39.52it/s, adv_loss=-1.5990, bio_penalty=0.1934, clustering_loss=0.0190, disc_loss=1.5990, elbo=729.1165, epoch=231/2001, vae_loss=729.3289]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 232/2000 [00:05<00:44, 39.60it/s, adv_loss=-1.5990, bio_penalty=0.1934, clustering_loss=0.0190, disc_loss=1.5990, elbo=729.1165, epoch=231/2001, vae_loss=729.3289]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 232/2000 [00:05<00:44, 39.60it/s, adv_loss=-1.6070, bio_penalty=0.2072, clustering_loss=0.0190, disc_loss=1.6070, elbo=732.0929, epoch=232/2001, vae_loss=732.3191]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 233/2000 [00:05<00:44, 39.60it/s, adv_loss=-1.6099, bio_penalty=0.2618, clustering_loss=0.0190, disc_loss=1.6099, elbo=730.9839, epoch=233/2001, vae_loss=731.2648]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 234/2000 [00:06<00:44, 39.60it/s, adv_loss=-1.6124, bio_penalty=0.3147, clustering_loss=0.0190, disc_loss=1.6124, elbo=730.2072, epoch=234/2001, vae_loss=730.5410]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 235/2000 [00:06<00:44, 39.60it/s, adv_loss=-1.6274, bio_penalty=0.3358, clustering_loss=0.0190, disc_loss=1.6274, elbo=732.6999, epoch=235/2001, vae_loss=733.0547]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 236/2000 [00:06<00:44, 39.60it/s, adv_loss=-1.6386, bio_penalty=0.3173, clustering_loss=0.0190, disc_loss=1.6386, elbo=736.7189, epoch=236/2001, vae_loss=737.0553]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 237/2000 [00:06<00:44, 39.76it/s, adv_loss=-1.6386, bio_penalty=0.3173, clustering_loss=0.0190, disc_loss=1.6386, elbo=736.7189, epoch=236/2001, vae_loss=737.0553]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 237/2000 [00:06<00:44, 39.76it/s, adv_loss=-1.6349, bio_penalty=0.2941, clustering_loss=0.0190, disc_loss=1.6349, elbo=743.6005, epoch=237/2001, vae_loss=743.9136]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 238/2000 [00:06<00:44, 39.76it/s, adv_loss=-1.6496, bio_penalty=0.2737, clustering_loss=0.0190, disc_loss=1.6496, elbo=754.7684, epoch=238/2001, vae_loss=755.0612]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 239/2000 [00:06<00:44, 39.76it/s, adv_loss=-1.6530, bio_penalty=0.2670, clustering_loss=0.0190, disc_loss=1.6530, elbo=758.4304, epoch=239/2001, vae_loss=758.7164]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 240/2000 [00:06<00:44, 39.76it/s, adv_loss=-1.6564, bio_penalty=0.2592, clustering_loss=0.0190, disc_loss=1.6564, elbo=767.7634, epoch=240/2001, vae_loss=768.0417]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 241/2000 [00:06<00:44, 39.45it/s, adv_loss=-1.6564, bio_penalty=0.2592, clustering_loss=0.0190, disc_loss=1.6564, elbo=767.7634, epoch=240/2001, vae_loss=768.0417]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 241/2000 [00:06<00:44, 39.45it/s, adv_loss=-1.6536, bio_penalty=0.2604, clustering_loss=0.0190, disc_loss=1.6536, elbo=760.9827, epoch=241/2001, vae_loss=761.2621]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 242/2000 [00:06<00:44, 39.45it/s, adv_loss=-1.6678, bio_penalty=0.2639, clustering_loss=0.0190, disc_loss=1.6678, elbo=760.7366, epoch=242/2001, vae_loss=761.0195]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 243/2000 [00:06<00:44, 39.45it/s, adv_loss=-1.6574, bio_penalty=0.2556, clustering_loss=0.0190, disc_loss=1.6574, elbo=756.0233, epoch=243/2001, vae_loss=756.2979]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 244/2000 [00:06<00:44, 39.45it/s, adv_loss=-1.6658, bio_penalty=0.2280, clustering_loss=0.0190, disc_loss=1.6658, elbo=750.0531, epoch=244/2001, vae_loss=750.3001]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 245/2000 [00:06<00:44, 39.30it/s, adv_loss=-1.6658, bio_penalty=0.2280, clustering_loss=0.0190, disc_loss=1.6658, elbo=750.0531, epoch=244/2001, vae_loss=750.3001]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 245/2000 [00:06<00:44, 39.30it/s, adv_loss=-1.6652, bio_penalty=0.1966, clustering_loss=0.0190, disc_loss=1.6652, elbo=747.8636, epoch=245/2001, vae_loss=748.0792]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 246/2000 [00:06<00:44, 39.30it/s, adv_loss=-1.6600, bio_penalty=0.1774, clustering_loss=0.0190, disc_loss=1.6600, elbo=746.3629, epoch=246/2001, vae_loss=746.5593]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 247/2000 [00:06<00:44, 39.30it/s, adv_loss=-1.6493, bio_penalty=0.1608, clustering_loss=0.0190, disc_loss=1.6493, elbo=759.5993, epoch=247/2001, vae_loss=759.7791]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 248/2000 [00:06<00:44, 39.30it/s, adv_loss=-1.6404, bio_penalty=0.1635, clustering_loss=0.0190, disc_loss=1.6404, elbo=752.9129, epoch=248/2001, vae_loss=753.0955]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 249/2000 [00:06<00:46, 37.59it/s, adv_loss=-1.6404, bio_penalty=0.1635, clustering_loss=0.0190, disc_loss=1.6404, elbo=752.9129, epoch=248/2001, vae_loss=753.0955]
Training: Embeddings batch effect correction using adversrial training:  12%|█▏        | 249/2000 [00:06<00:46, 37.59it/s, adv_loss=-1.6510, bio_penalty=0.1761, clustering_loss=0.0190, disc_loss=1.6510, elbo=761.3234, epoch=249/2001, vae_loss=761.5186]
Training: Embeddings batch effect correction using adversrial training:  12%|█▎        | 250/2000 [00:06<00:46, 37.59it/s, adv_loss=-1.6431, bio_penalty=0.1913, clustering_loss=0.0190, disc_loss=1.6431, elbo=752.6975, epoch=250/2001, vae_loss=752.9078]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 251/2000 [00:06<00:46, 37.59it/s, adv_loss=-1.6343, bio_penalty=0.2218, clustering_loss=0.0190, disc_loss=1.6343, elbo=759.4037, epoch=251/2001, vae_loss=759.6445]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 252/2000 [00:06<00:46, 37.59it/s, adv_loss=-1.6372, bio_penalty=0.2480, clustering_loss=0.0190, disc_loss=1.6372, elbo=768.3226, epoch=252/2001, vae_loss=768.5896]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 253/2000 [00:06<00:46, 37.68it/s, adv_loss=-1.6372, bio_penalty=0.2480, clustering_loss=0.0190, disc_loss=1.6372, elbo=768.3226, epoch=252/2001, vae_loss=768.5896]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 253/2000 [00:06<00:46, 37.68it/s, adv_loss=-1.6353, bio_penalty=0.2634, clustering_loss=0.0190, disc_loss=1.6353, elbo=777.7040, epoch=253/2001, vae_loss=777.9865]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 254/2000 [00:06<00:46, 37.68it/s, adv_loss=-1.6302, bio_penalty=0.2691, clustering_loss=0.0190, disc_loss=1.6302, elbo=755.7603, epoch=254/2001, vae_loss=756.0484]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 255/2000 [00:06<00:46, 37.68it/s, adv_loss=-1.6262, bio_penalty=0.2806, clustering_loss=0.0190, disc_loss=1.6262, elbo=759.5858, epoch=255/2001, vae_loss=759.8855]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 256/2000 [00:06<00:46, 37.68it/s, adv_loss=-1.6198, bio_penalty=0.3184, clustering_loss=0.0190, disc_loss=1.6198, elbo=755.2059, epoch=256/2001, vae_loss=755.5433]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 257/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.6198, bio_penalty=0.3184, clustering_loss=0.0190, disc_loss=1.6198, elbo=755.2059, epoch=256/2001, vae_loss=755.5433]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 257/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.6108, bio_penalty=0.3336, clustering_loss=0.0190, disc_loss=1.6108, elbo=755.0731, epoch=257/2001, vae_loss=755.4257]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 258/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.6059, bio_penalty=0.3329, clustering_loss=0.0190, disc_loss=1.6059, elbo=748.2651, epoch=258/2001, vae_loss=748.6171]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 259/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.6029, bio_penalty=0.3260, clustering_loss=0.0190, disc_loss=1.6029, elbo=748.5330, epoch=259/2001, vae_loss=748.8781]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 260/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.5951, bio_penalty=0.3044, clustering_loss=0.0190, disc_loss=1.5951, elbo=736.8699, epoch=260/2001, vae_loss=737.1934]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 261/2000 [00:06<00:46, 37.57it/s, adv_loss=-1.5951, bio_penalty=0.3044, clustering_loss=0.0190, disc_loss=1.5951, elbo=736.8699, epoch=260/2001, vae_loss=737.1934]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 261/2000 [00:06<00:46, 37.57it/s, adv_loss=-1.5958, bio_penalty=0.2930, clustering_loss=0.0190, disc_loss=1.5958, elbo=734.5494, epoch=261/2001, vae_loss=734.8614]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 262/2000 [00:06<00:46, 37.57it/s, adv_loss=-1.5956, bio_penalty=0.2666, clustering_loss=0.0190, disc_loss=1.5956, elbo=729.5080, epoch=262/2001, vae_loss=729.7937]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 263/2000 [00:06<00:46, 37.57it/s, adv_loss=-1.5942, bio_penalty=0.2329, clustering_loss=0.0190, disc_loss=1.5942, elbo=723.8056, epoch=263/2001, vae_loss=724.0575]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 264/2000 [00:06<00:46, 37.57it/s, adv_loss=-1.5939, bio_penalty=0.2055, clustering_loss=0.0190, disc_loss=1.5939, elbo=718.4810, epoch=264/2001, vae_loss=718.7055]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 265/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.5939, bio_penalty=0.2055, clustering_loss=0.0190, disc_loss=1.5939, elbo=718.4810, epoch=264/2001, vae_loss=718.7055]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 265/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.5933, bio_penalty=0.2000, clustering_loss=0.0190, disc_loss=1.5933, elbo=712.7776, epoch=265/2001, vae_loss=712.9967]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 266/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.5936, bio_penalty=0.2126, clustering_loss=0.0190, disc_loss=1.5936, elbo=706.7548, epoch=266/2001, vae_loss=706.9865]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 267/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.5931, bio_penalty=0.2195, clustering_loss=0.0190, disc_loss=1.5931, elbo=700.7162, epoch=267/2001, vae_loss=700.9547]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 268/2000 [00:06<00:46, 37.60it/s, adv_loss=-1.5940, bio_penalty=0.2082, clustering_loss=0.0190, disc_loss=1.5940, elbo=698.7808, epoch=268/2001, vae_loss=699.0080]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 269/2000 [00:06<00:45, 37.93it/s, adv_loss=-1.5940, bio_penalty=0.2082, clustering_loss=0.0190, disc_loss=1.5940, elbo=698.7808, epoch=268/2001, vae_loss=699.0080]
Training: Embeddings batch effect correction using adversrial training:  13%|█▎        | 269/2000 [00:06<00:45, 37.93it/s, adv_loss=-1.5933, bio_penalty=0.1841, clustering_loss=0.0190, disc_loss=1.5933, elbo=691.5328, epoch=269/2001, vae_loss=691.7360]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 270/2000 [00:06<00:45, 37.93it/s, adv_loss=-1.5927, bio_penalty=0.1791, clustering_loss=0.0190, disc_loss=1.5927, elbo=690.8416, epoch=270/2001, vae_loss=691.0397]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 271/2000 [00:06<00:45, 37.93it/s, adv_loss=-1.5940, bio_penalty=0.1817, clustering_loss=0.0190, disc_loss=1.5940, elbo=688.6624, epoch=271/2001, vae_loss=688.8630]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 272/2000 [00:07<00:45, 37.93it/s, adv_loss=-1.5938, bio_penalty=0.1749, clustering_loss=0.0190, disc_loss=1.5938, elbo=681.7792, epoch=272/2001, vae_loss=681.9731]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 273/2000 [00:07<00:45, 38.20it/s, adv_loss=-1.5938, bio_penalty=0.1749, clustering_loss=0.0190, disc_loss=1.5938, elbo=681.7792, epoch=272/2001, vae_loss=681.9731]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 273/2000 [00:07<00:45, 38.20it/s, adv_loss=-1.5948, bio_penalty=0.1545, clustering_loss=0.0190, disc_loss=1.5948, elbo=676.8788, epoch=273/2001, vae_loss=677.0524]
Training: Embeddings batch effect correction using adversrial training:  14%|█▎        | 274/2000 [00:07<00:45, 38.20it/s, adv_loss=-1.5946, bio_penalty=0.1475, clustering_loss=0.0190, disc_loss=1.5946, elbo=676.5773, epoch=274/2001, vae_loss=676.7439]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 275/2000 [00:07<00:45, 38.20it/s, adv_loss=-1.5932, bio_penalty=0.1470, clustering_loss=0.0190, disc_loss=1.5932, elbo=671.9196, epoch=275/2001, vae_loss=672.0856]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 276/2000 [00:07<00:45, 38.20it/s, adv_loss=-1.5953, bio_penalty=0.1487, clustering_loss=0.0190, disc_loss=1.5953, elbo=681.7951, epoch=276/2001, vae_loss=681.9629]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 277/2000 [00:07<00:45, 38.17it/s, adv_loss=-1.5953, bio_penalty=0.1487, clustering_loss=0.0190, disc_loss=1.5953, elbo=681.7951, epoch=276/2001, vae_loss=681.9629]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 277/2000 [00:07<00:45, 38.17it/s, adv_loss=-1.5947, bio_penalty=0.1501, clustering_loss=0.0190, disc_loss=1.5947, elbo=671.9877, epoch=277/2001, vae_loss=672.1568]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 278/2000 [00:07<00:45, 38.17it/s, adv_loss=-1.5954, bio_penalty=0.1563, clustering_loss=0.0190, disc_loss=1.5954, elbo=675.0069, epoch=278/2001, vae_loss=675.1823]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 279/2000 [00:07<00:45, 38.17it/s, adv_loss=-1.5956, bio_penalty=0.1642, clustering_loss=0.0190, disc_loss=1.5956, elbo=673.7413, epoch=279/2001, vae_loss=673.9245]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 280/2000 [00:07<00:45, 38.17it/s, adv_loss=-1.5965, bio_penalty=0.1634, clustering_loss=0.0190, disc_loss=1.5965, elbo=672.0474, epoch=280/2001, vae_loss=672.2299]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 281/2000 [00:07<00:44, 38.32it/s, adv_loss=-1.5965, bio_penalty=0.1634, clustering_loss=0.0190, disc_loss=1.5965, elbo=672.0474, epoch=280/2001, vae_loss=672.2299]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 281/2000 [00:07<00:44, 38.32it/s, adv_loss=-1.5952, bio_penalty=0.1544, clustering_loss=0.0190, disc_loss=1.5952, elbo=674.2876, epoch=281/2001, vae_loss=674.4611]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 282/2000 [00:07<00:44, 38.32it/s, adv_loss=-1.5955, bio_penalty=0.1471, clustering_loss=0.0190, disc_loss=1.5955, elbo=674.9324, epoch=282/2001, vae_loss=675.0986]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 283/2000 [00:07<00:44, 38.32it/s, adv_loss=-1.5966, bio_penalty=0.1513, clustering_loss=0.0190, disc_loss=1.5966, elbo=670.5367, epoch=283/2001, vae_loss=670.7071]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 284/2000 [00:07<00:44, 38.32it/s, adv_loss=-1.5946, bio_penalty=0.1604, clustering_loss=0.0190, disc_loss=1.5946, elbo=667.3123, epoch=284/2001, vae_loss=667.4918]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 285/2000 [00:07<00:44, 38.40it/s, adv_loss=-1.5946, bio_penalty=0.1604, clustering_loss=0.0190, disc_loss=1.5946, elbo=667.3123, epoch=284/2001, vae_loss=667.4918]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 285/2000 [00:07<00:44, 38.40it/s, adv_loss=-1.5951, bio_penalty=0.1661, clustering_loss=0.0190, disc_loss=1.5951, elbo=663.0704, epoch=285/2001, vae_loss=663.2555]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 286/2000 [00:07<00:44, 38.40it/s, adv_loss=-1.5949, bio_penalty=0.1610, clustering_loss=0.0190, disc_loss=1.5949, elbo=662.2024, epoch=286/2001, vae_loss=662.3824]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 287/2000 [00:07<00:44, 38.40it/s, adv_loss=-1.5957, bio_penalty=0.1509, clustering_loss=0.0190, disc_loss=1.5957, elbo=669.1312, epoch=287/2001, vae_loss=669.3011]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 288/2000 [00:07<00:44, 38.40it/s, adv_loss=-1.5951, bio_penalty=0.1467, clustering_loss=0.0190, disc_loss=1.5951, elbo=651.1277, epoch=288/2001, vae_loss=651.2934]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 289/2000 [00:07<00:44, 38.48it/s, adv_loss=-1.5951, bio_penalty=0.1467, clustering_loss=0.0190, disc_loss=1.5951, elbo=651.1277, epoch=288/2001, vae_loss=651.2934]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 289/2000 [00:07<00:44, 38.48it/s, adv_loss=-1.5928, bio_penalty=0.1404, clustering_loss=0.0190, disc_loss=1.5928, elbo=649.9114, epoch=289/2001, vae_loss=650.0709]
Training: Embeddings batch effect correction using adversrial training:  14%|█▍        | 290/2000 [00:07<00:44, 38.48it/s, adv_loss=-1.5916, bio_penalty=0.1277, clustering_loss=0.0190, disc_loss=1.5916, elbo=653.8914, epoch=290/2001, vae_loss=654.0381]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 291/2000 [00:07<00:44, 38.48it/s, adv_loss=-1.5930, bio_penalty=0.1137, clustering_loss=0.0190, disc_loss=1.5930, elbo=650.0263, epoch=291/2001, vae_loss=650.1590]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 292/2000 [00:07<00:44, 38.48it/s, adv_loss=-1.5936, bio_penalty=0.1070, clustering_loss=0.0190, disc_loss=1.5936, elbo=650.8809, epoch=292/2001, vae_loss=651.0069]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 293/2000 [00:07<00:44, 38.48it/s, adv_loss=-1.5921, bio_penalty=0.1063, clustering_loss=0.0190, disc_loss=1.5921, elbo=647.1949, epoch=293/2001, vae_loss=647.3203]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 294/2000 [00:07<00:43, 39.15it/s, adv_loss=-1.5921, bio_penalty=0.1063, clustering_loss=0.0190, disc_loss=1.5921, elbo=647.1949, epoch=293/2001, vae_loss=647.3203]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 294/2000 [00:07<00:43, 39.15it/s, adv_loss=-1.5921, bio_penalty=0.1079, clustering_loss=0.0190, disc_loss=1.5921, elbo=646.7946, epoch=294/2001, vae_loss=646.9216]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 295/2000 [00:07<00:43, 39.15it/s, adv_loss=-1.5902, bio_penalty=0.1119, clustering_loss=0.0190, disc_loss=1.5902, elbo=646.4416, epoch=295/2001, vae_loss=646.5725]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 296/2000 [00:07<00:43, 39.15it/s, adv_loss=-1.5906, bio_penalty=0.1158, clustering_loss=0.0190, disc_loss=1.5906, elbo=647.0100, epoch=296/2001, vae_loss=647.1449]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 297/2000 [00:07<00:43, 39.15it/s, adv_loss=-1.5902, bio_penalty=0.1220, clustering_loss=0.0190, disc_loss=1.5902, elbo=652.0322, epoch=297/2001, vae_loss=652.1732]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 298/2000 [00:07<00:43, 39.38it/s, adv_loss=-1.5902, bio_penalty=0.1220, clustering_loss=0.0190, disc_loss=1.5902, elbo=652.0322, epoch=297/2001, vae_loss=652.1732]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 298/2000 [00:07<00:43, 39.38it/s, adv_loss=-1.5897, bio_penalty=0.1278, clustering_loss=0.0190, disc_loss=1.5897, elbo=650.8501, epoch=298/2001, vae_loss=650.9969]
Training: Embeddings batch effect correction using adversrial training:  15%|█▍        | 299/2000 [00:07<00:43, 39.38it/s, adv_loss=-1.5883, bio_penalty=0.1319, clustering_loss=0.0190, disc_loss=1.5883, elbo=650.9242, epoch=299/2001, vae_loss=651.0751]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 300/2000 [00:07<00:43, 39.38it/s, adv_loss=-1.5871, bio_penalty=0.1334, clustering_loss=0.0190, disc_loss=1.5871, elbo=651.1104, epoch=300/2001, vae_loss=651.2628]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 301/2000 [00:07<00:43, 39.38it/s, adv_loss=-1.5868, bio_penalty=0.1328, clustering_loss=0.0190, disc_loss=1.5868, elbo=644.6011, epoch=301/2001, vae_loss=644.7530]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 302/2000 [00:07<00:42, 39.50it/s, adv_loss=-1.5868, bio_penalty=0.1328, clustering_loss=0.0190, disc_loss=1.5868, elbo=644.6011, epoch=301/2001, vae_loss=644.7530]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 302/2000 [00:07<00:42, 39.50it/s, adv_loss=-1.5850, bio_penalty=0.1311, clustering_loss=0.0190, disc_loss=1.5850, elbo=643.9806, epoch=302/2001, vae_loss=644.1307]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 303/2000 [00:07<00:42, 39.50it/s, adv_loss=-1.5842, bio_penalty=0.1349, clustering_loss=0.0190, disc_loss=1.5842, elbo=643.1281, epoch=303/2001, vae_loss=643.2820]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 304/2000 [00:07<00:42, 39.50it/s, adv_loss=-1.5837, bio_penalty=0.1414, clustering_loss=0.0190, disc_loss=1.5837, elbo=643.3057, epoch=304/2001, vae_loss=643.4662]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 305/2000 [00:07<00:42, 39.50it/s, adv_loss=-1.5836, bio_penalty=0.1504, clustering_loss=0.0190, disc_loss=1.5836, elbo=645.2220, epoch=305/2001, vae_loss=645.3914]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 306/2000 [00:07<00:42, 39.45it/s, adv_loss=-1.5836, bio_penalty=0.1504, clustering_loss=0.0190, disc_loss=1.5836, elbo=645.2220, epoch=305/2001, vae_loss=645.3914]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 306/2000 [00:07<00:42, 39.45it/s, adv_loss=-1.5831, bio_penalty=0.1582, clustering_loss=0.0190, disc_loss=1.5831, elbo=634.7511, epoch=306/2001, vae_loss=634.9283]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 307/2000 [00:07<00:42, 39.45it/s, adv_loss=-1.5828, bio_penalty=0.1630, clustering_loss=0.0190, disc_loss=1.5828, elbo=633.9707, epoch=307/2001, vae_loss=634.1527]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 308/2000 [00:07<00:42, 39.45it/s, adv_loss=-1.5829, bio_penalty=0.1772, clustering_loss=0.0190, disc_loss=1.5829, elbo=639.7899, epoch=308/2001, vae_loss=639.9861]
Training: Embeddings batch effect correction using adversrial training:  15%|█▌        | 309/2000 [00:07<00:42, 39.45it/s, adv_loss=-1.5825, bio_penalty=0.1900, clustering_loss=0.0190, disc_loss=1.5825, elbo=643.0757, epoch=309/2001, vae_loss=643.2847]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 310/2000 [00:07<00:42, 39.52it/s, adv_loss=-1.5825, bio_penalty=0.1900, clustering_loss=0.0190, disc_loss=1.5825, elbo=643.0757, epoch=309/2001, vae_loss=643.2847]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 310/2000 [00:07<00:42, 39.52it/s, adv_loss=-1.5827, bio_penalty=0.2075, clustering_loss=0.0190, disc_loss=1.5827, elbo=640.3378, epoch=310/2001, vae_loss=640.5643]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 311/2000 [00:08<00:42, 39.52it/s, adv_loss=-1.5827, bio_penalty=0.2286, clustering_loss=0.0190, disc_loss=1.5827, elbo=648.9752, epoch=311/2001, vae_loss=649.2229]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 312/2000 [00:08<00:42, 39.52it/s, adv_loss=-1.5820, bio_penalty=0.2510, clustering_loss=0.0190, disc_loss=1.5820, elbo=641.0665, epoch=312/2001, vae_loss=641.3365]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 313/2000 [00:08<00:42, 39.52it/s, adv_loss=-1.5813, bio_penalty=0.2533, clustering_loss=0.0190, disc_loss=1.5813, elbo=644.3167, epoch=313/2001, vae_loss=644.5889]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 314/2000 [00:08<00:42, 39.52it/s, adv_loss=-1.5820, bio_penalty=0.2532, clustering_loss=0.0190, disc_loss=1.5820, elbo=640.2562, epoch=314/2001, vae_loss=640.5284]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 315/2000 [00:08<00:42, 39.80it/s, adv_loss=-1.5820, bio_penalty=0.2532, clustering_loss=0.0190, disc_loss=1.5820, elbo=640.2562, epoch=314/2001, vae_loss=640.5284]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 315/2000 [00:08<00:42, 39.80it/s, adv_loss=-1.5811, bio_penalty=0.2505, clustering_loss=0.0190, disc_loss=1.5811, elbo=643.1979, epoch=315/2001, vae_loss=643.4675]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 316/2000 [00:08<00:42, 39.80it/s, adv_loss=-1.5806, bio_penalty=0.2609, clustering_loss=0.0190, disc_loss=1.5806, elbo=638.7761, epoch=316/2001, vae_loss=639.0560]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 317/2000 [00:08<00:42, 39.80it/s, adv_loss=-1.5815, bio_penalty=0.2846, clustering_loss=0.0190, disc_loss=1.5815, elbo=633.3829, epoch=317/2001, vae_loss=633.6866]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 318/2000 [00:08<00:42, 39.80it/s, adv_loss=-1.5818, bio_penalty=0.3111, clustering_loss=0.0190, disc_loss=1.5818, elbo=630.3947, epoch=318/2001, vae_loss=630.7249]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 319/2000 [00:08<00:42, 39.47it/s, adv_loss=-1.5818, bio_penalty=0.3111, clustering_loss=0.0190, disc_loss=1.5818, elbo=630.3947, epoch=318/2001, vae_loss=630.7249]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 319/2000 [00:08<00:42, 39.47it/s, adv_loss=-1.5814, bio_penalty=0.3419, clustering_loss=0.0190, disc_loss=1.5814, elbo=626.4761, epoch=319/2001, vae_loss=626.8370]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 320/2000 [00:08<00:42, 39.47it/s, adv_loss=-1.5821, bio_penalty=0.3514, clustering_loss=0.0190, disc_loss=1.5821, elbo=618.9885, epoch=320/2001, vae_loss=619.3590]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 321/2000 [00:08<00:42, 39.47it/s, adv_loss=-1.5815, bio_penalty=0.3460, clustering_loss=0.0190, disc_loss=1.5815, elbo=639.0496, epoch=321/2001, vae_loss=639.4147]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 322/2000 [00:08<00:42, 39.47it/s, adv_loss=-1.5803, bio_penalty=0.3266, clustering_loss=0.0190, disc_loss=1.5803, elbo=621.8524, epoch=322/2001, vae_loss=622.1980]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 323/2000 [00:08<00:42, 39.18it/s, adv_loss=-1.5803, bio_penalty=0.3266, clustering_loss=0.0190, disc_loss=1.5803, elbo=621.8524, epoch=322/2001, vae_loss=622.1980]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 323/2000 [00:08<00:42, 39.18it/s, adv_loss=-1.5837, bio_penalty=0.3264, clustering_loss=0.0190, disc_loss=1.5837, elbo=610.7816, epoch=323/2001, vae_loss=611.1270]
Training: Embeddings batch effect correction using adversrial training:  16%|█▌        | 324/2000 [00:08<00:42, 39.18it/s, adv_loss=-1.5821, bio_penalty=0.3287, clustering_loss=0.0190, disc_loss=1.5821, elbo=622.1891, epoch=324/2001, vae_loss=622.5368]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 325/2000 [00:08<00:42, 39.18it/s, adv_loss=-1.5816, bio_penalty=0.3212, clustering_loss=0.0190, disc_loss=1.5816, elbo=609.0944, epoch=325/2001, vae_loss=609.4346]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 326/2000 [00:08<00:42, 39.18it/s, adv_loss=-1.5817, bio_penalty=0.3147, clustering_loss=0.0190, disc_loss=1.5817, elbo=606.9687, epoch=326/2001, vae_loss=607.3025]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 327/2000 [00:08<00:42, 39.12it/s, adv_loss=-1.5817, bio_penalty=0.3147, clustering_loss=0.0190, disc_loss=1.5817, elbo=606.9687, epoch=326/2001, vae_loss=607.3025]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 327/2000 [00:08<00:42, 39.12it/s, adv_loss=-1.5811, bio_penalty=0.3166, clustering_loss=0.0190, disc_loss=1.5811, elbo=602.9174, epoch=327/2001, vae_loss=603.2531]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 328/2000 [00:08<00:42, 39.12it/s, adv_loss=-1.5804, bio_penalty=0.3199, clustering_loss=0.0190, disc_loss=1.5804, elbo=601.7643, epoch=328/2001, vae_loss=602.1033]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 329/2000 [00:08<00:42, 39.12it/s, adv_loss=-1.5811, bio_penalty=0.3203, clustering_loss=0.0190, disc_loss=1.5811, elbo=597.0076, epoch=329/2001, vae_loss=597.3469]
Training: Embeddings batch effect correction using adversrial training:  16%|█▋        | 330/2000 [00:08<00:42, 39.12it/s, adv_loss=-1.5813, bio_penalty=0.3215, clustering_loss=0.0190, disc_loss=1.5813, elbo=598.0983, epoch=330/2001, vae_loss=598.4388]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 331/2000 [00:08<00:42, 38.95it/s, adv_loss=-1.5813, bio_penalty=0.3215, clustering_loss=0.0190, disc_loss=1.5813, elbo=598.0983, epoch=330/2001, vae_loss=598.4388]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 331/2000 [00:08<00:42, 38.95it/s, adv_loss=-1.5811, bio_penalty=0.3262, clustering_loss=0.0190, disc_loss=1.5811, elbo=597.3222, epoch=331/2001, vae_loss=597.6675]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 332/2000 [00:08<00:42, 38.95it/s, adv_loss=-1.5812, bio_penalty=0.3235, clustering_loss=0.0190, disc_loss=1.5812, elbo=595.1395, epoch=332/2001, vae_loss=595.4821]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 333/2000 [00:08<00:42, 38.95it/s, adv_loss=-1.5799, bio_penalty=0.3095, clustering_loss=0.0190, disc_loss=1.5799, elbo=594.5928, epoch=333/2001, vae_loss=594.9214]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 334/2000 [00:08<00:42, 38.95it/s, adv_loss=-1.5799, bio_penalty=0.2887, clustering_loss=0.0190, disc_loss=1.5799, elbo=594.3305, epoch=334/2001, vae_loss=594.6382]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 335/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5799, bio_penalty=0.2887, clustering_loss=0.0190, disc_loss=1.5799, elbo=594.3305, epoch=334/2001, vae_loss=594.6382]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 335/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5796, bio_penalty=0.2766, clustering_loss=0.0190, disc_loss=1.5796, elbo=592.5223, epoch=335/2001, vae_loss=592.8179]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 336/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5803, bio_penalty=0.2711, clustering_loss=0.0190, disc_loss=1.5803, elbo=594.0388, epoch=336/2001, vae_loss=594.3289]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 337/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5800, bio_penalty=0.2652, clustering_loss=0.0190, disc_loss=1.5800, elbo=595.4622, epoch=337/2001, vae_loss=595.7465]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 338/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5806, bio_penalty=0.2578, clustering_loss=0.0190, disc_loss=1.5806, elbo=595.8889, epoch=338/2001, vae_loss=596.1657]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 339/2000 [00:08<00:42, 38.67it/s, adv_loss=-1.5806, bio_penalty=0.2578, clustering_loss=0.0190, disc_loss=1.5806, elbo=595.8889, epoch=338/2001, vae_loss=596.1657]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 339/2000 [00:08<00:42, 38.67it/s, adv_loss=-1.5800, bio_penalty=0.2451, clustering_loss=0.0190, disc_loss=1.5800, elbo=592.8829, epoch=339/2001, vae_loss=593.1470]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 340/2000 [00:08<00:42, 38.67it/s, adv_loss=-1.5796, bio_penalty=0.2291, clustering_loss=0.0190, disc_loss=1.5796, elbo=599.7441, epoch=340/2001, vae_loss=599.9922]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 341/2000 [00:08<00:42, 38.67it/s, adv_loss=-1.5798, bio_penalty=0.2163, clustering_loss=0.0190, disc_loss=1.5798, elbo=588.1278, epoch=341/2001, vae_loss=588.3631]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 342/2000 [00:08<00:42, 38.67it/s, adv_loss=-1.5797, bio_penalty=0.2058, clustering_loss=0.0190, disc_loss=1.5797, elbo=588.9657, epoch=342/2001, vae_loss=589.1906]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 343/2000 [00:08<00:42, 38.79it/s, adv_loss=-1.5797, bio_penalty=0.2058, clustering_loss=0.0190, disc_loss=1.5797, elbo=588.9657, epoch=342/2001, vae_loss=589.1906]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 343/2000 [00:08<00:42, 38.79it/s, adv_loss=-1.5797, bio_penalty=0.1955, clustering_loss=0.0190, disc_loss=1.5797, elbo=587.4532, epoch=343/2001, vae_loss=587.6678]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 344/2000 [00:08<00:42, 38.79it/s, adv_loss=-1.5788, bio_penalty=0.1916, clustering_loss=0.0190, disc_loss=1.5788, elbo=589.0873, epoch=344/2001, vae_loss=589.2979]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 345/2000 [00:08<00:42, 38.79it/s, adv_loss=-1.5787, bio_penalty=0.1891, clustering_loss=0.0190, disc_loss=1.5787, elbo=584.3423, epoch=345/2001, vae_loss=584.5504]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 346/2000 [00:08<00:42, 38.79it/s, adv_loss=-1.5788, bio_penalty=0.1896, clustering_loss=0.0190, disc_loss=1.5788, elbo=587.5078, epoch=346/2001, vae_loss=587.7164]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 347/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5788, bio_penalty=0.1896, clustering_loss=0.0190, disc_loss=1.5788, elbo=587.5078, epoch=346/2001, vae_loss=587.7164]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 347/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5782, bio_penalty=0.1891, clustering_loss=0.0190, disc_loss=1.5782, elbo=588.3417, epoch=347/2001, vae_loss=588.5499]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 348/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5788, bio_penalty=0.1908, clustering_loss=0.0190, disc_loss=1.5788, elbo=585.5880, epoch=348/2001, vae_loss=585.7978]
Training: Embeddings batch effect correction using adversrial training:  17%|█▋        | 349/2000 [00:08<00:42, 38.78it/s, adv_loss=-1.5787, bio_penalty=0.1882, clustering_loss=0.0190, disc_loss=1.5787, elbo=584.2523, epoch=349/2001, vae_loss=584.4595]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 350/2000 [00:09<00:42, 38.78it/s, adv_loss=-1.5788, bio_penalty=0.1815, clustering_loss=0.0190, disc_loss=1.5788, elbo=584.8373, epoch=350/2001, vae_loss=585.0378]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 351/2000 [00:09<00:42, 38.36it/s, adv_loss=-1.5788, bio_penalty=0.1815, clustering_loss=0.0190, disc_loss=1.5788, elbo=584.8373, epoch=350/2001, vae_loss=585.0378]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 351/2000 [00:09<00:42, 38.36it/s, adv_loss=-1.5781, bio_penalty=0.1724, clustering_loss=0.0190, disc_loss=1.5781, elbo=580.6931, epoch=351/2001, vae_loss=580.8845]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 352/2000 [00:09<00:42, 38.36it/s, adv_loss=-1.5787, bio_penalty=0.1699, clustering_loss=0.0190, disc_loss=1.5787, elbo=583.8369, epoch=352/2001, vae_loss=584.0259]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 353/2000 [00:09<00:42, 38.36it/s, adv_loss=-1.5785, bio_penalty=0.1744, clustering_loss=0.0190, disc_loss=1.5785, elbo=578.3160, epoch=353/2001, vae_loss=578.5095]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 354/2000 [00:09<00:42, 38.36it/s, adv_loss=-1.5783, bio_penalty=0.1850, clustering_loss=0.0190, disc_loss=1.5783, elbo=579.9334, epoch=354/2001, vae_loss=580.1375]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 355/2000 [00:09<00:42, 38.83it/s, adv_loss=-1.5783, bio_penalty=0.1850, clustering_loss=0.0190, disc_loss=1.5783, elbo=579.9334, epoch=354/2001, vae_loss=580.1375]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 355/2000 [00:09<00:42, 38.83it/s, adv_loss=-1.5779, bio_penalty=0.1815, clustering_loss=0.0190, disc_loss=1.5779, elbo=582.5490, epoch=355/2001, vae_loss=582.7495]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 356/2000 [00:09<00:42, 38.83it/s, adv_loss=-1.5780, bio_penalty=0.1670, clustering_loss=0.0190, disc_loss=1.5780, elbo=576.3396, epoch=356/2001, vae_loss=576.5257]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 357/2000 [00:09<00:42, 38.83it/s, adv_loss=-1.5782, bio_penalty=0.1485, clustering_loss=0.0190, disc_loss=1.5782, elbo=574.9128, epoch=357/2001, vae_loss=575.0804]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 358/2000 [00:09<00:42, 38.83it/s, adv_loss=-1.5781, bio_penalty=0.1348, clustering_loss=0.0190, disc_loss=1.5781, elbo=573.4875, epoch=358/2001, vae_loss=573.6413]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 359/2000 [00:09<00:42, 38.76it/s, adv_loss=-1.5781, bio_penalty=0.1348, clustering_loss=0.0190, disc_loss=1.5781, elbo=573.4875, epoch=358/2001, vae_loss=573.6413]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 359/2000 [00:09<00:42, 38.76it/s, adv_loss=-1.5780, bio_penalty=0.1306, clustering_loss=0.0190, disc_loss=1.5780, elbo=573.0722, epoch=359/2001, vae_loss=573.2219]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 360/2000 [00:09<00:42, 38.76it/s, adv_loss=-1.5787, bio_penalty=0.1345, clustering_loss=0.0190, disc_loss=1.5787, elbo=571.1653, epoch=360/2001, vae_loss=571.3188]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 361/2000 [00:09<00:42, 38.76it/s, adv_loss=-1.5780, bio_penalty=0.1473, clustering_loss=0.0190, disc_loss=1.5780, elbo=577.1932, epoch=361/2001, vae_loss=577.3596]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 362/2000 [00:09<00:42, 38.76it/s, adv_loss=-1.5780, bio_penalty=0.1541, clustering_loss=0.0190, disc_loss=1.5780, elbo=567.5987, epoch=362/2001, vae_loss=567.7719]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 363/2000 [00:09<00:42, 38.76it/s, adv_loss=-1.5777, bio_penalty=0.1488, clustering_loss=0.0190, disc_loss=1.5777, elbo=566.0182, epoch=363/2001, vae_loss=566.1860]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 364/2000 [00:09<00:41, 39.15it/s, adv_loss=-1.5777, bio_penalty=0.1488, clustering_loss=0.0190, disc_loss=1.5777, elbo=566.0182, epoch=363/2001, vae_loss=566.1860]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 364/2000 [00:09<00:41, 39.15it/s, adv_loss=-1.5775, bio_penalty=0.1406, clustering_loss=0.0190, disc_loss=1.5775, elbo=569.0677, epoch=364/2001, vae_loss=569.2274]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 365/2000 [00:09<00:41, 39.15it/s, adv_loss=-1.5781, bio_penalty=0.1302, clustering_loss=0.0190, disc_loss=1.5781, elbo=566.2614, epoch=365/2001, vae_loss=566.4106]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 366/2000 [00:09<00:41, 39.15it/s, adv_loss=-1.5774, bio_penalty=0.1215, clustering_loss=0.0190, disc_loss=1.5774, elbo=564.1198, epoch=366/2001, vae_loss=564.2603]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 367/2000 [00:09<00:41, 39.15it/s, adv_loss=-1.5775, bio_penalty=0.1175, clustering_loss=0.0190, disc_loss=1.5775, elbo=562.6472, epoch=367/2001, vae_loss=562.7838]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 368/2000 [00:09<00:41, 39.13it/s, adv_loss=-1.5775, bio_penalty=0.1175, clustering_loss=0.0190, disc_loss=1.5775, elbo=562.6472, epoch=367/2001, vae_loss=562.7838]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 368/2000 [00:09<00:41, 39.13it/s, adv_loss=-1.5772, bio_penalty=0.1209, clustering_loss=0.0190, disc_loss=1.5772, elbo=565.6646, epoch=368/2001, vae_loss=565.8045]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 369/2000 [00:09<00:41, 39.13it/s, adv_loss=-1.5773, bio_penalty=0.1203, clustering_loss=0.0190, disc_loss=1.5773, elbo=561.8491, epoch=369/2001, vae_loss=561.9885]
Training: Embeddings batch effect correction using adversrial training:  18%|█▊        | 370/2000 [00:09<00:41, 39.13it/s, adv_loss=-1.5773, bio_penalty=0.1143, clustering_loss=0.0190, disc_loss=1.5773, elbo=564.3711, epoch=370/2001, vae_loss=564.5045]
Training: Embeddings batch effect correction using adversrial training:  19%|█▊        | 371/2000 [00:09<00:41, 39.13it/s, adv_loss=-1.5768, bio_penalty=0.1067, clustering_loss=0.0190, disc_loss=1.5768, elbo=559.5792, epoch=371/2001, vae_loss=559.7049]
Training: Embeddings batch effect correction using adversrial training:  19%|█▊        | 372/2000 [00:09<00:41, 39.34it/s, adv_loss=-1.5768, bio_penalty=0.1067, clustering_loss=0.0190, disc_loss=1.5768, elbo=559.5792, epoch=371/2001, vae_loss=559.7049]
Training: Embeddings batch effect correction using adversrial training:  19%|█▊        | 372/2000 [00:09<00:41, 39.34it/s, adv_loss=-1.5774, bio_penalty=0.1044, clustering_loss=0.0190, disc_loss=1.5774, elbo=558.5112, epoch=372/2001, vae_loss=558.6346]
Training: Embeddings batch effect correction using adversrial training:  19%|█▊        | 373/2000 [00:09<00:41, 39.34it/s, adv_loss=-1.5773, bio_penalty=0.1065, clustering_loss=0.0190, disc_loss=1.5773, elbo=563.9082, epoch=373/2001, vae_loss=564.0337]
Training: Embeddings batch effect correction using adversrial training:  19%|█▊        | 374/2000 [00:09<00:41, 39.34it/s, adv_loss=-1.5772, bio_penalty=0.1092, clustering_loss=0.0190, disc_loss=1.5772, elbo=559.0214, epoch=374/2001, vae_loss=559.1497]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 375/2000 [00:09<00:41, 39.34it/s, adv_loss=-1.5772, bio_penalty=0.1095, clustering_loss=0.0190, disc_loss=1.5772, elbo=560.1066, epoch=375/2001, vae_loss=560.2351]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 376/2000 [00:09<00:41, 39.34it/s, adv_loss=-1.5773, bio_penalty=0.1059, clustering_loss=0.0190, disc_loss=1.5773, elbo=554.6356, epoch=376/2001, vae_loss=554.7606]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 377/2000 [00:09<00:41, 39.55it/s, adv_loss=-1.5773, bio_penalty=0.1059, clustering_loss=0.0190, disc_loss=1.5773, elbo=554.6356, epoch=376/2001, vae_loss=554.7606]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 377/2000 [00:09<00:41, 39.55it/s, adv_loss=-1.5772, bio_penalty=0.1060, clustering_loss=0.0190, disc_loss=1.5772, elbo=556.8943, epoch=377/2001, vae_loss=557.0193]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 378/2000 [00:09<00:41, 39.55it/s, adv_loss=-1.5773, bio_penalty=0.1072, clustering_loss=0.0190, disc_loss=1.5773, elbo=555.0641, epoch=378/2001, vae_loss=555.1904]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 379/2000 [00:09<00:40, 39.55it/s, adv_loss=-1.5769, bio_penalty=0.1112, clustering_loss=0.0190, disc_loss=1.5769, elbo=553.6733, epoch=379/2001, vae_loss=553.8036]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 380/2000 [00:09<00:40, 39.55it/s, adv_loss=-1.5769, bio_penalty=0.1156, clustering_loss=0.0190, disc_loss=1.5769, elbo=552.6263, epoch=380/2001, vae_loss=552.7610]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 381/2000 [00:09<00:40, 39.63it/s, adv_loss=-1.5769, bio_penalty=0.1156, clustering_loss=0.0190, disc_loss=1.5769, elbo=552.6263, epoch=380/2001, vae_loss=552.7610]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 381/2000 [00:09<00:40, 39.63it/s, adv_loss=-1.5770, bio_penalty=0.1187, clustering_loss=0.0190, disc_loss=1.5770, elbo=552.0545, epoch=381/2001, vae_loss=552.1923]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 382/2000 [00:09<00:40, 39.63it/s, adv_loss=-1.5766, bio_penalty=0.1194, clustering_loss=0.0190, disc_loss=1.5766, elbo=553.2936, epoch=382/2001, vae_loss=553.4321]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 383/2000 [00:09<00:40, 39.63it/s, adv_loss=-1.5768, bio_penalty=0.1199, clustering_loss=0.0190, disc_loss=1.5768, elbo=554.1827, epoch=383/2001, vae_loss=554.3217]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 384/2000 [00:09<00:40, 39.63it/s, adv_loss=-1.5769, bio_penalty=0.1227, clustering_loss=0.0190, disc_loss=1.5769, elbo=549.5628, epoch=384/2001, vae_loss=549.7045]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 385/2000 [00:09<00:40, 39.44it/s, adv_loss=-1.5769, bio_penalty=0.1227, clustering_loss=0.0190, disc_loss=1.5769, elbo=549.5628, epoch=384/2001, vae_loss=549.7045]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 385/2000 [00:09<00:40, 39.44it/s, adv_loss=-1.5768, bio_penalty=0.1268, clustering_loss=0.0190, disc_loss=1.5768, elbo=552.9166, epoch=385/2001, vae_loss=553.0625]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 386/2000 [00:09<00:40, 39.44it/s, adv_loss=-1.5774, bio_penalty=0.1259, clustering_loss=0.0190, disc_loss=1.5774, elbo=549.3459, epoch=386/2001, vae_loss=549.4908]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 387/2000 [00:09<00:40, 39.44it/s, adv_loss=-1.5770, bio_penalty=0.1227, clustering_loss=0.0190, disc_loss=1.5770, elbo=549.4661, epoch=387/2001, vae_loss=549.6078]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 388/2000 [00:09<00:40, 39.44it/s, adv_loss=-1.5770, bio_penalty=0.1171, clustering_loss=0.0190, disc_loss=1.5770, elbo=549.2092, epoch=388/2001, vae_loss=549.3453]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 389/2000 [00:09<00:40, 39.56it/s, adv_loss=-1.5770, bio_penalty=0.1171, clustering_loss=0.0190, disc_loss=1.5770, elbo=549.2092, epoch=388/2001, vae_loss=549.3453]
Training: Embeddings batch effect correction using adversrial training:  19%|█▉        | 389/2000 [00:10<00:40, 39.56it/s, adv_loss=-1.5770, bio_penalty=0.1137, clustering_loss=0.0190, disc_loss=1.5770, elbo=548.4992, epoch=389/2001, vae_loss=548.6320]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 390/2000 [00:10<00:40, 39.56it/s, adv_loss=-1.5762, bio_penalty=0.1099, clustering_loss=0.0190, disc_loss=1.5762, elbo=545.7379, epoch=390/2001, vae_loss=545.8668]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 391/2000 [00:10<00:40, 39.56it/s, adv_loss=-1.5765, bio_penalty=0.1086, clustering_loss=0.0190, disc_loss=1.5765, elbo=543.6088, epoch=391/2001, vae_loss=543.7365]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 392/2000 [00:10<00:40, 39.56it/s, adv_loss=-1.5757, bio_penalty=0.1093, clustering_loss=0.0190, disc_loss=1.5757, elbo=545.1224, epoch=392/2001, vae_loss=545.2509]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 393/2000 [00:10<00:40, 39.56it/s, adv_loss=-1.5763, bio_penalty=0.1117, clustering_loss=0.0190, disc_loss=1.5763, elbo=544.1342, epoch=393/2001, vae_loss=544.2649]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 394/2000 [00:10<00:40, 39.74it/s, adv_loss=-1.5763, bio_penalty=0.1117, clustering_loss=0.0190, disc_loss=1.5763, elbo=544.1342, epoch=393/2001, vae_loss=544.2649]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 394/2000 [00:10<00:40, 39.74it/s, adv_loss=-1.5756, bio_penalty=0.1127, clustering_loss=0.0190, disc_loss=1.5756, elbo=545.1867, epoch=394/2001, vae_loss=545.3185]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 395/2000 [00:10<00:40, 39.74it/s, adv_loss=-1.5759, bio_penalty=0.1152, clustering_loss=0.0190, disc_loss=1.5759, elbo=541.7892, epoch=395/2001, vae_loss=541.9235]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 396/2000 [00:10<00:40, 39.74it/s, adv_loss=-1.5755, bio_penalty=0.1180, clustering_loss=0.0190, disc_loss=1.5755, elbo=540.8766, epoch=396/2001, vae_loss=541.0137]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 397/2000 [00:10<00:40, 39.74it/s, adv_loss=-1.5761, bio_penalty=0.1242, clustering_loss=0.0190, disc_loss=1.5761, elbo=540.3994, epoch=397/2001, vae_loss=540.5427]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 398/2000 [00:10<00:40, 39.44it/s, adv_loss=-1.5761, bio_penalty=0.1242, clustering_loss=0.0190, disc_loss=1.5761, elbo=540.3994, epoch=397/2001, vae_loss=540.5427]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 398/2000 [00:10<00:40, 39.44it/s, adv_loss=-1.5755, bio_penalty=0.1318, clustering_loss=0.0190, disc_loss=1.5755, elbo=541.9719, epoch=398/2001, vae_loss=542.1227]
Training: Embeddings batch effect correction using adversrial training:  20%|█▉        | 399/2000 [00:10<00:40, 39.44it/s, adv_loss=-1.5755, bio_penalty=0.1369, clustering_loss=0.0190, disc_loss=1.5755, elbo=540.6617, epoch=399/2001, vae_loss=540.8176]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 400/2000 [00:10<00:40, 39.44it/s, adv_loss=-1.5756, bio_penalty=0.1400, clustering_loss=0.0190, disc_loss=1.5756, elbo=541.0772, epoch=400/2001, vae_loss=541.2363]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 401/2000 [00:10<00:40, 39.44it/s, adv_loss=-1.5753, bio_penalty=0.1405, clustering_loss=0.0190, disc_loss=1.5753, elbo=542.3458, epoch=401/2001, vae_loss=542.5054]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 402/2000 [00:10<00:40, 39.39it/s, adv_loss=-1.5753, bio_penalty=0.1405, clustering_loss=0.0190, disc_loss=1.5753, elbo=542.3458, epoch=401/2001, vae_loss=542.5054]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 402/2000 [00:10<00:40, 39.39it/s, adv_loss=-1.5757, bio_penalty=0.1401, clustering_loss=0.0190, disc_loss=1.5757, elbo=538.5182, epoch=402/2001, vae_loss=538.6773]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 403/2000 [00:10<00:40, 39.39it/s, adv_loss=-1.5750, bio_penalty=0.1383, clustering_loss=0.0190, disc_loss=1.5750, elbo=540.7816, epoch=403/2001, vae_loss=540.9389]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 404/2000 [00:10<00:40, 39.39it/s, adv_loss=-1.5756, bio_penalty=0.1356, clustering_loss=0.0190, disc_loss=1.5756, elbo=537.4232, epoch=404/2001, vae_loss=537.5778]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 405/2000 [00:10<00:40, 39.39it/s, adv_loss=-1.5753, bio_penalty=0.1343, clustering_loss=0.0190, disc_loss=1.5753, elbo=539.2800, epoch=405/2001, vae_loss=539.4333]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 406/2000 [00:10<00:40, 39.27it/s, adv_loss=-1.5753, bio_penalty=0.1343, clustering_loss=0.0190, disc_loss=1.5753, elbo=539.2800, epoch=405/2001, vae_loss=539.4333]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 406/2000 [00:10<00:40, 39.27it/s, adv_loss=-1.5753, bio_penalty=0.1371, clustering_loss=0.0190, disc_loss=1.5753, elbo=539.7046, epoch=406/2001, vae_loss=539.8607]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 407/2000 [00:10<00:40, 39.27it/s, adv_loss=-1.5753, bio_penalty=0.1399, clustering_loss=0.0190, disc_loss=1.5753, elbo=544.0166, epoch=407/2001, vae_loss=544.1755]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 408/2000 [00:10<00:40, 39.27it/s, adv_loss=-1.5750, bio_penalty=0.1452, clustering_loss=0.0190, disc_loss=1.5750, elbo=534.8515, epoch=408/2001, vae_loss=535.0157]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 409/2000 [00:10<00:40, 39.27it/s, adv_loss=-1.5746, bio_penalty=0.1513, clustering_loss=0.0190, disc_loss=1.5746, elbo=535.6022, epoch=409/2001, vae_loss=535.7725]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 410/2000 [00:10<00:40, 39.14it/s, adv_loss=-1.5746, bio_penalty=0.1513, clustering_loss=0.0190, disc_loss=1.5746, elbo=535.6022, epoch=409/2001, vae_loss=535.7725]
Training: Embeddings batch effect correction using adversrial training:  20%|██        | 410/2000 [00:10<00:40, 39.14it/s, adv_loss=-1.5746, bio_penalty=0.1570, clustering_loss=0.0190, disc_loss=1.5746, elbo=538.6642, epoch=410/2001, vae_loss=538.8402]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 411/2000 [00:10<00:40, 39.14it/s, adv_loss=-1.5745, bio_penalty=0.1616, clustering_loss=0.0190, disc_loss=1.5745, elbo=534.3037, epoch=411/2001, vae_loss=534.4843]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 412/2000 [00:10<00:40, 39.14it/s, adv_loss=-1.5748, bio_penalty=0.1629, clustering_loss=0.0190, disc_loss=1.5748, elbo=536.2670, epoch=412/2001, vae_loss=536.4490]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 413/2000 [00:10<00:40, 39.14it/s, adv_loss=-1.5748, bio_penalty=0.1632, clustering_loss=0.0190, disc_loss=1.5748, elbo=533.2200, epoch=413/2001, vae_loss=533.4022]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 414/2000 [00:10<00:40, 38.99it/s, adv_loss=-1.5748, bio_penalty=0.1632, clustering_loss=0.0190, disc_loss=1.5748, elbo=533.2200, epoch=413/2001, vae_loss=533.4022]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 414/2000 [00:10<00:40, 38.99it/s, adv_loss=-1.5745, bio_penalty=0.1646, clustering_loss=0.0190, disc_loss=1.5745, elbo=538.4265, epoch=414/2001, vae_loss=538.6102]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 415/2000 [00:10<00:40, 38.99it/s, adv_loss=-1.5740, bio_penalty=0.1630, clustering_loss=0.0190, disc_loss=1.5740, elbo=532.7840, epoch=415/2001, vae_loss=532.9661]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 416/2000 [00:10<00:40, 38.99it/s, adv_loss=-1.5749, bio_penalty=0.1613, clustering_loss=0.0190, disc_loss=1.5749, elbo=535.8737, epoch=416/2001, vae_loss=536.0541]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 417/2000 [00:10<00:40, 38.99it/s, adv_loss=-1.5745, bio_penalty=0.1595, clustering_loss=0.0190, disc_loss=1.5745, elbo=534.8323, epoch=417/2001, vae_loss=535.0109]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 418/2000 [00:10<00:40, 38.95it/s, adv_loss=-1.5745, bio_penalty=0.1595, clustering_loss=0.0190, disc_loss=1.5745, elbo=534.8323, epoch=417/2001, vae_loss=535.0109]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 418/2000 [00:10<00:40, 38.95it/s, adv_loss=-1.5746, bio_penalty=0.1589, clustering_loss=0.0190, disc_loss=1.5746, elbo=532.8571, epoch=418/2001, vae_loss=533.0350]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 419/2000 [00:10<00:40, 38.95it/s, adv_loss=-1.5740, bio_penalty=0.1596, clustering_loss=0.0190, disc_loss=1.5740, elbo=531.8890, epoch=419/2001, vae_loss=532.0677]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 420/2000 [00:10<00:40, 38.95it/s, adv_loss=-1.5739, bio_penalty=0.1574, clustering_loss=0.0190, disc_loss=1.5739, elbo=532.1439, epoch=420/2001, vae_loss=532.3204]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 421/2000 [00:10<00:40, 38.95it/s, adv_loss=-1.5742, bio_penalty=0.1497, clustering_loss=0.0190, disc_loss=1.5742, elbo=531.4278, epoch=421/2001, vae_loss=531.5966]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 422/2000 [00:10<00:40, 39.05it/s, adv_loss=-1.5742, bio_penalty=0.1497, clustering_loss=0.0190, disc_loss=1.5742, elbo=531.4278, epoch=421/2001, vae_loss=531.5966]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 422/2000 [00:10<00:40, 39.05it/s, adv_loss=-1.5733, bio_penalty=0.1460, clustering_loss=0.0190, disc_loss=1.5733, elbo=530.0484, epoch=422/2001, vae_loss=530.2134]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 423/2000 [00:10<00:40, 39.05it/s, adv_loss=-1.5736, bio_penalty=0.1429, clustering_loss=0.0190, disc_loss=1.5736, elbo=527.5650, epoch=423/2001, vae_loss=527.7269]
Training: Embeddings batch effect correction using adversrial training:  21%|██        | 424/2000 [00:10<00:40, 39.05it/s, adv_loss=-1.5729, bio_penalty=0.1368, clustering_loss=0.0190, disc_loss=1.5729, elbo=528.9333, epoch=424/2001, vae_loss=529.0891]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 425/2000 [00:10<00:40, 39.05it/s, adv_loss=-1.5730, bio_penalty=0.1296, clustering_loss=0.0190, disc_loss=1.5730, elbo=529.9899, epoch=425/2001, vae_loss=530.1385]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 426/2000 [00:10<00:40, 39.05it/s, adv_loss=-1.5727, bio_penalty=0.1248, clustering_loss=0.0190, disc_loss=1.5727, elbo=529.1566, epoch=426/2001, vae_loss=529.3004]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 427/2000 [00:10<00:39, 39.49it/s, adv_loss=-1.5727, bio_penalty=0.1248, clustering_loss=0.0190, disc_loss=1.5727, elbo=529.1566, epoch=426/2001, vae_loss=529.3004]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 427/2000 [00:10<00:39, 39.49it/s, adv_loss=-1.5733, bio_penalty=0.1260, clustering_loss=0.0190, disc_loss=1.5733, elbo=531.9163, epoch=427/2001, vae_loss=532.0613]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 428/2000 [00:10<00:39, 39.49it/s, adv_loss=-1.5725, bio_penalty=0.1288, clustering_loss=0.0190, disc_loss=1.5725, elbo=528.7244, epoch=428/2001, vae_loss=528.8722]
Training: Embeddings batch effect correction using adversrial training:  21%|██▏       | 429/2000 [00:11<00:39, 39.49it/s, adv_loss=-1.5722, bio_penalty=0.1306, clustering_loss=0.0190, disc_loss=1.5722, elbo=531.5204, epoch=429/2001, vae_loss=531.6701]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 430/2000 [00:11<00:39, 39.49it/s, adv_loss=-1.5710, bio_penalty=0.1315, clustering_loss=0.0190, disc_loss=1.5710, elbo=532.1733, epoch=430/2001, vae_loss=532.3239]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 431/2000 [00:11<00:39, 39.62it/s, adv_loss=-1.5710, bio_penalty=0.1315, clustering_loss=0.0190, disc_loss=1.5710, elbo=532.1733, epoch=430/2001, vae_loss=532.3239]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 431/2000 [00:11<00:39, 39.62it/s, adv_loss=-1.5704, bio_penalty=0.1305, clustering_loss=0.0190, disc_loss=1.5704, elbo=526.8618, epoch=431/2001, vae_loss=527.0114]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 432/2000 [00:11<00:39, 39.62it/s, adv_loss=-1.5693, bio_penalty=0.1274, clustering_loss=0.0190, disc_loss=1.5693, elbo=527.8638, epoch=432/2001, vae_loss=528.0102]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 433/2000 [00:11<00:39, 39.62it/s, adv_loss=-1.5685, bio_penalty=0.1207, clustering_loss=0.0190, disc_loss=1.5685, elbo=532.1251, epoch=433/2001, vae_loss=532.2648]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 434/2000 [00:11<00:39, 39.62it/s, adv_loss=-1.5686, bio_penalty=0.1110, clustering_loss=0.0190, disc_loss=1.5686, elbo=535.9619, epoch=434/2001, vae_loss=536.0919]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 435/2000 [00:11<00:39, 39.68it/s, adv_loss=-1.5686, bio_penalty=0.1110, clustering_loss=0.0190, disc_loss=1.5686, elbo=535.9619, epoch=434/2001, vae_loss=536.0919]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 435/2000 [00:11<00:39, 39.68it/s, adv_loss=-1.5671, bio_penalty=0.0985, clustering_loss=0.0190, disc_loss=1.5671, elbo=532.9867, epoch=435/2001, vae_loss=533.1042]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 436/2000 [00:11<00:39, 39.68it/s, adv_loss=-1.5639, bio_penalty=0.0902, clustering_loss=0.0190, disc_loss=1.5639, elbo=531.6713, epoch=436/2001, vae_loss=531.7805]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 437/2000 [00:11<00:39, 39.68it/s, adv_loss=-1.5647, bio_penalty=0.0804, clustering_loss=0.0190, disc_loss=1.5647, elbo=535.9144, epoch=437/2001, vae_loss=536.0139]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 438/2000 [00:11<00:39, 39.68it/s, adv_loss=-1.5636, bio_penalty=0.0706, clustering_loss=0.0190, disc_loss=1.5636, elbo=539.3350, epoch=438/2001, vae_loss=539.4247]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 439/2000 [00:11<00:39, 39.70it/s, adv_loss=-1.5636, bio_penalty=0.0706, clustering_loss=0.0190, disc_loss=1.5636, elbo=539.3350, epoch=438/2001, vae_loss=539.4247]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 439/2000 [00:11<00:39, 39.70it/s, adv_loss=-1.5646, bio_penalty=0.0616, clustering_loss=0.0190, disc_loss=1.5646, elbo=538.1358, epoch=439/2001, vae_loss=538.2164]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 440/2000 [00:11<00:39, 39.70it/s, adv_loss=-1.5657, bio_penalty=0.0525, clustering_loss=0.0190, disc_loss=1.5657, elbo=545.4180, epoch=440/2001, vae_loss=545.4895]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 441/2000 [00:11<00:39, 39.70it/s, adv_loss=-1.5681, bio_penalty=0.0448, clustering_loss=0.0190, disc_loss=1.5681, elbo=547.9643, epoch=441/2001, vae_loss=548.0281]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 442/2000 [00:11<00:39, 39.70it/s, adv_loss=-1.5687, bio_penalty=0.0380, clustering_loss=0.0190, disc_loss=1.5687, elbo=553.7115, epoch=442/2001, vae_loss=553.7686]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 443/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5687, bio_penalty=0.0380, clustering_loss=0.0190, disc_loss=1.5687, elbo=553.7115, epoch=442/2001, vae_loss=553.7686]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 443/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5740, bio_penalty=0.0335, clustering_loss=0.0190, disc_loss=1.5740, elbo=557.7551, epoch=443/2001, vae_loss=557.8076]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 444/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5775, bio_penalty=0.0313, clustering_loss=0.0190, disc_loss=1.5775, elbo=572.1770, epoch=444/2001, vae_loss=572.2274]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 445/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5812, bio_penalty=0.0306, clustering_loss=0.0190, disc_loss=1.5812, elbo=578.1824, epoch=445/2001, vae_loss=578.2321]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 446/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5803, bio_penalty=0.0299, clustering_loss=0.0190, disc_loss=1.5803, elbo=572.5671, epoch=446/2001, vae_loss=572.6161]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 447/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5803, bio_penalty=0.0299, clustering_loss=0.0190, disc_loss=1.5803, elbo=572.5671, epoch=446/2001, vae_loss=572.6161]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 447/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5820, bio_penalty=0.0302, clustering_loss=0.0190, disc_loss=1.5820, elbo=585.6786, epoch=447/2001, vae_loss=585.7278]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 448/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5830, bio_penalty=0.0308, clustering_loss=0.0190, disc_loss=1.5830, elbo=582.7047, epoch=448/2001, vae_loss=582.7545]
Training: Embeddings batch effect correction using adversrial training:  22%|██▏       | 449/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5837, bio_penalty=0.0333, clustering_loss=0.0190, disc_loss=1.5837, elbo=592.3352, epoch=449/2001, vae_loss=592.3876]
Training: Embeddings batch effect correction using adversrial training:  22%|██▎       | 450/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5841, bio_penalty=0.0359, clustering_loss=0.0190, disc_loss=1.5841, elbo=583.9666, epoch=450/2001, vae_loss=584.0215]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 451/2000 [00:11<00:39, 39.58it/s, adv_loss=-1.5850, bio_penalty=0.0363, clustering_loss=0.0190, disc_loss=1.5850, elbo=583.8558, epoch=451/2001, vae_loss=583.9111]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 452/2000 [00:11<00:38, 39.97it/s, adv_loss=-1.5850, bio_penalty=0.0363, clustering_loss=0.0190, disc_loss=1.5850, elbo=583.8558, epoch=451/2001, vae_loss=583.9111]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 452/2000 [00:11<00:38, 39.97it/s, adv_loss=-1.5838, bio_penalty=0.0356, clustering_loss=0.0190, disc_loss=1.5838, elbo=593.1342, epoch=452/2001, vae_loss=593.1888]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 453/2000 [00:11<00:38, 39.97it/s, adv_loss=-1.5840, bio_penalty=0.0347, clustering_loss=0.0190, disc_loss=1.5840, elbo=593.7981, epoch=453/2001, vae_loss=593.8519]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 454/2000 [00:11<00:38, 39.97it/s, adv_loss=-1.5825, bio_penalty=0.0359, clustering_loss=0.0190, disc_loss=1.5825, elbo=591.1871, epoch=454/2001, vae_loss=591.2421]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 455/2000 [00:11<00:38, 39.97it/s, adv_loss=-1.5829, bio_penalty=0.0388, clustering_loss=0.0190, disc_loss=1.5829, elbo=591.2609, epoch=455/2001, vae_loss=591.3187]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 456/2000 [00:11<00:38, 39.97it/s, adv_loss=-1.5829, bio_penalty=0.0436, clustering_loss=0.0190, disc_loss=1.5829, elbo=599.0036, epoch=456/2001, vae_loss=599.0662]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 457/2000 [00:11<00:38, 40.22it/s, adv_loss=-1.5829, bio_penalty=0.0436, clustering_loss=0.0190, disc_loss=1.5829, elbo=599.0036, epoch=456/2001, vae_loss=599.0662]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 457/2000 [00:11<00:38, 40.22it/s, adv_loss=-1.5805, bio_penalty=0.0465, clustering_loss=0.0190, disc_loss=1.5805, elbo=594.9525, epoch=457/2001, vae_loss=595.0181]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 458/2000 [00:11<00:38, 40.22it/s, adv_loss=-1.5801, bio_penalty=0.0463, clustering_loss=0.0190, disc_loss=1.5801, elbo=602.9933, epoch=458/2001, vae_loss=603.0587]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 459/2000 [00:11<00:38, 40.22it/s, adv_loss=-1.5770, bio_penalty=0.0452, clustering_loss=0.0190, disc_loss=1.5770, elbo=596.1102, epoch=459/2001, vae_loss=596.1744]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 460/2000 [00:11<00:38, 40.22it/s, adv_loss=-1.5763, bio_penalty=0.0447, clustering_loss=0.0190, disc_loss=1.5763, elbo=593.1402, epoch=460/2001, vae_loss=593.2039]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 461/2000 [00:11<00:38, 40.22it/s, adv_loss=-1.5747, bio_penalty=0.0443, clustering_loss=0.0190, disc_loss=1.5747, elbo=596.3298, epoch=461/2001, vae_loss=596.3931]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 462/2000 [00:11<00:38, 39.89it/s, adv_loss=-1.5747, bio_penalty=0.0443, clustering_loss=0.0190, disc_loss=1.5747, elbo=596.3298, epoch=461/2001, vae_loss=596.3931]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 462/2000 [00:11<00:38, 39.89it/s, adv_loss=-1.5727, bio_penalty=0.0440, clustering_loss=0.0190, disc_loss=1.5727, elbo=586.7790, epoch=462/2001, vae_loss=586.8420]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 463/2000 [00:11<00:38, 39.89it/s, adv_loss=-1.5709, bio_penalty=0.0432, clustering_loss=0.0190, disc_loss=1.5709, elbo=579.9014, epoch=463/2001, vae_loss=579.9637]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 464/2000 [00:11<00:38, 39.89it/s, adv_loss=-1.5684, bio_penalty=0.0417, clustering_loss=0.0190, disc_loss=1.5684, elbo=580.9042, epoch=464/2001, vae_loss=580.9649]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 465/2000 [00:11<00:38, 39.89it/s, adv_loss=-1.5671, bio_penalty=0.0414, clustering_loss=0.0190, disc_loss=1.5671, elbo=580.4462, epoch=465/2001, vae_loss=580.5067]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 466/2000 [00:11<00:38, 39.89it/s, adv_loss=-1.5654, bio_penalty=0.0445, clustering_loss=0.0190, disc_loss=1.5654, elbo=582.3451, epoch=466/2001, vae_loss=582.4086]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 467/2000 [00:11<00:38, 39.91it/s, adv_loss=-1.5654, bio_penalty=0.0445, clustering_loss=0.0190, disc_loss=1.5654, elbo=582.3451, epoch=466/2001, vae_loss=582.4086]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 467/2000 [00:11<00:38, 39.91it/s, adv_loss=-1.5655, bio_penalty=0.0496, clustering_loss=0.0190, disc_loss=1.5655, elbo=578.5018, epoch=467/2001, vae_loss=578.5704]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 468/2000 [00:12<00:38, 39.91it/s, adv_loss=-1.5636, bio_penalty=0.0569, clustering_loss=0.0190, disc_loss=1.5636, elbo=575.4622, epoch=468/2001, vae_loss=575.5381]
Training: Embeddings batch effect correction using adversrial training:  23%|██▎       | 469/2000 [00:12<00:38, 39.91it/s, adv_loss=-1.5638, bio_penalty=0.0672, clustering_loss=0.0190, disc_loss=1.5638, elbo=581.1066, epoch=469/2001, vae_loss=581.1928]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 470/2000 [00:12<00:38, 39.91it/s, adv_loss=-1.5685, bio_penalty=0.0740, clustering_loss=0.0190, disc_loss=1.5685, elbo=581.9798, epoch=470/2001, vae_loss=582.0729]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 471/2000 [00:12<00:38, 39.91it/s, adv_loss=-1.5684, bio_penalty=0.0812, clustering_loss=0.0190, disc_loss=1.5684, elbo=577.6624, epoch=471/2001, vae_loss=577.7627]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 472/2000 [00:12<00:38, 40.11it/s, adv_loss=-1.5684, bio_penalty=0.0812, clustering_loss=0.0190, disc_loss=1.5684, elbo=577.6624, epoch=471/2001, vae_loss=577.7627]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 472/2000 [00:12<00:38, 40.11it/s, adv_loss=-1.5688, bio_penalty=0.0887, clustering_loss=0.0190, disc_loss=1.5688, elbo=577.9261, epoch=472/2001, vae_loss=578.0339]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 473/2000 [00:12<00:38, 40.11it/s, adv_loss=-1.5692, bio_penalty=0.0983, clustering_loss=0.0190, disc_loss=1.5692, elbo=589.3068, epoch=473/2001, vae_loss=589.4242]
Training: Embeddings batch effect correction using adversrial training:  24%|██▎       | 474/2000 [00:12<00:38, 40.11it/s, adv_loss=-1.5691, bio_penalty=0.1087, clustering_loss=0.0190, disc_loss=1.5691, elbo=584.3390, epoch=474/2001, vae_loss=584.4667]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 475/2000 [00:12<00:38, 40.11it/s, adv_loss=-1.5708, bio_penalty=0.1234, clustering_loss=0.0190, disc_loss=1.5708, elbo=584.6788, epoch=475/2001, vae_loss=584.8212]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 476/2000 [00:12<00:37, 40.11it/s, adv_loss=-1.5714, bio_penalty=0.1437, clustering_loss=0.0190, disc_loss=1.5714, elbo=589.0390, epoch=476/2001, vae_loss=589.2018]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 477/2000 [00:12<00:38, 39.83it/s, adv_loss=-1.5714, bio_penalty=0.1437, clustering_loss=0.0190, disc_loss=1.5714, elbo=589.0390, epoch=476/2001, vae_loss=589.2018]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 477/2000 [00:12<00:38, 39.83it/s, adv_loss=-1.5729, bio_penalty=0.1597, clustering_loss=0.0190, disc_loss=1.5729, elbo=588.5967, epoch=477/2001, vae_loss=588.7755]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 478/2000 [00:12<00:38, 39.83it/s, adv_loss=-1.5762, bio_penalty=0.1760, clustering_loss=0.0190, disc_loss=1.5762, elbo=583.5104, epoch=478/2001, vae_loss=583.7054]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 479/2000 [00:12<00:38, 39.83it/s, adv_loss=-1.5753, bio_penalty=0.1900, clustering_loss=0.0190, disc_loss=1.5753, elbo=583.1763, epoch=479/2001, vae_loss=583.3853]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 480/2000 [00:12<00:38, 39.83it/s, adv_loss=-1.5782, bio_penalty=0.2156, clustering_loss=0.0190, disc_loss=1.5782, elbo=601.4205, epoch=480/2001, vae_loss=601.6552]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 481/2000 [00:12<00:38, 39.50it/s, adv_loss=-1.5782, bio_penalty=0.2156, clustering_loss=0.0190, disc_loss=1.5782, elbo=601.4205, epoch=480/2001, vae_loss=601.6552]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 481/2000 [00:12<00:38, 39.50it/s, adv_loss=-1.5785, bio_penalty=0.2479, clustering_loss=0.0190, disc_loss=1.5785, elbo=585.1342, epoch=481/2001, vae_loss=585.4011]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 482/2000 [00:12<00:38, 39.50it/s, adv_loss=-1.5735, bio_penalty=0.2801, clustering_loss=0.0190, disc_loss=1.5735, elbo=606.2341, epoch=482/2001, vae_loss=606.5333]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 483/2000 [00:12<00:38, 39.50it/s, adv_loss=-1.5767, bio_penalty=0.3121, clustering_loss=0.0190, disc_loss=1.5767, elbo=604.2284, epoch=483/2001, vae_loss=604.5595]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 484/2000 [00:12<00:38, 39.50it/s, adv_loss=-1.5738, bio_penalty=0.3385, clustering_loss=0.0190, disc_loss=1.5738, elbo=602.1786, epoch=484/2001, vae_loss=602.5362]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 485/2000 [00:12<00:38, 39.38it/s, adv_loss=-1.5738, bio_penalty=0.3385, clustering_loss=0.0190, disc_loss=1.5738, elbo=602.1786, epoch=484/2001, vae_loss=602.5362]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 485/2000 [00:12<00:38, 39.38it/s, adv_loss=-1.5728, bio_penalty=0.3457, clustering_loss=0.0190, disc_loss=1.5728, elbo=597.2517, epoch=485/2001, vae_loss=597.6165]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 486/2000 [00:12<00:38, 39.38it/s, adv_loss=-1.5780, bio_penalty=0.3431, clustering_loss=0.0190, disc_loss=1.5780, elbo=600.9832, epoch=486/2001, vae_loss=601.3453]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 487/2000 [00:12<00:38, 39.38it/s, adv_loss=-1.5749, bio_penalty=0.3377, clustering_loss=0.0190, disc_loss=1.5749, elbo=599.0862, epoch=487/2001, vae_loss=599.4430]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 488/2000 [00:12<00:38, 39.38it/s, adv_loss=-1.5755, bio_penalty=0.3375, clustering_loss=0.0190, disc_loss=1.5755, elbo=605.1356, epoch=488/2001, vae_loss=605.4922]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 489/2000 [00:12<00:38, 39.18it/s, adv_loss=-1.5755, bio_penalty=0.3375, clustering_loss=0.0190, disc_loss=1.5755, elbo=605.1356, epoch=488/2001, vae_loss=605.4922]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 489/2000 [00:12<00:38, 39.18it/s, adv_loss=-1.5666, bio_penalty=0.3482, clustering_loss=0.0190, disc_loss=1.5666, elbo=602.9360, epoch=489/2001, vae_loss=603.3032]
Training: Embeddings batch effect correction using adversrial training:  24%|██▍       | 490/2000 [00:12<00:38, 39.18it/s, adv_loss=-1.5714, bio_penalty=0.3580, clustering_loss=0.0190, disc_loss=1.5714, elbo=609.0297, epoch=490/2001, vae_loss=609.4067]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 491/2000 [00:12<00:38, 39.18it/s, adv_loss=-1.5735, bio_penalty=0.3415, clustering_loss=0.0190, disc_loss=1.5735, elbo=600.7535, epoch=491/2001, vae_loss=601.1141]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 492/2000 [00:12<00:38, 39.18it/s, adv_loss=-1.5685, bio_penalty=0.3284, clustering_loss=0.0190, disc_loss=1.5685, elbo=600.7568, epoch=492/2001, vae_loss=601.1042]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 493/2000 [00:12<00:38, 39.04it/s, adv_loss=-1.5685, bio_penalty=0.3284, clustering_loss=0.0190, disc_loss=1.5685, elbo=600.7568, epoch=492/2001, vae_loss=601.1042]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 493/2000 [00:12<00:38, 39.04it/s, adv_loss=-1.5690, bio_penalty=0.3211, clustering_loss=0.0190, disc_loss=1.5690, elbo=589.1329, epoch=493/2001, vae_loss=589.4731]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 494/2000 [00:12<00:38, 39.04it/s, adv_loss=-1.5684, bio_penalty=0.3090, clustering_loss=0.0190, disc_loss=1.5684, elbo=591.3399, epoch=494/2001, vae_loss=591.6679]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 495/2000 [00:12<00:38, 39.04it/s, adv_loss=-1.5717, bio_penalty=0.2904, clustering_loss=0.0190, disc_loss=1.5717, elbo=594.7604, epoch=495/2001, vae_loss=595.0698]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 496/2000 [00:12<00:38, 39.04it/s, adv_loss=-1.5759, bio_penalty=0.2766, clustering_loss=0.0190, disc_loss=1.5759, elbo=590.6005, epoch=496/2001, vae_loss=590.8961]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 497/2000 [00:12<00:38, 39.07it/s, adv_loss=-1.5759, bio_penalty=0.2766, clustering_loss=0.0190, disc_loss=1.5759, elbo=590.6005, epoch=496/2001, vae_loss=590.8961]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 497/2000 [00:12<00:38, 39.07it/s, adv_loss=-1.5728, bio_penalty=0.2514, clustering_loss=0.0190, disc_loss=1.5728, elbo=590.8860, epoch=497/2001, vae_loss=591.1564]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 498/2000 [00:12<00:38, 39.07it/s, adv_loss=-1.5715, bio_penalty=0.2196, clustering_loss=0.0190, disc_loss=1.5715, elbo=587.7469, epoch=498/2001, vae_loss=587.9856]
Training: Embeddings batch effect correction using adversrial training:  25%|██▍       | 499/2000 [00:12<00:38, 39.07it/s, adv_loss=-1.5719, bio_penalty=0.1992, clustering_loss=0.0190, disc_loss=1.5719, elbo=587.8912, epoch=499/2001, vae_loss=588.1095]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 500/2000 [00:12<00:38, 39.07it/s, adv_loss=-1.5745, bio_penalty=0.1808, clustering_loss=0.0190, disc_loss=1.5745, elbo=576.1772, epoch=500/2001, vae_loss=576.3771]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 501/2000 [00:12<00:38, 38.86it/s, adv_loss=-1.5745, bio_penalty=0.1808, clustering_loss=0.0190, disc_loss=1.5745, elbo=576.1772, epoch=500/2001, vae_loss=576.3771]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 501/2000 [00:12<00:38, 38.86it/s, adv_loss=-1.5724, bio_penalty=0.1653, clustering_loss=0.0190, disc_loss=1.5724, elbo=579.5487, epoch=501/2001, vae_loss=579.7331]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 502/2000 [00:12<00:38, 38.86it/s, adv_loss=-1.5737, bio_penalty=0.1543, clustering_loss=0.0190, disc_loss=1.5737, elbo=571.9474, epoch=502/2001, vae_loss=572.1207]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 503/2000 [00:12<00:38, 38.86it/s, adv_loss=-1.5731, bio_penalty=0.1465, clustering_loss=0.0190, disc_loss=1.5731, elbo=572.0390, epoch=503/2001, vae_loss=572.2045]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 504/2000 [00:12<00:38, 38.86it/s, adv_loss=-1.5715, bio_penalty=0.1411, clustering_loss=0.0190, disc_loss=1.5715, elbo=563.2578, epoch=504/2001, vae_loss=563.4180]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 505/2000 [00:12<00:38, 39.13it/s, adv_loss=-1.5715, bio_penalty=0.1411, clustering_loss=0.0190, disc_loss=1.5715, elbo=563.2578, epoch=504/2001, vae_loss=563.4180]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 505/2000 [00:12<00:38, 39.13it/s, adv_loss=-1.5734, bio_penalty=0.1388, clustering_loss=0.0190, disc_loss=1.5734, elbo=568.0528, epoch=505/2001, vae_loss=568.2107]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 506/2000 [00:12<00:38, 39.13it/s, adv_loss=-1.5723, bio_penalty=0.1365, clustering_loss=0.0190, disc_loss=1.5723, elbo=563.4482, epoch=506/2001, vae_loss=563.6037]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 507/2000 [00:12<00:38, 39.13it/s, adv_loss=-1.5726, bio_penalty=0.1328, clustering_loss=0.0190, disc_loss=1.5726, elbo=566.0737, epoch=507/2001, vae_loss=566.2255]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 508/2000 [00:13<00:38, 39.13it/s, adv_loss=-1.5738, bio_penalty=0.1282, clustering_loss=0.0190, disc_loss=1.5738, elbo=559.8771, epoch=508/2001, vae_loss=560.0244]
Training: Embeddings batch effect correction using adversrial training:  25%|██▌       | 509/2000 [00:13<00:38, 39.13it/s, adv_loss=-1.5720, bio_penalty=0.1239, clustering_loss=0.0190, disc_loss=1.5720, elbo=562.9822, epoch=509/2001, vae_loss=563.1251]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 510/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5720, bio_penalty=0.1239, clustering_loss=0.0190, disc_loss=1.5720, elbo=562.9822, epoch=509/2001, vae_loss=563.1251]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 510/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5734, bio_penalty=0.1193, clustering_loss=0.0190, disc_loss=1.5734, elbo=553.0657, epoch=510/2001, vae_loss=553.2040]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 511/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5735, bio_penalty=0.1144, clustering_loss=0.0190, disc_loss=1.5735, elbo=552.3579, epoch=511/2001, vae_loss=552.4913]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 512/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5731, bio_penalty=0.1100, clustering_loss=0.0190, disc_loss=1.5731, elbo=554.9601, epoch=512/2001, vae_loss=555.0892]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 513/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5724, bio_penalty=0.1065, clustering_loss=0.0190, disc_loss=1.5724, elbo=553.5687, epoch=513/2001, vae_loss=553.6943]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 514/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5724, bio_penalty=0.1065, clustering_loss=0.0190, disc_loss=1.5724, elbo=553.5687, epoch=513/2001, vae_loss=553.6943]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 514/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5730, bio_penalty=0.1046, clustering_loss=0.0190, disc_loss=1.5730, elbo=547.8845, epoch=514/2001, vae_loss=548.0081]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 515/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5733, bio_penalty=0.1048, clustering_loss=0.0190, disc_loss=1.5733, elbo=551.0684, epoch=515/2001, vae_loss=551.1922]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 516/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5745, bio_penalty=0.1065, clustering_loss=0.0190, disc_loss=1.5745, elbo=551.1097, epoch=516/2001, vae_loss=551.2352]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 517/2000 [00:13<00:37, 39.50it/s, adv_loss=-1.5745, bio_penalty=0.1101, clustering_loss=0.0190, disc_loss=1.5745, elbo=557.1973, epoch=517/2001, vae_loss=557.3265]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 518/2000 [00:13<00:37, 39.55it/s, adv_loss=-1.5745, bio_penalty=0.1101, clustering_loss=0.0190, disc_loss=1.5745, elbo=557.1973, epoch=517/2001, vae_loss=557.3265]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 518/2000 [00:13<00:37, 39.55it/s, adv_loss=-1.5751, bio_penalty=0.1176, clustering_loss=0.0190, disc_loss=1.5751, elbo=554.7678, epoch=518/2001, vae_loss=554.9044]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 519/2000 [00:13<00:37, 39.55it/s, adv_loss=-1.5753, bio_penalty=0.1264, clustering_loss=0.0190, disc_loss=1.5753, elbo=548.6158, epoch=519/2001, vae_loss=548.7612]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 520/2000 [00:13<00:37, 39.55it/s, adv_loss=-1.5756, bio_penalty=0.1303, clustering_loss=0.0190, disc_loss=1.5756, elbo=551.2300, epoch=520/2001, vae_loss=551.3793]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 521/2000 [00:13<00:37, 39.55it/s, adv_loss=-1.5768, bio_penalty=0.1355, clustering_loss=0.0190, disc_loss=1.5768, elbo=546.3260, epoch=521/2001, vae_loss=546.4805]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 522/2000 [00:13<00:37, 39.60it/s, adv_loss=-1.5768, bio_penalty=0.1355, clustering_loss=0.0190, disc_loss=1.5768, elbo=546.3260, epoch=521/2001, vae_loss=546.4805]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 522/2000 [00:13<00:37, 39.60it/s, adv_loss=-1.5769, bio_penalty=0.1381, clustering_loss=0.0190, disc_loss=1.5769, elbo=549.1125, epoch=522/2001, vae_loss=549.2697]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 523/2000 [00:13<00:37, 39.60it/s, adv_loss=-1.5766, bio_penalty=0.1480, clustering_loss=0.0190, disc_loss=1.5766, elbo=549.7123, epoch=523/2001, vae_loss=549.8793]
Training: Embeddings batch effect correction using adversrial training:  26%|██▌       | 524/2000 [00:13<00:37, 39.60it/s, adv_loss=-1.5773, bio_penalty=0.1664, clustering_loss=0.0190, disc_loss=1.5773, elbo=550.6290, epoch=524/2001, vae_loss=550.8144]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 525/2000 [00:13<00:37, 39.60it/s, adv_loss=-1.5775, bio_penalty=0.2011, clustering_loss=0.0190, disc_loss=1.5775, elbo=553.4371, epoch=525/2001, vae_loss=553.6572]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 526/2000 [00:13<00:37, 39.46it/s, adv_loss=-1.5775, bio_penalty=0.2011, clustering_loss=0.0190, disc_loss=1.5775, elbo=553.4371, epoch=525/2001, vae_loss=553.6572]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 526/2000 [00:13<00:37, 39.46it/s, adv_loss=-1.5768, bio_penalty=0.2328, clustering_loss=0.0190, disc_loss=1.5768, elbo=554.9783, epoch=526/2001, vae_loss=555.2302]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 527/2000 [00:13<00:37, 39.46it/s, adv_loss=-1.5775, bio_penalty=0.2130, clustering_loss=0.0190, disc_loss=1.5775, elbo=553.3412, epoch=527/2001, vae_loss=553.5732]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 528/2000 [00:13<00:37, 39.46it/s, adv_loss=-1.5768, bio_penalty=0.1908, clustering_loss=0.0190, disc_loss=1.5768, elbo=547.4792, epoch=528/2001, vae_loss=547.6891]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 529/2000 [00:13<00:37, 39.46it/s, adv_loss=-1.5772, bio_penalty=0.1785, clustering_loss=0.0190, disc_loss=1.5772, elbo=548.4119, epoch=529/2001, vae_loss=548.6095]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 530/2000 [00:13<00:37, 39.59it/s, adv_loss=-1.5772, bio_penalty=0.1785, clustering_loss=0.0190, disc_loss=1.5772, elbo=548.4119, epoch=529/2001, vae_loss=548.6095]
Training: Embeddings batch effect correction using adversrial training:  26%|██▋       | 530/2000 [00:13<00:37, 39.59it/s, adv_loss=-1.5777, bio_penalty=0.1942, clustering_loss=0.0190, disc_loss=1.5777, elbo=543.6128, epoch=530/2001, vae_loss=543.8260]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 531/2000 [00:13<00:37, 39.59it/s, adv_loss=-1.5774, bio_penalty=0.2226, clustering_loss=0.0190, disc_loss=1.5774, elbo=541.8362, epoch=531/2001, vae_loss=542.0779]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 532/2000 [00:13<00:37, 39.59it/s, adv_loss=-1.5781, bio_penalty=0.2384, clustering_loss=0.0190, disc_loss=1.5781, elbo=544.7687, epoch=532/2001, vae_loss=545.0261]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 533/2000 [00:13<00:37, 39.59it/s, adv_loss=-1.5773, bio_penalty=0.2246, clustering_loss=0.0190, disc_loss=1.5773, elbo=542.6849, epoch=533/2001, vae_loss=542.9286]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 534/2000 [00:13<00:37, 39.59it/s, adv_loss=-1.5775, bio_penalty=0.1894, clustering_loss=0.0190, disc_loss=1.5775, elbo=541.0610, epoch=534/2001, vae_loss=541.2695]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 535/2000 [00:13<00:36, 39.88it/s, adv_loss=-1.5775, bio_penalty=0.1894, clustering_loss=0.0190, disc_loss=1.5775, elbo=541.0610, epoch=534/2001, vae_loss=541.2695]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 535/2000 [00:13<00:36, 39.88it/s, adv_loss=-1.5770, bio_penalty=0.1648, clustering_loss=0.0190, disc_loss=1.5770, elbo=544.5358, epoch=535/2001, vae_loss=544.7196]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 536/2000 [00:13<00:36, 39.88it/s, adv_loss=-1.5777, bio_penalty=0.1594, clustering_loss=0.0190, disc_loss=1.5777, elbo=540.0054, epoch=536/2001, vae_loss=540.1839]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 537/2000 [00:13<00:36, 39.88it/s, adv_loss=-1.5779, bio_penalty=0.1571, clustering_loss=0.0190, disc_loss=1.5779, elbo=538.2803, epoch=537/2001, vae_loss=538.4564]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 538/2000 [00:13<00:36, 39.88it/s, adv_loss=-1.5783, bio_penalty=0.1518, clustering_loss=0.0190, disc_loss=1.5783, elbo=542.3401, epoch=538/2001, vae_loss=542.5109]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 539/2000 [00:13<00:37, 39.48it/s, adv_loss=-1.5783, bio_penalty=0.1518, clustering_loss=0.0190, disc_loss=1.5783, elbo=542.3401, epoch=538/2001, vae_loss=542.5109]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 539/2000 [00:13<00:37, 39.48it/s, adv_loss=-1.5774, bio_penalty=0.1348, clustering_loss=0.0190, disc_loss=1.5774, elbo=540.6345, epoch=539/2001, vae_loss=540.7883]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 540/2000 [00:13<00:36, 39.48it/s, adv_loss=-1.5776, bio_penalty=0.1138, clustering_loss=0.0190, disc_loss=1.5776, elbo=540.4423, epoch=540/2001, vae_loss=540.5751]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 541/2000 [00:13<00:36, 39.48it/s, adv_loss=-1.5769, bio_penalty=0.1008, clustering_loss=0.0190, disc_loss=1.5769, elbo=537.3981, epoch=541/2001, vae_loss=537.5179]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 542/2000 [00:13<00:36, 39.48it/s, adv_loss=-1.5771, bio_penalty=0.0954, clustering_loss=0.0190, disc_loss=1.5771, elbo=536.3169, epoch=542/2001, vae_loss=536.4313]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 543/2000 [00:13<00:36, 39.44it/s, adv_loss=-1.5771, bio_penalty=0.0954, clustering_loss=0.0190, disc_loss=1.5771, elbo=536.3169, epoch=542/2001, vae_loss=536.4313]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 543/2000 [00:13<00:36, 39.44it/s, adv_loss=-1.5760, bio_penalty=0.0959, clustering_loss=0.0190, disc_loss=1.5760, elbo=536.1867, epoch=543/2001, vae_loss=536.3016]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 544/2000 [00:13<00:36, 39.44it/s, adv_loss=-1.5760, bio_penalty=0.1034, clustering_loss=0.0190, disc_loss=1.5760, elbo=534.8760, epoch=544/2001, vae_loss=534.9984]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 545/2000 [00:13<00:36, 39.44it/s, adv_loss=-1.5748, bio_penalty=0.1057, clustering_loss=0.0190, disc_loss=1.5748, elbo=532.6122, epoch=545/2001, vae_loss=532.7369]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 546/2000 [00:13<00:36, 39.44it/s, adv_loss=-1.5746, bio_penalty=0.1020, clustering_loss=0.0190, disc_loss=1.5746, elbo=536.8981, epoch=546/2001, vae_loss=537.0192]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 547/2000 [00:13<00:36, 39.38it/s, adv_loss=-1.5746, bio_penalty=0.1020, clustering_loss=0.0190, disc_loss=1.5746, elbo=536.8981, epoch=546/2001, vae_loss=537.0192]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 547/2000 [00:14<00:36, 39.38it/s, adv_loss=-1.5753, bio_penalty=0.0908, clustering_loss=0.0190, disc_loss=1.5753, elbo=532.1638, epoch=547/2001, vae_loss=532.2736]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 548/2000 [00:14<00:36, 39.38it/s, adv_loss=-1.5748, bio_penalty=0.0856, clustering_loss=0.0190, disc_loss=1.5748, elbo=534.2679, epoch=548/2001, vae_loss=534.3725]
Training: Embeddings batch effect correction using adversrial training:  27%|██▋       | 549/2000 [00:14<00:36, 39.38it/s, adv_loss=-1.5744, bio_penalty=0.0865, clustering_loss=0.0190, disc_loss=1.5744, elbo=533.6212, epoch=549/2001, vae_loss=533.7267]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 550/2000 [00:14<00:36, 39.38it/s, adv_loss=-1.5745, bio_penalty=0.0911, clustering_loss=0.0190, disc_loss=1.5745, elbo=530.4215, epoch=550/2001, vae_loss=530.5316]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 551/2000 [00:14<00:36, 39.31it/s, adv_loss=-1.5745, bio_penalty=0.0911, clustering_loss=0.0190, disc_loss=1.5745, elbo=530.4215, epoch=550/2001, vae_loss=530.5316]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 551/2000 [00:14<00:36, 39.31it/s, adv_loss=-1.5739, bio_penalty=0.0981, clustering_loss=0.0190, disc_loss=1.5739, elbo=527.7067, epoch=551/2001, vae_loss=527.8239]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 552/2000 [00:14<00:36, 39.31it/s, adv_loss=-1.5738, bio_penalty=0.1044, clustering_loss=0.0190, disc_loss=1.5738, elbo=529.5602, epoch=552/2001, vae_loss=529.6837]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 553/2000 [00:14<00:36, 39.31it/s, adv_loss=-1.5737, bio_penalty=0.1071, clustering_loss=0.0190, disc_loss=1.5737, elbo=529.1856, epoch=553/2001, vae_loss=529.3117]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 554/2000 [00:14<00:36, 39.31it/s, adv_loss=-1.5734, bio_penalty=0.1061, clustering_loss=0.0190, disc_loss=1.5734, elbo=530.0736, epoch=554/2001, vae_loss=530.1987]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 555/2000 [00:14<00:36, 39.19it/s, adv_loss=-1.5734, bio_penalty=0.1061, clustering_loss=0.0190, disc_loss=1.5734, elbo=530.0736, epoch=554/2001, vae_loss=530.1987]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 555/2000 [00:14<00:36, 39.19it/s, adv_loss=-1.5735, bio_penalty=0.1068, clustering_loss=0.0190, disc_loss=1.5735, elbo=530.0227, epoch=555/2001, vae_loss=530.1486]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 556/2000 [00:14<00:36, 39.19it/s, adv_loss=-1.5723, bio_penalty=0.1088, clustering_loss=0.0190, disc_loss=1.5723, elbo=530.9509, epoch=556/2001, vae_loss=531.0787]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 557/2000 [00:14<00:36, 39.19it/s, adv_loss=-1.5729, bio_penalty=0.1100, clustering_loss=0.0190, disc_loss=1.5729, elbo=525.5430, epoch=557/2001, vae_loss=525.6721]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 558/2000 [00:14<00:36, 39.19it/s, adv_loss=-1.5715, bio_penalty=0.1126, clustering_loss=0.0190, disc_loss=1.5715, elbo=528.4360, epoch=558/2001, vae_loss=528.5677]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 559/2000 [00:14<00:36, 39.02it/s, adv_loss=-1.5715, bio_penalty=0.1126, clustering_loss=0.0190, disc_loss=1.5715, elbo=528.4360, epoch=558/2001, vae_loss=528.5677]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 559/2000 [00:14<00:36, 39.02it/s, adv_loss=-1.5715, bio_penalty=0.1162, clustering_loss=0.0190, disc_loss=1.5715, elbo=524.5654, epoch=559/2001, vae_loss=524.7007]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 560/2000 [00:14<00:36, 39.02it/s, adv_loss=-1.5717, bio_penalty=0.1187, clustering_loss=0.0190, disc_loss=1.5717, elbo=522.6205, epoch=560/2001, vae_loss=522.7582]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 561/2000 [00:14<00:36, 39.02it/s, adv_loss=-1.5719, bio_penalty=0.1175, clustering_loss=0.0190, disc_loss=1.5719, elbo=523.5443, epoch=561/2001, vae_loss=523.6808]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 562/2000 [00:14<00:36, 39.02it/s, adv_loss=-1.5722, bio_penalty=0.1152, clustering_loss=0.0190, disc_loss=1.5722, elbo=523.2497, epoch=562/2001, vae_loss=523.3840]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 563/2000 [00:14<00:36, 39.18it/s, adv_loss=-1.5722, bio_penalty=0.1152, clustering_loss=0.0190, disc_loss=1.5722, elbo=523.2497, epoch=562/2001, vae_loss=523.3840]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 563/2000 [00:14<00:36, 39.18it/s, adv_loss=-1.5714, bio_penalty=0.1124, clustering_loss=0.0190, disc_loss=1.5714, elbo=521.0029, epoch=563/2001, vae_loss=521.1343]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 564/2000 [00:14<00:36, 39.18it/s, adv_loss=-1.5712, bio_penalty=0.1097, clustering_loss=0.0190, disc_loss=1.5712, elbo=517.6151, epoch=564/2001, vae_loss=517.7438]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 565/2000 [00:14<00:36, 39.18it/s, adv_loss=-1.5701, bio_penalty=0.1073, clustering_loss=0.0190, disc_loss=1.5701, elbo=519.6818, epoch=565/2001, vae_loss=519.8081]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 566/2000 [00:14<00:36, 39.18it/s, adv_loss=-1.5711, bio_penalty=0.1057, clustering_loss=0.0190, disc_loss=1.5711, elbo=517.2211, epoch=566/2001, vae_loss=517.3458]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 567/2000 [00:14<00:36, 38.91it/s, adv_loss=-1.5711, bio_penalty=0.1057, clustering_loss=0.0190, disc_loss=1.5711, elbo=517.2211, epoch=566/2001, vae_loss=517.3458]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 567/2000 [00:14<00:36, 38.91it/s, adv_loss=-1.5706, bio_penalty=0.1061, clustering_loss=0.0190, disc_loss=1.5706, elbo=516.9017, epoch=567/2001, vae_loss=517.0269]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 568/2000 [00:14<00:36, 38.91it/s, adv_loss=-1.5702, bio_penalty=0.1067, clustering_loss=0.0190, disc_loss=1.5702, elbo=517.3440, epoch=568/2001, vae_loss=517.4698]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 569/2000 [00:14<00:36, 38.91it/s, adv_loss=-1.5710, bio_penalty=0.1064, clustering_loss=0.0190, disc_loss=1.5710, elbo=518.5548, epoch=569/2001, vae_loss=518.6802]
Training: Embeddings batch effect correction using adversrial training:  28%|██▊       | 570/2000 [00:14<00:36, 38.91it/s, adv_loss=-1.5703, bio_penalty=0.1053, clustering_loss=0.0190, disc_loss=1.5703, elbo=513.7179, epoch=570/2001, vae_loss=513.8422]
Training: Embeddings batch effect correction using adversrial training:  29%|██▊       | 571/2000 [00:14<00:36, 39.03it/s, adv_loss=-1.5703, bio_penalty=0.1053, clustering_loss=0.0190, disc_loss=1.5703, elbo=513.7179, epoch=570/2001, vae_loss=513.8422]
Training: Embeddings batch effect correction using adversrial training:  29%|██▊       | 571/2000 [00:14<00:36, 39.03it/s, adv_loss=-1.5706, bio_penalty=0.1049, clustering_loss=0.0190, disc_loss=1.5706, elbo=516.5622, epoch=571/2001, vae_loss=516.6862]
Training: Embeddings batch effect correction using adversrial training:  29%|██▊       | 572/2000 [00:14<00:36, 39.03it/s, adv_loss=-1.5705, bio_penalty=0.1054, clustering_loss=0.0190, disc_loss=1.5705, elbo=515.2299, epoch=572/2001, vae_loss=515.3543]
Training: Embeddings batch effect correction using adversrial training:  29%|██▊       | 573/2000 [00:14<00:36, 39.03it/s, adv_loss=-1.5708, bio_penalty=0.1059, clustering_loss=0.0190, disc_loss=1.5708, elbo=512.4370, epoch=573/2001, vae_loss=512.5619]
Training: Embeddings batch effect correction using adversrial training:  29%|██▊       | 574/2000 [00:14<00:36, 39.03it/s, adv_loss=-1.5703, bio_penalty=0.1070, clustering_loss=0.0190, disc_loss=1.5703, elbo=512.7939, epoch=574/2001, vae_loss=512.9200]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 575/2000 [00:14<00:36, 39.21it/s, adv_loss=-1.5703, bio_penalty=0.1070, clustering_loss=0.0190, disc_loss=1.5703, elbo=512.7939, epoch=574/2001, vae_loss=512.9200]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 575/2000 [00:14<00:36, 39.21it/s, adv_loss=-1.5705, bio_penalty=0.1066, clustering_loss=0.0190, disc_loss=1.5705, elbo=515.9794, epoch=575/2001, vae_loss=516.1051]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 576/2000 [00:14<00:36, 39.21it/s, adv_loss=-1.5702, bio_penalty=0.1065, clustering_loss=0.0190, disc_loss=1.5702, elbo=511.9311, epoch=576/2001, vae_loss=512.0566]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 577/2000 [00:14<00:36, 39.21it/s, adv_loss=-1.5702, bio_penalty=0.1055, clustering_loss=0.0190, disc_loss=1.5702, elbo=511.8311, epoch=577/2001, vae_loss=511.9556]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 578/2000 [00:14<00:36, 39.21it/s, adv_loss=-1.5699, bio_penalty=0.1052, clustering_loss=0.0190, disc_loss=1.5699, elbo=508.8358, epoch=578/2001, vae_loss=508.9600]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 579/2000 [00:14<00:36, 39.17it/s, adv_loss=-1.5699, bio_penalty=0.1052, clustering_loss=0.0190, disc_loss=1.5699, elbo=508.8358, epoch=578/2001, vae_loss=508.9600]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 579/2000 [00:14<00:36, 39.17it/s, adv_loss=-1.5697, bio_penalty=0.1042, clustering_loss=0.0190, disc_loss=1.5697, elbo=510.3076, epoch=579/2001, vae_loss=510.4308]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 580/2000 [00:14<00:36, 39.17it/s, adv_loss=-1.5698, bio_penalty=0.1021, clustering_loss=0.0190, disc_loss=1.5698, elbo=508.7246, epoch=580/2001, vae_loss=508.8458]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 581/2000 [00:14<00:36, 39.17it/s, adv_loss=-1.5704, bio_penalty=0.1006, clustering_loss=0.0190, disc_loss=1.5704, elbo=510.6282, epoch=581/2001, vae_loss=510.7478]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 582/2000 [00:14<00:36, 39.17it/s, adv_loss=-1.5695, bio_penalty=0.0995, clustering_loss=0.0190, disc_loss=1.5695, elbo=505.0828, epoch=582/2001, vae_loss=505.2014]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 583/2000 [00:14<00:36, 39.26it/s, adv_loss=-1.5695, bio_penalty=0.0995, clustering_loss=0.0190, disc_loss=1.5695, elbo=505.0828, epoch=582/2001, vae_loss=505.2014]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 583/2000 [00:14<00:36, 39.26it/s, adv_loss=-1.5704, bio_penalty=0.0994, clustering_loss=0.0190, disc_loss=1.5704, elbo=509.2327, epoch=583/2001, vae_loss=509.3511]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 584/2000 [00:14<00:36, 39.26it/s, adv_loss=-1.5706, bio_penalty=0.0992, clustering_loss=0.0190, disc_loss=1.5706, elbo=508.1740, epoch=584/2001, vae_loss=508.2923]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 585/2000 [00:14<00:36, 39.26it/s, adv_loss=-1.5711, bio_penalty=0.0997, clustering_loss=0.0190, disc_loss=1.5711, elbo=508.6412, epoch=585/2001, vae_loss=508.7599]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 586/2000 [00:15<00:36, 39.26it/s, adv_loss=-1.5715, bio_penalty=0.1008, clustering_loss=0.0190, disc_loss=1.5715, elbo=508.0752, epoch=586/2001, vae_loss=508.1951]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 587/2000 [00:15<00:35, 39.26it/s, adv_loss=-1.5713, bio_penalty=0.1036, clustering_loss=0.0190, disc_loss=1.5713, elbo=504.4841, epoch=587/2001, vae_loss=504.6068]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 588/2000 [00:15<00:35, 39.70it/s, adv_loss=-1.5713, bio_penalty=0.1036, clustering_loss=0.0190, disc_loss=1.5713, elbo=504.4841, epoch=587/2001, vae_loss=504.6068]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 588/2000 [00:15<00:35, 39.70it/s, adv_loss=-1.5707, bio_penalty=0.1075, clustering_loss=0.0190, disc_loss=1.5707, elbo=505.6341, epoch=588/2001, vae_loss=505.7607]
Training: Embeddings batch effect correction using adversrial training:  29%|██▉       | 589/2000 [00:15<00:35, 39.70it/s, adv_loss=-1.5712, bio_penalty=0.1106, clustering_loss=0.0190, disc_loss=1.5712, elbo=508.6230, epoch=589/2001, vae_loss=508.7526]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 590/2000 [00:15<00:35, 39.70it/s, adv_loss=-1.5724, bio_penalty=0.1129, clustering_loss=0.0190, disc_loss=1.5724, elbo=506.1324, epoch=590/2001, vae_loss=506.2643]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 591/2000 [00:15<00:35, 39.70it/s, adv_loss=-1.5729, bio_penalty=0.1172, clustering_loss=0.0190, disc_loss=1.5729, elbo=505.4929, epoch=591/2001, vae_loss=505.6291]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 592/2000 [00:15<00:35, 39.60it/s, adv_loss=-1.5729, bio_penalty=0.1172, clustering_loss=0.0190, disc_loss=1.5729, elbo=505.4929, epoch=591/2001, vae_loss=505.6291]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 592/2000 [00:15<00:35, 39.60it/s, adv_loss=-1.5727, bio_penalty=0.1236, clustering_loss=0.0190, disc_loss=1.5727, elbo=514.2236, epoch=592/2001, vae_loss=514.3663]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 593/2000 [00:15<00:35, 39.60it/s, adv_loss=-1.5730, bio_penalty=0.1270, clustering_loss=0.0190, disc_loss=1.5730, elbo=506.3668, epoch=593/2001, vae_loss=506.5128]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 594/2000 [00:15<00:35, 39.60it/s, adv_loss=-1.5735, bio_penalty=0.1293, clustering_loss=0.0190, disc_loss=1.5735, elbo=506.6227, epoch=594/2001, vae_loss=506.7711]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 595/2000 [00:15<00:35, 39.60it/s, adv_loss=-1.5731, bio_penalty=0.1303, clustering_loss=0.0190, disc_loss=1.5731, elbo=507.3861, epoch=595/2001, vae_loss=507.5355]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 596/2000 [00:15<00:35, 39.62it/s, adv_loss=-1.5731, bio_penalty=0.1303, clustering_loss=0.0190, disc_loss=1.5731, elbo=507.3861, epoch=595/2001, vae_loss=507.5355]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 596/2000 [00:15<00:35, 39.62it/s, adv_loss=-1.5736, bio_penalty=0.1326, clustering_loss=0.0190, disc_loss=1.5736, elbo=506.6183, epoch=596/2001, vae_loss=506.7699]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 597/2000 [00:15<00:35, 39.62it/s, adv_loss=-1.5739, bio_penalty=0.1352, clustering_loss=0.0190, disc_loss=1.5739, elbo=506.7216, epoch=597/2001, vae_loss=506.8758]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 598/2000 [00:15<00:35, 39.62it/s, adv_loss=-1.5728, bio_penalty=0.1379, clustering_loss=0.0190, disc_loss=1.5728, elbo=506.5373, epoch=598/2001, vae_loss=506.6942]
Training: Embeddings batch effect correction using adversrial training:  30%|██▉       | 599/2000 [00:15<00:35, 39.62it/s, adv_loss=-1.5737, bio_penalty=0.1399, clustering_loss=0.0190, disc_loss=1.5737, elbo=507.4971, epoch=599/2001, vae_loss=507.6561]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 600/2000 [00:15<00:35, 39.71it/s, adv_loss=-1.5737, bio_penalty=0.1399, clustering_loss=0.0190, disc_loss=1.5737, elbo=507.4971, epoch=599/2001, vae_loss=507.6561]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 600/2000 [00:15<00:35, 39.71it/s, adv_loss=-1.5744, bio_penalty=0.1405, clustering_loss=0.0190, disc_loss=1.5744, elbo=506.9460, epoch=600/2001, vae_loss=507.1055]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 601/2000 [00:15<00:35, 39.71it/s, adv_loss=-1.5740, bio_penalty=0.1425, clustering_loss=0.0190, disc_loss=1.5740, elbo=508.1455, epoch=601/2001, vae_loss=508.3070]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 602/2000 [00:15<00:35, 39.71it/s, adv_loss=-1.5740, bio_penalty=0.1467, clustering_loss=0.0190, disc_loss=1.5740, elbo=504.0916, epoch=602/2001, vae_loss=504.2573]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 603/2000 [00:15<00:35, 39.71it/s, adv_loss=-1.5738, bio_penalty=0.1511, clustering_loss=0.0190, disc_loss=1.5738, elbo=505.1569, epoch=603/2001, vae_loss=505.3271]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 604/2000 [00:15<00:35, 39.48it/s, adv_loss=-1.5738, bio_penalty=0.1511, clustering_loss=0.0190, disc_loss=1.5738, elbo=505.1569, epoch=603/2001, vae_loss=505.3271]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 604/2000 [00:15<00:35, 39.48it/s, adv_loss=-1.5738, bio_penalty=0.1539, clustering_loss=0.0190, disc_loss=1.5738, elbo=507.8226, epoch=604/2001, vae_loss=507.9956]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 605/2000 [00:15<00:35, 39.48it/s, adv_loss=-1.5734, bio_penalty=0.1547, clustering_loss=0.0190, disc_loss=1.5734, elbo=506.3840, epoch=605/2001, vae_loss=506.5577]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 606/2000 [00:15<00:35, 39.48it/s, adv_loss=-1.5738, bio_penalty=0.1554, clustering_loss=0.0190, disc_loss=1.5738, elbo=507.1338, epoch=606/2001, vae_loss=507.3082]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 607/2000 [00:15<00:35, 39.48it/s, adv_loss=-1.5735, bio_penalty=0.1549, clustering_loss=0.0190, disc_loss=1.5735, elbo=506.5394, epoch=607/2001, vae_loss=506.7133]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 608/2000 [00:15<00:35, 39.48it/s, adv_loss=-1.5730, bio_penalty=0.1533, clustering_loss=0.0190, disc_loss=1.5730, elbo=503.3341, epoch=608/2001, vae_loss=503.5065]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 609/2000 [00:15<00:34, 39.83it/s, adv_loss=-1.5730, bio_penalty=0.1533, clustering_loss=0.0190, disc_loss=1.5730, elbo=503.3341, epoch=608/2001, vae_loss=503.5065]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 609/2000 [00:15<00:34, 39.83it/s, adv_loss=-1.5727, bio_penalty=0.1515, clustering_loss=0.0190, disc_loss=1.5727, elbo=509.1464, epoch=609/2001, vae_loss=509.3169]
Training: Embeddings batch effect correction using adversrial training:  30%|███       | 610/2000 [00:15<00:34, 39.83it/s, adv_loss=-1.5725, bio_penalty=0.1464, clustering_loss=0.0190, disc_loss=1.5725, elbo=503.2810, epoch=610/2001, vae_loss=503.4465]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 611/2000 [00:15<00:34, 39.83it/s, adv_loss=-1.5721, bio_penalty=0.1416, clustering_loss=0.0190, disc_loss=1.5721, elbo=505.2241, epoch=611/2001, vae_loss=505.3848]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 612/2000 [00:15<00:34, 39.83it/s, adv_loss=-1.5728, bio_penalty=0.1387, clustering_loss=0.0190, disc_loss=1.5728, elbo=503.2245, epoch=612/2001, vae_loss=503.3823]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 613/2000 [00:15<00:34, 39.83it/s, adv_loss=-1.5725, bio_penalty=0.1368, clustering_loss=0.0190, disc_loss=1.5725, elbo=502.8262, epoch=613/2001, vae_loss=502.9821]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 614/2000 [00:15<00:34, 40.23it/s, adv_loss=-1.5725, bio_penalty=0.1368, clustering_loss=0.0190, disc_loss=1.5725, elbo=502.8262, epoch=613/2001, vae_loss=502.9821]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 614/2000 [00:15<00:34, 40.23it/s, adv_loss=-1.5721, bio_penalty=0.1365, clustering_loss=0.0190, disc_loss=1.5721, elbo=503.8406, epoch=614/2001, vae_loss=503.9962]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 615/2000 [00:15<00:34, 40.23it/s, adv_loss=-1.5720, bio_penalty=0.1368, clustering_loss=0.0190, disc_loss=1.5720, elbo=502.2888, epoch=615/2001, vae_loss=502.4446]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 616/2000 [00:15<00:34, 40.23it/s, adv_loss=-1.5717, bio_penalty=0.1362, clustering_loss=0.0190, disc_loss=1.5717, elbo=501.8950, epoch=616/2001, vae_loss=502.0503]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 617/2000 [00:15<00:34, 40.23it/s, adv_loss=-1.5718, bio_penalty=0.1327, clustering_loss=0.0190, disc_loss=1.5718, elbo=500.8526, epoch=617/2001, vae_loss=501.0043]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 618/2000 [00:15<00:34, 40.23it/s, adv_loss=-1.5714, bio_penalty=0.1264, clustering_loss=0.0190, disc_loss=1.5714, elbo=503.0532, epoch=618/2001, vae_loss=503.1986]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 619/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5714, bio_penalty=0.1264, clustering_loss=0.0190, disc_loss=1.5714, elbo=503.0532, epoch=618/2001, vae_loss=503.1986]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 619/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5715, bio_penalty=0.1203, clustering_loss=0.0190, disc_loss=1.5715, elbo=501.2573, epoch=619/2001, vae_loss=501.3966]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 620/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5713, bio_penalty=0.1174, clustering_loss=0.0190, disc_loss=1.5713, elbo=501.9249, epoch=620/2001, vae_loss=502.0613]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 621/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5714, bio_penalty=0.1154, clustering_loss=0.0190, disc_loss=1.5714, elbo=499.9150, epoch=621/2001, vae_loss=500.0495]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 622/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5714, bio_penalty=0.1112, clustering_loss=0.0190, disc_loss=1.5714, elbo=498.7204, epoch=622/2001, vae_loss=498.8506]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 623/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5713, bio_penalty=0.1053, clustering_loss=0.0190, disc_loss=1.5713, elbo=499.6106, epoch=623/2001, vae_loss=499.7349]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 624/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5713, bio_penalty=0.1053, clustering_loss=0.0190, disc_loss=1.5713, elbo=499.6106, epoch=623/2001, vae_loss=499.7349]
Training: Embeddings batch effect correction using adversrial training:  31%|███       | 624/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5712, bio_penalty=0.1008, clustering_loss=0.0190, disc_loss=1.5712, elbo=507.1275, epoch=624/2001, vae_loss=507.2473]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 625/2000 [00:15<00:34, 40.07it/s, adv_loss=-1.5711, bio_penalty=0.0986, clustering_loss=0.0190, disc_loss=1.5711, elbo=499.8730, epoch=625/2001, vae_loss=499.9906]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 626/2000 [00:16<00:34, 40.07it/s, adv_loss=-1.5710, bio_penalty=0.0960, clustering_loss=0.0190, disc_loss=1.5710, elbo=499.1181, epoch=626/2001, vae_loss=499.2331]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 627/2000 [00:16<00:34, 40.07it/s, adv_loss=-1.5710, bio_penalty=0.0948, clustering_loss=0.0190, disc_loss=1.5710, elbo=499.3427, epoch=627/2001, vae_loss=499.4565]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 628/2000 [00:16<00:34, 40.07it/s, adv_loss=-1.5712, bio_penalty=0.0957, clustering_loss=0.0190, disc_loss=1.5712, elbo=498.1656, epoch=628/2001, vae_loss=498.2804]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 629/2000 [00:16<00:34, 40.15it/s, adv_loss=-1.5712, bio_penalty=0.0957, clustering_loss=0.0190, disc_loss=1.5712, elbo=498.1656, epoch=628/2001, vae_loss=498.2804]
Training: Embeddings batch effect correction using adversrial training:  31%|███▏      | 629/2000 [00:16<00:34, 40.15it/s, adv_loss=-1.5710, bio_penalty=0.0930, clustering_loss=0.0190, disc_loss=1.5710, elbo=497.4793, epoch=629/2001, vae_loss=497.5914]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 630/2000 [00:16<00:34, 40.15it/s, adv_loss=-1.5711, bio_penalty=0.0894, clustering_loss=0.0190, disc_loss=1.5711, elbo=498.0468, epoch=630/2001, vae_loss=498.1552]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 631/2000 [00:16<00:34, 40.15it/s, adv_loss=-1.5709, bio_penalty=0.0827, clustering_loss=0.0190, disc_loss=1.5709, elbo=497.4196, epoch=631/2001, vae_loss=497.5214]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 632/2000 [00:16<00:34, 40.15it/s, adv_loss=-1.5710, bio_penalty=0.0775, clustering_loss=0.0190, disc_loss=1.5710, elbo=497.4745, epoch=632/2001, vae_loss=497.5711]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 633/2000 [00:16<00:34, 40.15it/s, adv_loss=-1.5706, bio_penalty=0.0753, clustering_loss=0.0190, disc_loss=1.5706, elbo=495.1630, epoch=633/2001, vae_loss=495.2573]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 634/2000 [00:16<00:34, 40.12it/s, adv_loss=-1.5706, bio_penalty=0.0753, clustering_loss=0.0190, disc_loss=1.5706, elbo=495.1630, epoch=633/2001, vae_loss=495.2573]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 634/2000 [00:16<00:34, 40.12it/s, adv_loss=-1.5709, bio_penalty=0.0755, clustering_loss=0.0190, disc_loss=1.5709, elbo=494.2900, epoch=634/2001, vae_loss=494.3846]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 635/2000 [00:16<00:34, 40.12it/s, adv_loss=-1.5709, bio_penalty=0.0759, clustering_loss=0.0190, disc_loss=1.5709, elbo=495.5534, epoch=635/2001, vae_loss=495.6484]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 636/2000 [00:16<00:34, 40.12it/s, adv_loss=-1.5708, bio_penalty=0.0729, clustering_loss=0.0190, disc_loss=1.5708, elbo=494.8237, epoch=636/2001, vae_loss=494.9156]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 637/2000 [00:16<00:33, 40.12it/s, adv_loss=-1.5710, bio_penalty=0.0689, clustering_loss=0.0190, disc_loss=1.5710, elbo=493.1611, epoch=637/2001, vae_loss=493.2491]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 638/2000 [00:16<00:33, 40.12it/s, adv_loss=-1.5706, bio_penalty=0.0664, clustering_loss=0.0190, disc_loss=1.5706, elbo=496.4947, epoch=638/2001, vae_loss=496.5801]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 639/2000 [00:16<00:34, 39.98it/s, adv_loss=-1.5706, bio_penalty=0.0664, clustering_loss=0.0190, disc_loss=1.5706, elbo=496.4947, epoch=638/2001, vae_loss=496.5801]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 639/2000 [00:16<00:34, 39.98it/s, adv_loss=-1.5709, bio_penalty=0.0642, clustering_loss=0.0190, disc_loss=1.5709, elbo=495.7626, epoch=639/2001, vae_loss=495.8459]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 640/2000 [00:16<00:34, 39.98it/s, adv_loss=-1.5708, bio_penalty=0.0629, clustering_loss=0.0190, disc_loss=1.5708, elbo=496.8415, epoch=640/2001, vae_loss=496.9234]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 641/2000 [00:16<00:33, 39.98it/s, adv_loss=-1.5707, bio_penalty=0.0631, clustering_loss=0.0190, disc_loss=1.5707, elbo=493.4641, epoch=641/2001, vae_loss=493.5463]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 642/2000 [00:16<00:33, 39.98it/s, adv_loss=-1.5707, bio_penalty=0.0646, clustering_loss=0.0190, disc_loss=1.5707, elbo=494.1075, epoch=642/2001, vae_loss=494.1911]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 643/2000 [00:16<00:34, 39.85it/s, adv_loss=-1.5707, bio_penalty=0.0646, clustering_loss=0.0190, disc_loss=1.5707, elbo=494.1075, epoch=642/2001, vae_loss=494.1911]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 643/2000 [00:16<00:34, 39.85it/s, adv_loss=-1.5710, bio_penalty=0.0645, clustering_loss=0.0190, disc_loss=1.5710, elbo=493.6639, epoch=643/2001, vae_loss=493.7474]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 644/2000 [00:16<00:34, 39.85it/s, adv_loss=-1.5708, bio_penalty=0.0609, clustering_loss=0.0190, disc_loss=1.5708, elbo=495.5583, epoch=644/2001, vae_loss=495.6382]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 645/2000 [00:16<00:34, 39.85it/s, adv_loss=-1.5707, bio_penalty=0.0569, clustering_loss=0.0190, disc_loss=1.5707, elbo=493.9294, epoch=645/2001, vae_loss=494.0053]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 646/2000 [00:16<00:33, 39.85it/s, adv_loss=-1.5710, bio_penalty=0.0537, clustering_loss=0.0190, disc_loss=1.5710, elbo=492.6707, epoch=646/2001, vae_loss=492.7433]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 647/2000 [00:16<00:34, 39.27it/s, adv_loss=-1.5710, bio_penalty=0.0537, clustering_loss=0.0190, disc_loss=1.5710, elbo=492.6707, epoch=646/2001, vae_loss=492.7433]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 647/2000 [00:16<00:34, 39.27it/s, adv_loss=-1.5707, bio_penalty=0.0534, clustering_loss=0.0190, disc_loss=1.5707, elbo=489.8409, epoch=647/2001, vae_loss=489.9134]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 648/2000 [00:16<00:34, 39.27it/s, adv_loss=-1.5707, bio_penalty=0.0537, clustering_loss=0.0190, disc_loss=1.5707, elbo=493.6775, epoch=648/2001, vae_loss=493.7502]
Training: Embeddings batch effect correction using adversrial training:  32%|███▏      | 649/2000 [00:16<00:34, 39.27it/s, adv_loss=-1.5705, bio_penalty=0.0539, clustering_loss=0.0190, disc_loss=1.5705, elbo=500.5593, epoch=649/2001, vae_loss=500.6322]
Training: Embeddings batch effect correction using adversrial training:  32%|███▎      | 650/2000 [00:16<00:34, 39.27it/s, adv_loss=-1.5709, bio_penalty=0.0534, clustering_loss=0.0190, disc_loss=1.5709, elbo=493.4216, epoch=650/2001, vae_loss=493.4941]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 651/2000 [00:16<00:34, 39.00it/s, adv_loss=-1.5709, bio_penalty=0.0534, clustering_loss=0.0190, disc_loss=1.5709, elbo=493.4216, epoch=650/2001, vae_loss=493.4941]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 651/2000 [00:16<00:34, 39.00it/s, adv_loss=-1.5706, bio_penalty=0.0510, clustering_loss=0.0190, disc_loss=1.5706, elbo=490.3852, epoch=651/2001, vae_loss=490.4552]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 652/2000 [00:16<00:34, 39.00it/s, adv_loss=-1.5704, bio_penalty=0.0495, clustering_loss=0.0190, disc_loss=1.5704, elbo=494.5758, epoch=652/2001, vae_loss=494.6443]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 653/2000 [00:16<00:34, 39.00it/s, adv_loss=-1.5707, bio_penalty=0.0488, clustering_loss=0.0190, disc_loss=1.5707, elbo=492.1505, epoch=653/2001, vae_loss=492.2183]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 654/2000 [00:16<00:34, 39.00it/s, adv_loss=-1.5709, bio_penalty=0.0496, clustering_loss=0.0190, disc_loss=1.5709, elbo=491.6103, epoch=654/2001, vae_loss=491.6790]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 655/2000 [00:16<00:34, 38.79it/s, adv_loss=-1.5709, bio_penalty=0.0496, clustering_loss=0.0190, disc_loss=1.5709, elbo=491.6103, epoch=654/2001, vae_loss=491.6790]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 655/2000 [00:16<00:34, 38.79it/s, adv_loss=-1.5706, bio_penalty=0.0485, clustering_loss=0.0190, disc_loss=1.5706, elbo=491.6335, epoch=655/2001, vae_loss=491.7010]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 656/2000 [00:16<00:34, 38.79it/s, adv_loss=-1.5705, bio_penalty=0.0445, clustering_loss=0.0190, disc_loss=1.5705, elbo=495.8830, epoch=656/2001, vae_loss=495.9465]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 657/2000 [00:16<00:34, 38.79it/s, adv_loss=-1.5708, bio_penalty=0.0426, clustering_loss=0.0190, disc_loss=1.5708, elbo=492.2644, epoch=657/2001, vae_loss=492.3261]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 658/2000 [00:16<00:34, 38.79it/s, adv_loss=-1.5705, bio_penalty=0.0426, clustering_loss=0.0190, disc_loss=1.5705, elbo=491.7744, epoch=658/2001, vae_loss=491.8360]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 659/2000 [00:16<00:34, 38.66it/s, adv_loss=-1.5705, bio_penalty=0.0426, clustering_loss=0.0190, disc_loss=1.5705, elbo=491.7744, epoch=658/2001, vae_loss=491.8360]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 659/2000 [00:16<00:34, 38.66it/s, adv_loss=-1.5705, bio_penalty=0.0437, clustering_loss=0.0190, disc_loss=1.5705, elbo=493.5645, epoch=659/2001, vae_loss=493.6272]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 660/2000 [00:16<00:34, 38.66it/s, adv_loss=-1.5706, bio_penalty=0.0483, clustering_loss=0.0190, disc_loss=1.5706, elbo=489.4901, epoch=660/2001, vae_loss=489.5574]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 661/2000 [00:16<00:34, 38.66it/s, adv_loss=-1.5707, bio_penalty=0.0501, clustering_loss=0.0190, disc_loss=1.5707, elbo=490.5641, epoch=661/2001, vae_loss=490.6333]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 662/2000 [00:16<00:34, 38.66it/s, adv_loss=-1.5704, bio_penalty=0.0465, clustering_loss=0.0190, disc_loss=1.5704, elbo=492.7506, epoch=662/2001, vae_loss=492.8161]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 663/2000 [00:16<00:34, 38.83it/s, adv_loss=-1.5704, bio_penalty=0.0465, clustering_loss=0.0190, disc_loss=1.5704, elbo=492.7506, epoch=662/2001, vae_loss=492.8161]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 663/2000 [00:16<00:34, 38.83it/s, adv_loss=-1.5704, bio_penalty=0.0430, clustering_loss=0.0190, disc_loss=1.5704, elbo=489.9532, epoch=663/2001, vae_loss=490.0153]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 664/2000 [00:16<00:34, 38.83it/s, adv_loss=-1.5703, bio_penalty=0.0415, clustering_loss=0.0190, disc_loss=1.5703, elbo=488.6753, epoch=664/2001, vae_loss=488.7358]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 665/2000 [00:17<00:34, 38.83it/s, adv_loss=-1.5702, bio_penalty=0.0423, clustering_loss=0.0190, disc_loss=1.5702, elbo=489.6780, epoch=665/2001, vae_loss=489.7394]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 666/2000 [00:17<00:34, 38.83it/s, adv_loss=-1.5705, bio_penalty=0.0438, clustering_loss=0.0190, disc_loss=1.5705, elbo=487.5469, epoch=666/2001, vae_loss=487.6098]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 667/2000 [00:17<00:34, 38.90it/s, adv_loss=-1.5705, bio_penalty=0.0438, clustering_loss=0.0190, disc_loss=1.5705, elbo=487.5469, epoch=666/2001, vae_loss=487.6098]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 667/2000 [00:17<00:34, 38.90it/s, adv_loss=-1.5705, bio_penalty=0.0446, clustering_loss=0.0190, disc_loss=1.5705, elbo=490.4621, epoch=667/2001, vae_loss=490.5257]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 668/2000 [00:17<00:34, 38.90it/s, adv_loss=-1.5705, bio_penalty=0.0451, clustering_loss=0.0190, disc_loss=1.5705, elbo=488.2719, epoch=668/2001, vae_loss=488.3361]
Training: Embeddings batch effect correction using adversrial training:  33%|███▎      | 669/2000 [00:17<00:34, 38.90it/s, adv_loss=-1.5702, bio_penalty=0.0463, clustering_loss=0.0190, disc_loss=1.5702, elbo=489.8550, epoch=669/2001, vae_loss=489.9204]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 670/2000 [00:17<00:34, 38.90it/s, adv_loss=-1.5702, bio_penalty=0.0476, clustering_loss=0.0190, disc_loss=1.5702, elbo=489.6303, epoch=670/2001, vae_loss=489.6969]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 671/2000 [00:17<00:34, 38.78it/s, adv_loss=-1.5702, bio_penalty=0.0476, clustering_loss=0.0190, disc_loss=1.5702, elbo=489.6303, epoch=670/2001, vae_loss=489.6969]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 671/2000 [00:17<00:34, 38.78it/s, adv_loss=-1.5704, bio_penalty=0.0483, clustering_loss=0.0190, disc_loss=1.5704, elbo=487.6637, epoch=671/2001, vae_loss=487.7311]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 672/2000 [00:17<00:34, 38.78it/s, adv_loss=-1.5704, bio_penalty=0.0485, clustering_loss=0.0190, disc_loss=1.5704, elbo=487.8448, epoch=672/2001, vae_loss=487.9124]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 673/2000 [00:17<00:34, 38.78it/s, adv_loss=-1.5704, bio_penalty=0.0504, clustering_loss=0.0190, disc_loss=1.5704, elbo=490.6096, epoch=673/2001, vae_loss=490.6790]
Training: Embeddings batch effect correction using adversrial training:  34%|███▎      | 674/2000 [00:17<00:34, 38.78it/s, adv_loss=-1.5703, bio_penalty=0.0519, clustering_loss=0.0190, disc_loss=1.5703, elbo=491.5134, epoch=674/2001, vae_loss=491.5843]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 675/2000 [00:17<00:34, 38.86it/s, adv_loss=-1.5703, bio_penalty=0.0519, clustering_loss=0.0190, disc_loss=1.5703, elbo=491.5134, epoch=674/2001, vae_loss=491.5843]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 675/2000 [00:17<00:34, 38.86it/s, adv_loss=-1.5702, bio_penalty=0.0515, clustering_loss=0.0190, disc_loss=1.5702, elbo=489.5390, epoch=675/2001, vae_loss=489.6095]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 676/2000 [00:17<00:34, 38.86it/s, adv_loss=-1.5700, bio_penalty=0.0501, clustering_loss=0.0190, disc_loss=1.5700, elbo=488.0420, epoch=676/2001, vae_loss=488.1111]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 677/2000 [00:17<00:34, 38.86it/s, adv_loss=-1.5700, bio_penalty=0.0531, clustering_loss=0.0190, disc_loss=1.5700, elbo=487.1734, epoch=677/2001, vae_loss=487.2455]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 678/2000 [00:17<00:34, 38.86it/s, adv_loss=-1.5703, bio_penalty=0.0516, clustering_loss=0.0190, disc_loss=1.5703, elbo=485.1661, epoch=678/2001, vae_loss=485.2368]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 679/2000 [00:17<00:33, 38.86it/s, adv_loss=-1.5703, bio_penalty=0.0516, clustering_loss=0.0190, disc_loss=1.5703, elbo=485.1661, epoch=678/2001, vae_loss=485.2368]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 679/2000 [00:17<00:33, 38.86it/s, adv_loss=-1.5701, bio_penalty=0.0546, clustering_loss=0.0190, disc_loss=1.5701, elbo=489.3514, epoch=679/2001, vae_loss=489.4250]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 680/2000 [00:17<00:33, 38.86it/s, adv_loss=-1.5700, bio_penalty=0.0522, clustering_loss=0.0190, disc_loss=1.5700, elbo=488.7159, epoch=680/2001, vae_loss=488.7871]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 681/2000 [00:17<00:33, 38.86it/s, adv_loss=-1.5700, bio_penalty=0.0470, clustering_loss=0.0190, disc_loss=1.5700, elbo=487.5432, epoch=681/2001, vae_loss=487.6092]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 682/2000 [00:17<00:33, 38.86it/s, adv_loss=-1.5701, bio_penalty=0.0450, clustering_loss=0.0190, disc_loss=1.5701, elbo=488.8805, epoch=682/2001, vae_loss=488.9445]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 683/2000 [00:17<00:33, 38.90it/s, adv_loss=-1.5701, bio_penalty=0.0450, clustering_loss=0.0190, disc_loss=1.5701, elbo=488.8805, epoch=682/2001, vae_loss=488.9445]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 683/2000 [00:17<00:33, 38.90it/s, adv_loss=-1.5702, bio_penalty=0.0439, clustering_loss=0.0190, disc_loss=1.5702, elbo=487.5885, epoch=683/2001, vae_loss=487.6515]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 684/2000 [00:17<00:33, 38.90it/s, adv_loss=-1.5700, bio_penalty=0.0467, clustering_loss=0.0190, disc_loss=1.5700, elbo=485.3633, epoch=684/2001, vae_loss=485.4290]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 685/2000 [00:17<00:33, 38.90it/s, adv_loss=-1.5701, bio_penalty=0.0487, clustering_loss=0.0190, disc_loss=1.5701, elbo=487.0951, epoch=685/2001, vae_loss=487.1628]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 686/2000 [00:17<00:33, 38.90it/s, adv_loss=-1.5701, bio_penalty=0.0467, clustering_loss=0.0190, disc_loss=1.5701, elbo=485.6982, epoch=686/2001, vae_loss=485.7639]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 687/2000 [00:17<00:33, 38.90it/s, adv_loss=-1.5700, bio_penalty=0.0429, clustering_loss=0.0190, disc_loss=1.5700, elbo=487.3939, epoch=687/2001, vae_loss=487.4558]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 688/2000 [00:17<00:33, 39.34it/s, adv_loss=-1.5700, bio_penalty=0.0429, clustering_loss=0.0190, disc_loss=1.5700, elbo=487.3939, epoch=687/2001, vae_loss=487.4558]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 688/2000 [00:17<00:33, 39.34it/s, adv_loss=-1.5701, bio_penalty=0.0446, clustering_loss=0.0190, disc_loss=1.5701, elbo=484.4793, epoch=688/2001, vae_loss=484.5429]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 689/2000 [00:17<00:33, 39.34it/s, adv_loss=-1.5701, bio_penalty=0.0456, clustering_loss=0.0190, disc_loss=1.5701, elbo=486.3133, epoch=689/2001, vae_loss=486.3779]
Training: Embeddings batch effect correction using adversrial training:  34%|███▍      | 690/2000 [00:17<00:33, 39.34it/s, adv_loss=-1.5701, bio_penalty=0.0479, clustering_loss=0.0190, disc_loss=1.5701, elbo=491.2947, epoch=690/2001, vae_loss=491.3617]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 691/2000 [00:17<00:33, 39.34it/s, adv_loss=-1.5702, bio_penalty=0.0438, clustering_loss=0.0190, disc_loss=1.5702, elbo=493.2726, epoch=691/2001, vae_loss=493.3354]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 692/2000 [00:17<00:33, 39.34it/s, adv_loss=-1.5703, bio_penalty=0.0418, clustering_loss=0.0190, disc_loss=1.5703, elbo=487.3416, epoch=692/2001, vae_loss=487.4024]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 693/2000 [00:17<00:32, 39.64it/s, adv_loss=-1.5703, bio_penalty=0.0418, clustering_loss=0.0190, disc_loss=1.5703, elbo=487.3416, epoch=692/2001, vae_loss=487.4024]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 693/2000 [00:17<00:32, 39.64it/s, adv_loss=-1.5699, bio_penalty=0.0399, clustering_loss=0.0190, disc_loss=1.5699, elbo=487.5323, epoch=693/2001, vae_loss=487.5913]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 694/2000 [00:17<00:32, 39.64it/s, adv_loss=-1.5701, bio_penalty=0.0393, clustering_loss=0.0190, disc_loss=1.5701, elbo=485.6748, epoch=694/2001, vae_loss=485.7331]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 695/2000 [00:17<00:32, 39.64it/s, adv_loss=-1.5702, bio_penalty=0.0384, clustering_loss=0.0190, disc_loss=1.5702, elbo=486.6014, epoch=695/2001, vae_loss=486.6588]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 696/2000 [00:17<00:32, 39.64it/s, adv_loss=-1.5704, bio_penalty=0.0374, clustering_loss=0.0190, disc_loss=1.5704, elbo=487.1752, epoch=696/2001, vae_loss=487.2316]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 697/2000 [00:17<00:32, 39.63it/s, adv_loss=-1.5704, bio_penalty=0.0374, clustering_loss=0.0190, disc_loss=1.5704, elbo=487.1752, epoch=696/2001, vae_loss=487.2316]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 697/2000 [00:17<00:32, 39.63it/s, adv_loss=-1.5703, bio_penalty=0.0377, clustering_loss=0.0190, disc_loss=1.5703, elbo=490.6930, epoch=697/2001, vae_loss=490.7497]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 698/2000 [00:17<00:32, 39.63it/s, adv_loss=-1.5706, bio_penalty=0.0394, clustering_loss=0.0190, disc_loss=1.5706, elbo=490.7622, epoch=698/2001, vae_loss=490.8207]
Training: Embeddings batch effect correction using adversrial training:  35%|███▍      | 699/2000 [00:17<00:32, 39.63it/s, adv_loss=-1.5703, bio_penalty=0.0391, clustering_loss=0.0190, disc_loss=1.5703, elbo=488.4716, epoch=699/2001, vae_loss=488.5297]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 700/2000 [00:17<00:32, 39.63it/s, adv_loss=-1.5703, bio_penalty=0.0417, clustering_loss=0.0190, disc_loss=1.5703, elbo=488.4974, epoch=700/2001, vae_loss=488.5581]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 701/2000 [00:17<00:32, 39.45it/s, adv_loss=-1.5703, bio_penalty=0.0417, clustering_loss=0.0190, disc_loss=1.5703, elbo=488.4974, epoch=700/2001, vae_loss=488.5581]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 701/2000 [00:17<00:32, 39.45it/s, adv_loss=-1.5706, bio_penalty=0.0491, clustering_loss=0.0190, disc_loss=1.5706, elbo=493.0443, epoch=701/2001, vae_loss=493.1125]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 702/2000 [00:17<00:32, 39.45it/s, adv_loss=-1.5704, bio_penalty=0.0421, clustering_loss=0.0190, disc_loss=1.5704, elbo=486.8087, epoch=702/2001, vae_loss=486.8698]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 703/2000 [00:17<00:32, 39.45it/s, adv_loss=-1.5703, bio_penalty=0.0461, clustering_loss=0.0190, disc_loss=1.5703, elbo=492.5437, epoch=703/2001, vae_loss=492.6088]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 704/2000 [00:17<00:32, 39.45it/s, adv_loss=-1.5705, bio_penalty=0.0492, clustering_loss=0.0190, disc_loss=1.5705, elbo=491.1722, epoch=704/2001, vae_loss=491.2404]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 705/2000 [00:17<00:32, 39.38it/s, adv_loss=-1.5705, bio_penalty=0.0492, clustering_loss=0.0190, disc_loss=1.5705, elbo=491.1722, epoch=704/2001, vae_loss=491.2404]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 705/2000 [00:18<00:32, 39.38it/s, adv_loss=-1.5706, bio_penalty=0.0434, clustering_loss=0.0190, disc_loss=1.5706, elbo=495.0114, epoch=705/2001, vae_loss=495.0739]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 706/2000 [00:18<00:32, 39.38it/s, adv_loss=-1.5706, bio_penalty=0.0439, clustering_loss=0.0190, disc_loss=1.5706, elbo=491.7319, epoch=706/2001, vae_loss=491.7948]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 707/2000 [00:18<00:32, 39.38it/s, adv_loss=-1.5707, bio_penalty=0.0438, clustering_loss=0.0190, disc_loss=1.5707, elbo=488.4848, epoch=707/2001, vae_loss=488.5476]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 708/2000 [00:18<00:32, 39.38it/s, adv_loss=-1.5705, bio_penalty=0.0539, clustering_loss=0.0190, disc_loss=1.5705, elbo=491.9540, epoch=708/2001, vae_loss=492.0269]
Training: Embeddings batch effect correction using adversrial training:  35%|███▌      | 709/2000 [00:18<00:32, 39.38it/s, adv_loss=-1.5706, bio_penalty=0.0602, clustering_loss=0.0190, disc_loss=1.5706, elbo=491.1168, epoch=709/2001, vae_loss=491.1960]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 710/2000 [00:18<00:32, 39.64it/s, adv_loss=-1.5706, bio_penalty=0.0602, clustering_loss=0.0190, disc_loss=1.5706, elbo=491.1168, epoch=709/2001, vae_loss=491.1960]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 710/2000 [00:18<00:32, 39.64it/s, adv_loss=-1.5707, bio_penalty=0.0564, clustering_loss=0.0190, disc_loss=1.5707, elbo=499.2267, epoch=710/2001, vae_loss=499.3022]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 711/2000 [00:18<00:32, 39.64it/s, adv_loss=-1.5705, bio_penalty=0.0521, clustering_loss=0.0190, disc_loss=1.5705, elbo=500.7581, epoch=711/2001, vae_loss=500.8292]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 712/2000 [00:18<00:32, 39.64it/s, adv_loss=-1.5706, bio_penalty=0.0597, clustering_loss=0.0190, disc_loss=1.5706, elbo=492.8359, epoch=712/2001, vae_loss=492.9146]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 713/2000 [00:18<00:32, 39.64it/s, adv_loss=-1.5708, bio_penalty=0.0679, clustering_loss=0.0190, disc_loss=1.5708, elbo=494.9996, epoch=713/2001, vae_loss=495.0866]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 714/2000 [00:18<00:32, 39.44it/s, adv_loss=-1.5708, bio_penalty=0.0679, clustering_loss=0.0190, disc_loss=1.5708, elbo=494.9996, epoch=713/2001, vae_loss=495.0866]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 714/2000 [00:18<00:32, 39.44it/s, adv_loss=-1.5705, bio_penalty=0.0699, clustering_loss=0.0190, disc_loss=1.5705, elbo=494.1285, epoch=714/2001, vae_loss=494.2175]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 715/2000 [00:18<00:32, 39.44it/s, adv_loss=-1.5709, bio_penalty=0.0696, clustering_loss=0.0190, disc_loss=1.5709, elbo=495.7852, epoch=715/2001, vae_loss=495.8739]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 716/2000 [00:18<00:32, 39.44it/s, adv_loss=-1.5708, bio_penalty=0.0626, clustering_loss=0.0190, disc_loss=1.5708, elbo=491.6301, epoch=716/2001, vae_loss=491.7118]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 717/2000 [00:18<00:32, 39.44it/s, adv_loss=-1.5709, bio_penalty=0.0703, clustering_loss=0.0190, disc_loss=1.5709, elbo=496.7146, epoch=717/2001, vae_loss=496.8039]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 718/2000 [00:18<00:32, 39.37it/s, adv_loss=-1.5709, bio_penalty=0.0703, clustering_loss=0.0190, disc_loss=1.5709, elbo=496.7146, epoch=717/2001, vae_loss=496.8039]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 718/2000 [00:18<00:32, 39.37it/s, adv_loss=-1.5708, bio_penalty=0.0854, clustering_loss=0.0190, disc_loss=1.5708, elbo=496.4482, epoch=718/2001, vae_loss=496.5527]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 719/2000 [00:18<00:32, 39.37it/s, adv_loss=-1.5708, bio_penalty=0.0564, clustering_loss=0.0190, disc_loss=1.5708, elbo=509.6786, epoch=719/2001, vae_loss=509.7542]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 720/2000 [00:18<00:32, 39.37it/s, adv_loss=-1.5707, bio_penalty=0.0546, clustering_loss=0.0190, disc_loss=1.5707, elbo=504.7142, epoch=720/2001, vae_loss=504.7878]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 721/2000 [00:18<00:32, 39.37it/s, adv_loss=-1.5709, bio_penalty=0.0546, clustering_loss=0.0190, disc_loss=1.5709, elbo=505.1775, epoch=721/2001, vae_loss=505.2511]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 722/2000 [00:18<00:32, 39.28it/s, adv_loss=-1.5709, bio_penalty=0.0546, clustering_loss=0.0190, disc_loss=1.5709, elbo=505.1775, epoch=721/2001, vae_loss=505.2511]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 722/2000 [00:18<00:32, 39.28it/s, adv_loss=-1.5711, bio_penalty=0.0694, clustering_loss=0.0190, disc_loss=1.5711, elbo=508.1812, epoch=722/2001, vae_loss=508.2697]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 723/2000 [00:18<00:32, 39.28it/s, adv_loss=-1.5709, bio_penalty=0.0904, clustering_loss=0.0190, disc_loss=1.5709, elbo=504.1822, epoch=723/2001, vae_loss=504.2916]
Training: Embeddings batch effect correction using adversrial training:  36%|███▌      | 724/2000 [00:18<00:32, 39.28it/s, adv_loss=-1.5707, bio_penalty=0.0789, clustering_loss=0.0190, disc_loss=1.5707, elbo=494.4283, epoch=724/2001, vae_loss=494.5262]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 725/2000 [00:18<00:32, 39.28it/s, adv_loss=-1.5708, bio_penalty=0.0741, clustering_loss=0.0190, disc_loss=1.5708, elbo=501.3690, epoch=725/2001, vae_loss=501.4622]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 726/2000 [00:18<00:32, 39.24it/s, adv_loss=-1.5708, bio_penalty=0.0741, clustering_loss=0.0190, disc_loss=1.5708, elbo=501.3690, epoch=725/2001, vae_loss=501.4622]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 726/2000 [00:18<00:32, 39.24it/s, adv_loss=-1.5709, bio_penalty=0.0788, clustering_loss=0.0190, disc_loss=1.5709, elbo=498.9025, epoch=726/2001, vae_loss=499.0003]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 727/2000 [00:18<00:32, 39.24it/s, adv_loss=-1.5710, bio_penalty=0.0912, clustering_loss=0.0190, disc_loss=1.5710, elbo=499.7888, epoch=727/2001, vae_loss=499.8991]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 728/2000 [00:18<00:32, 39.24it/s, adv_loss=-1.5709, bio_penalty=0.0961, clustering_loss=0.0190, disc_loss=1.5709, elbo=498.7540, epoch=728/2001, vae_loss=498.8692]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 729/2000 [00:18<00:32, 39.24it/s, adv_loss=-1.5709, bio_penalty=0.0986, clustering_loss=0.0190, disc_loss=1.5709, elbo=499.6432, epoch=729/2001, vae_loss=499.7608]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 730/2000 [00:18<00:32, 39.11it/s, adv_loss=-1.5709, bio_penalty=0.0986, clustering_loss=0.0190, disc_loss=1.5709, elbo=499.6432, epoch=729/2001, vae_loss=499.7608]
Training: Embeddings batch effect correction using adversrial training:  36%|███▋      | 730/2000 [00:18<00:32, 39.11it/s, adv_loss=-1.5708, bio_penalty=0.1009, clustering_loss=0.0190, disc_loss=1.5708, elbo=496.7759, epoch=730/2001, vae_loss=496.8958]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 731/2000 [00:18<00:32, 39.11it/s, adv_loss=-1.5710, bio_penalty=0.1061, clustering_loss=0.0190, disc_loss=1.5710, elbo=501.9098, epoch=731/2001, vae_loss=502.0349]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 732/2000 [00:18<00:32, 39.11it/s, adv_loss=-1.5710, bio_penalty=0.0979, clustering_loss=0.0190, disc_loss=1.5710, elbo=496.0187, epoch=732/2001, vae_loss=496.1357]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 733/2000 [00:18<00:32, 39.11it/s, adv_loss=-1.5712, bio_penalty=0.1025, clustering_loss=0.0190, disc_loss=1.5712, elbo=500.5653, epoch=733/2001, vae_loss=500.6868]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 734/2000 [00:18<00:32, 39.14it/s, adv_loss=-1.5712, bio_penalty=0.1025, clustering_loss=0.0190, disc_loss=1.5712, elbo=500.5653, epoch=733/2001, vae_loss=500.6868]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 734/2000 [00:18<00:32, 39.14it/s, adv_loss=-1.5712, bio_penalty=0.1205, clustering_loss=0.0190, disc_loss=1.5712, elbo=500.6798, epoch=734/2001, vae_loss=500.8193]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 735/2000 [00:18<00:32, 39.14it/s, adv_loss=-1.5711, bio_penalty=0.1433, clustering_loss=0.0190, disc_loss=1.5711, elbo=500.6727, epoch=735/2001, vae_loss=500.8351]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 736/2000 [00:18<00:32, 39.14it/s, adv_loss=-1.5712, bio_penalty=0.1653, clustering_loss=0.0190, disc_loss=1.5712, elbo=521.1202, epoch=736/2001, vae_loss=521.3045]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 737/2000 [00:18<00:32, 39.14it/s, adv_loss=-1.5708, bio_penalty=0.1650, clustering_loss=0.0190, disc_loss=1.5708, elbo=506.8698, epoch=737/2001, vae_loss=507.0539]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 738/2000 [00:18<00:32, 38.66it/s, adv_loss=-1.5708, bio_penalty=0.1650, clustering_loss=0.0190, disc_loss=1.5708, elbo=506.8698, epoch=737/2001, vae_loss=507.0539]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 738/2000 [00:18<00:32, 38.66it/s, adv_loss=-1.5710, bio_penalty=0.1892, clustering_loss=0.0190, disc_loss=1.5710, elbo=496.9911, epoch=738/2001, vae_loss=497.1994]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 739/2000 [00:18<00:32, 38.66it/s, adv_loss=-1.5712, bio_penalty=0.2367, clustering_loss=0.0190, disc_loss=1.5712, elbo=528.7273, epoch=739/2001, vae_loss=528.9830]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 740/2000 [00:18<00:32, 38.66it/s, adv_loss=-1.5712, bio_penalty=0.2283, clustering_loss=0.0190, disc_loss=1.5712, elbo=513.0296, epoch=740/2001, vae_loss=513.2770]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 741/2000 [00:18<00:32, 38.66it/s, adv_loss=-1.5713, bio_penalty=0.2558, clustering_loss=0.0190, disc_loss=1.5713, elbo=518.1819, epoch=741/2001, vae_loss=518.4568]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 742/2000 [00:18<00:32, 38.66it/s, adv_loss=-1.5711, bio_penalty=0.3366, clustering_loss=0.0190, disc_loss=1.5711, elbo=514.2162, epoch=742/2001, vae_loss=514.5719]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 743/2000 [00:18<00:31, 39.41it/s, adv_loss=-1.5711, bio_penalty=0.3366, clustering_loss=0.0190, disc_loss=1.5711, elbo=514.2162, epoch=742/2001, vae_loss=514.5719]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 743/2000 [00:18<00:31, 39.41it/s, adv_loss=-1.5708, bio_penalty=0.4347, clustering_loss=0.0190, disc_loss=1.5708, elbo=514.2857, epoch=743/2001, vae_loss=514.7394]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 744/2000 [00:19<00:31, 39.41it/s, adv_loss=-1.5709, bio_penalty=0.4466, clustering_loss=0.0190, disc_loss=1.5709, elbo=514.7377, epoch=744/2001, vae_loss=515.2032]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 745/2000 [00:19<00:31, 39.41it/s, adv_loss=-1.5705, bio_penalty=0.4406, clustering_loss=0.0190, disc_loss=1.5705, elbo=517.3311, epoch=745/2001, vae_loss=517.7907]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 746/2000 [00:19<00:31, 39.41it/s, adv_loss=-1.5709, bio_penalty=0.5283, clustering_loss=0.0190, disc_loss=1.5709, elbo=508.1085, epoch=746/2001, vae_loss=508.6558]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 747/2000 [00:19<00:31, 39.41it/s, adv_loss=-1.5712, bio_penalty=0.5883, clustering_loss=0.0190, disc_loss=1.5712, elbo=515.8186, epoch=747/2001, vae_loss=516.4259]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 748/2000 [00:19<00:31, 39.79it/s, adv_loss=-1.5712, bio_penalty=0.5883, clustering_loss=0.0190, disc_loss=1.5712, elbo=515.8186, epoch=747/2001, vae_loss=516.4259]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 748/2000 [00:19<00:31, 39.79it/s, adv_loss=-1.5715, bio_penalty=0.5256, clustering_loss=0.0190, disc_loss=1.5715, elbo=510.8130, epoch=748/2001, vae_loss=511.3577]
Training: Embeddings batch effect correction using adversrial training:  37%|███▋      | 749/2000 [00:19<00:31, 39.79it/s, adv_loss=-1.5714, bio_penalty=0.3852, clustering_loss=0.0190, disc_loss=1.5714, elbo=509.9163, epoch=749/2001, vae_loss=510.3205]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 750/2000 [00:19<00:31, 39.79it/s, adv_loss=-1.5714, bio_penalty=0.3680, clustering_loss=0.0190, disc_loss=1.5714, elbo=506.7483, epoch=750/2001, vae_loss=507.1354]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 751/2000 [00:19<00:31, 39.79it/s, adv_loss=-1.5718, bio_penalty=0.3804, clustering_loss=0.0190, disc_loss=1.5718, elbo=514.8609, epoch=751/2001, vae_loss=515.2603]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 752/2000 [00:19<00:31, 39.76it/s, adv_loss=-1.5718, bio_penalty=0.3804, clustering_loss=0.0190, disc_loss=1.5718, elbo=514.8609, epoch=751/2001, vae_loss=515.2603]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 752/2000 [00:19<00:31, 39.76it/s, adv_loss=-1.5721, bio_penalty=0.3629, clustering_loss=0.0190, disc_loss=1.5721, elbo=518.6115, epoch=752/2001, vae_loss=518.9934]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 753/2000 [00:19<00:31, 39.76it/s, adv_loss=-1.5716, bio_penalty=0.3219, clustering_loss=0.0190, disc_loss=1.5716, elbo=515.6694, epoch=753/2001, vae_loss=516.0104]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 754/2000 [00:19<00:31, 39.76it/s, adv_loss=-1.5717, bio_penalty=0.2520, clustering_loss=0.0190, disc_loss=1.5717, elbo=515.7677, epoch=754/2001, vae_loss=516.0388]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 755/2000 [00:19<00:31, 39.76it/s, adv_loss=-1.5717, bio_penalty=0.2595, clustering_loss=0.0190, disc_loss=1.5717, elbo=516.6904, epoch=755/2001, vae_loss=516.9689]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 756/2000 [00:19<00:31, 39.76it/s, adv_loss=-1.5719, bio_penalty=0.2765, clustering_loss=0.0190, disc_loss=1.5719, elbo=513.5127, epoch=756/2001, vae_loss=513.8082]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 757/2000 [00:19<00:31, 39.93it/s, adv_loss=-1.5719, bio_penalty=0.2765, clustering_loss=0.0190, disc_loss=1.5719, elbo=513.5127, epoch=756/2001, vae_loss=513.8082]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 757/2000 [00:19<00:31, 39.93it/s, adv_loss=-1.5720, bio_penalty=0.3201, clustering_loss=0.0190, disc_loss=1.5720, elbo=515.6176, epoch=757/2001, vae_loss=515.9567]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 758/2000 [00:19<00:31, 39.93it/s, adv_loss=-1.5720, bio_penalty=0.3109, clustering_loss=0.0190, disc_loss=1.5720, elbo=512.9188, epoch=758/2001, vae_loss=513.2487]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 759/2000 [00:19<00:31, 39.93it/s, adv_loss=-1.5718, bio_penalty=0.2983, clustering_loss=0.0190, disc_loss=1.5718, elbo=513.3893, epoch=759/2001, vae_loss=513.7067]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 760/2000 [00:19<00:31, 39.93it/s, adv_loss=-1.5721, bio_penalty=0.2890, clustering_loss=0.0190, disc_loss=1.5721, elbo=514.4954, epoch=760/2001, vae_loss=514.8035]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 761/2000 [00:19<00:31, 39.61it/s, adv_loss=-1.5721, bio_penalty=0.2890, clustering_loss=0.0190, disc_loss=1.5721, elbo=514.4954, epoch=760/2001, vae_loss=514.8035]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 761/2000 [00:19<00:31, 39.61it/s, adv_loss=-1.5721, bio_penalty=0.2646, clustering_loss=0.0190, disc_loss=1.5721, elbo=510.8499, epoch=761/2001, vae_loss=511.1335]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 762/2000 [00:19<00:31, 39.61it/s, adv_loss=-1.5721, bio_penalty=0.2352, clustering_loss=0.0190, disc_loss=1.5721, elbo=520.8879, epoch=762/2001, vae_loss=521.1422]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 763/2000 [00:19<00:31, 39.61it/s, adv_loss=-1.5717, bio_penalty=0.2565, clustering_loss=0.0190, disc_loss=1.5717, elbo=519.2836, epoch=763/2001, vae_loss=519.5592]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 764/2000 [00:19<00:31, 39.61it/s, adv_loss=-1.5721, bio_penalty=0.2822, clustering_loss=0.0190, disc_loss=1.5721, elbo=519.7977, epoch=764/2001, vae_loss=520.0989]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 765/2000 [00:19<00:31, 39.61it/s, adv_loss=-1.5721, bio_penalty=0.2705, clustering_loss=0.0190, disc_loss=1.5721, elbo=520.1822, epoch=765/2001, vae_loss=520.4717]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 766/2000 [00:19<00:30, 39.81it/s, adv_loss=-1.5721, bio_penalty=0.2705, clustering_loss=0.0190, disc_loss=1.5721, elbo=520.1822, epoch=765/2001, vae_loss=520.4717]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 766/2000 [00:19<00:30, 39.81it/s, adv_loss=-1.5722, bio_penalty=0.2479, clustering_loss=0.0190, disc_loss=1.5722, elbo=519.9421, epoch=766/2001, vae_loss=520.2090]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 767/2000 [00:19<00:30, 39.81it/s, adv_loss=-1.5722, bio_penalty=0.2281, clustering_loss=0.0190, disc_loss=1.5722, elbo=514.7037, epoch=767/2001, vae_loss=514.9509]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 768/2000 [00:19<00:30, 39.81it/s, adv_loss=-1.5719, bio_penalty=0.2131, clustering_loss=0.0190, disc_loss=1.5719, elbo=509.4130, epoch=768/2001, vae_loss=509.6451]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 769/2000 [00:19<00:30, 39.81it/s, adv_loss=-1.5717, bio_penalty=0.1952, clustering_loss=0.0190, disc_loss=1.5717, elbo=515.2502, epoch=769/2001, vae_loss=515.4645]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 770/2000 [00:19<00:30, 39.72it/s, adv_loss=-1.5717, bio_penalty=0.1952, clustering_loss=0.0190, disc_loss=1.5717, elbo=515.2502, epoch=769/2001, vae_loss=515.4645]
Training: Embeddings batch effect correction using adversrial training:  38%|███▊      | 770/2000 [00:19<00:30, 39.72it/s, adv_loss=-1.5719, bio_penalty=0.1902, clustering_loss=0.0190, disc_loss=1.5719, elbo=509.7195, epoch=770/2001, vae_loss=509.9288]
Training: Embeddings batch effect correction using adversrial training:  39%|███▊      | 771/2000 [00:19<00:30, 39.72it/s, adv_loss=-1.5717, bio_penalty=0.2322, clustering_loss=0.0190, disc_loss=1.5717, elbo=510.6173, epoch=771/2001, vae_loss=510.8686]
Training: Embeddings batch effect correction using adversrial training:  39%|███▊      | 772/2000 [00:19<00:30, 39.72it/s, adv_loss=-1.5714, bio_penalty=0.2339, clustering_loss=0.0190, disc_loss=1.5714, elbo=519.9622, epoch=772/2001, vae_loss=520.2151]
Training: Embeddings batch effect correction using adversrial training:  39%|███▊      | 773/2000 [00:19<00:30, 39.72it/s, adv_loss=-1.5716, bio_penalty=0.2153, clustering_loss=0.0190, disc_loss=1.5716, elbo=510.9833, epoch=773/2001, vae_loss=511.2176]
Training: Embeddings batch effect correction using adversrial training:  39%|███▊      | 774/2000 [00:19<00:30, 39.72it/s, adv_loss=-1.5711, bio_penalty=0.2067, clustering_loss=0.0190, disc_loss=1.5711, elbo=515.6067, epoch=774/2001, vae_loss=515.8325]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 775/2000 [00:19<00:30, 39.92it/s, adv_loss=-1.5711, bio_penalty=0.2067, clustering_loss=0.0190, disc_loss=1.5711, elbo=515.6067, epoch=774/2001, vae_loss=515.8325]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 775/2000 [00:19<00:30, 39.92it/s, adv_loss=-1.5714, bio_penalty=0.1914, clustering_loss=0.0190, disc_loss=1.5714, elbo=511.2712, epoch=775/2001, vae_loss=511.4817]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 776/2000 [00:19<00:30, 39.92it/s, adv_loss=-1.5712, bio_penalty=0.1842, clustering_loss=0.0190, disc_loss=1.5712, elbo=511.2060, epoch=776/2001, vae_loss=511.4092]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 777/2000 [00:19<00:30, 39.92it/s, adv_loss=-1.5711, bio_penalty=0.1900, clustering_loss=0.0190, disc_loss=1.5711, elbo=516.5431, epoch=777/2001, vae_loss=516.7521]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 778/2000 [00:19<00:30, 39.92it/s, adv_loss=-1.5710, bio_penalty=0.1679, clustering_loss=0.0190, disc_loss=1.5710, elbo=507.1402, epoch=778/2001, vae_loss=507.3271]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 779/2000 [00:19<00:30, 39.77it/s, adv_loss=-1.5710, bio_penalty=0.1679, clustering_loss=0.0190, disc_loss=1.5710, elbo=507.1402, epoch=778/2001, vae_loss=507.3271]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 779/2000 [00:19<00:30, 39.77it/s, adv_loss=-1.5711, bio_penalty=0.1491, clustering_loss=0.0190, disc_loss=1.5711, elbo=510.7816, epoch=779/2001, vae_loss=510.9498]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 780/2000 [00:19<00:30, 39.77it/s, adv_loss=-1.5716, bio_penalty=0.1514, clustering_loss=0.0190, disc_loss=1.5716, elbo=508.0131, epoch=780/2001, vae_loss=508.1836]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 781/2000 [00:19<00:30, 39.77it/s, adv_loss=-1.5716, bio_penalty=0.1513, clustering_loss=0.0190, disc_loss=1.5716, elbo=508.7516, epoch=781/2001, vae_loss=508.9220]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 782/2000 [00:19<00:30, 39.77it/s, adv_loss=-1.5716, bio_penalty=0.1496, clustering_loss=0.0190, disc_loss=1.5716, elbo=516.3851, epoch=782/2001, vae_loss=516.5536]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 783/2000 [00:19<00:30, 39.78it/s, adv_loss=-1.5716, bio_penalty=0.1496, clustering_loss=0.0190, disc_loss=1.5716, elbo=516.3851, epoch=782/2001, vae_loss=516.5536]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 783/2000 [00:19<00:30, 39.78it/s, adv_loss=-1.5718, bio_penalty=0.1453, clustering_loss=0.0190, disc_loss=1.5718, elbo=518.5666, epoch=783/2001, vae_loss=518.7310]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 784/2000 [00:20<00:30, 39.78it/s, adv_loss=-1.5719, bio_penalty=0.1455, clustering_loss=0.0190, disc_loss=1.5719, elbo=507.9905, epoch=784/2001, vae_loss=508.1550]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 785/2000 [00:20<00:30, 39.78it/s, adv_loss=-1.5723, bio_penalty=0.1367, clustering_loss=0.0190, disc_loss=1.5723, elbo=511.8773, epoch=785/2001, vae_loss=512.0330]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 786/2000 [00:20<00:30, 39.78it/s, adv_loss=-1.5715, bio_penalty=0.1224, clustering_loss=0.0190, disc_loss=1.5715, elbo=507.3615, epoch=786/2001, vae_loss=507.5029]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 787/2000 [00:20<00:30, 39.78it/s, adv_loss=-1.5716, bio_penalty=0.1108, clustering_loss=0.0190, disc_loss=1.5716, elbo=516.7174, epoch=787/2001, vae_loss=516.8473]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 788/2000 [00:20<00:30, 39.94it/s, adv_loss=-1.5716, bio_penalty=0.1108, clustering_loss=0.0190, disc_loss=1.5716, elbo=516.7174, epoch=787/2001, vae_loss=516.8473]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 788/2000 [00:20<00:30, 39.94it/s, adv_loss=-1.5717, bio_penalty=0.0988, clustering_loss=0.0190, disc_loss=1.5717, elbo=507.7005, epoch=788/2001, vae_loss=507.8184]
Training: Embeddings batch effect correction using adversrial training:  39%|███▉      | 789/2000 [00:20<00:30, 39.94it/s, adv_loss=-1.5720, bio_penalty=0.0844, clustering_loss=0.0190, disc_loss=1.5720, elbo=507.9021, epoch=789/2001, vae_loss=508.0055]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 790/2000 [00:20<00:30, 39.94it/s, adv_loss=-1.5718, bio_penalty=0.0685, clustering_loss=0.0190, disc_loss=1.5718, elbo=503.8463, epoch=790/2001, vae_loss=503.9339]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 791/2000 [00:20<00:30, 39.94it/s, adv_loss=-1.5719, bio_penalty=0.0587, clustering_loss=0.0190, disc_loss=1.5719, elbo=507.6225, epoch=791/2001, vae_loss=507.7003]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 792/2000 [00:20<00:30, 39.93it/s, adv_loss=-1.5719, bio_penalty=0.0587, clustering_loss=0.0190, disc_loss=1.5719, elbo=507.6225, epoch=791/2001, vae_loss=507.7003]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 792/2000 [00:20<00:30, 39.93it/s, adv_loss=-1.5720, bio_penalty=0.0509, clustering_loss=0.0190, disc_loss=1.5720, elbo=506.4561, epoch=792/2001, vae_loss=506.5261]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 793/2000 [00:20<00:30, 39.93it/s, adv_loss=-1.5719, bio_penalty=0.0524, clustering_loss=0.0190, disc_loss=1.5719, elbo=502.7817, epoch=793/2001, vae_loss=502.8531]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 794/2000 [00:20<00:30, 39.93it/s, adv_loss=-1.5719, bio_penalty=0.0618, clustering_loss=0.0190, disc_loss=1.5719, elbo=501.0770, epoch=794/2001, vae_loss=501.1578]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 795/2000 [00:20<00:30, 39.93it/s, adv_loss=-1.5719, bio_penalty=0.0604, clustering_loss=0.0190, disc_loss=1.5719, elbo=503.4076, epoch=795/2001, vae_loss=503.4870]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 796/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5719, bio_penalty=0.0604, clustering_loss=0.0190, disc_loss=1.5719, elbo=503.4076, epoch=795/2001, vae_loss=503.4870]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 796/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5715, bio_penalty=0.0537, clustering_loss=0.0190, disc_loss=1.5715, elbo=501.5476, epoch=796/2001, vae_loss=501.6203]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 797/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5713, bio_penalty=0.0456, clustering_loss=0.0190, disc_loss=1.5713, elbo=499.8229, epoch=797/2001, vae_loss=499.8876]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 798/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5712, bio_penalty=0.0409, clustering_loss=0.0190, disc_loss=1.5712, elbo=500.2803, epoch=798/2001, vae_loss=500.3403]
Training: Embeddings batch effect correction using adversrial training:  40%|███▉      | 799/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5717, bio_penalty=0.0442, clustering_loss=0.0190, disc_loss=1.5717, elbo=504.4610, epoch=799/2001, vae_loss=504.5242]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 800/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5717, bio_penalty=0.0442, clustering_loss=0.0190, disc_loss=1.5717, elbo=504.4610, epoch=799/2001, vae_loss=504.5242]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 800/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5717, bio_penalty=0.0492, clustering_loss=0.0190, disc_loss=1.5717, elbo=505.3341, epoch=800/2001, vae_loss=505.4023]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 801/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5719, bio_penalty=0.0580, clustering_loss=0.0190, disc_loss=1.5719, elbo=505.5020, epoch=801/2001, vae_loss=505.5791]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 802/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5717, bio_penalty=0.0634, clustering_loss=0.0190, disc_loss=1.5717, elbo=504.9757, epoch=802/2001, vae_loss=505.0581]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 803/2000 [00:20<00:30, 39.59it/s, adv_loss=-1.5714, bio_penalty=0.0687, clustering_loss=0.0190, disc_loss=1.5714, elbo=502.8666, epoch=803/2001, vae_loss=502.9543]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 804/2000 [00:20<00:30, 39.12it/s, adv_loss=-1.5714, bio_penalty=0.0687, clustering_loss=0.0190, disc_loss=1.5714, elbo=502.8666, epoch=803/2001, vae_loss=502.9543]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 804/2000 [00:20<00:30, 39.12it/s, adv_loss=-1.5715, bio_penalty=0.0736, clustering_loss=0.0190, disc_loss=1.5715, elbo=498.3699, epoch=804/2001, vae_loss=498.4626]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 805/2000 [00:20<00:30, 39.12it/s, adv_loss=-1.5714, bio_penalty=0.0783, clustering_loss=0.0190, disc_loss=1.5714, elbo=500.6624, epoch=805/2001, vae_loss=500.7598]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 806/2000 [00:20<00:30, 39.12it/s, adv_loss=-1.5714, bio_penalty=0.0755, clustering_loss=0.0190, disc_loss=1.5714, elbo=507.4740, epoch=806/2001, vae_loss=507.5686]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 807/2000 [00:20<00:30, 39.12it/s, adv_loss=-1.5712, bio_penalty=0.0722, clustering_loss=0.0190, disc_loss=1.5712, elbo=497.5835, epoch=807/2001, vae_loss=497.6747]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 808/2000 [00:20<00:30, 39.21it/s, adv_loss=-1.5712, bio_penalty=0.0722, clustering_loss=0.0190, disc_loss=1.5712, elbo=497.5835, epoch=807/2001, vae_loss=497.6747]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 808/2000 [00:20<00:30, 39.21it/s, adv_loss=-1.5713, bio_penalty=0.0688, clustering_loss=0.0190, disc_loss=1.5713, elbo=496.1951, epoch=808/2001, vae_loss=496.2830]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 809/2000 [00:20<00:30, 39.21it/s, adv_loss=-1.5710, bio_penalty=0.0638, clustering_loss=0.0190, disc_loss=1.5710, elbo=499.7098, epoch=809/2001, vae_loss=499.7927]
Training: Embeddings batch effect correction using adversrial training:  40%|████      | 810/2000 [00:20<00:30, 39.21it/s, adv_loss=-1.5712, bio_penalty=0.0600, clustering_loss=0.0190, disc_loss=1.5712, elbo=493.2323, epoch=810/2001, vae_loss=493.3113]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 811/2000 [00:20<00:30, 39.21it/s, adv_loss=-1.5709, bio_penalty=0.0599, clustering_loss=0.0190, disc_loss=1.5709, elbo=494.4468, epoch=811/2001, vae_loss=494.5258]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 812/2000 [00:20<00:30, 39.33it/s, adv_loss=-1.5709, bio_penalty=0.0599, clustering_loss=0.0190, disc_loss=1.5709, elbo=494.4468, epoch=811/2001, vae_loss=494.5258]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 812/2000 [00:20<00:30, 39.33it/s, adv_loss=-1.5708, bio_penalty=0.0654, clustering_loss=0.0190, disc_loss=1.5708, elbo=491.9657, epoch=812/2001, vae_loss=492.0501]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 813/2000 [00:20<00:30, 39.33it/s, adv_loss=-1.5710, bio_penalty=0.0740, clustering_loss=0.0190, disc_loss=1.5710, elbo=491.8962, epoch=813/2001, vae_loss=491.9892]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 814/2000 [00:20<00:30, 39.33it/s, adv_loss=-1.5711, bio_penalty=0.0781, clustering_loss=0.0190, disc_loss=1.5711, elbo=494.9910, epoch=814/2001, vae_loss=495.0882]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 815/2000 [00:20<00:30, 39.33it/s, adv_loss=-1.5709, bio_penalty=0.0757, clustering_loss=0.0190, disc_loss=1.5709, elbo=494.0848, epoch=815/2001, vae_loss=494.1796]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 816/2000 [00:20<00:30, 39.20it/s, adv_loss=-1.5709, bio_penalty=0.0757, clustering_loss=0.0190, disc_loss=1.5709, elbo=494.0848, epoch=815/2001, vae_loss=494.1796]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 816/2000 [00:20<00:30, 39.20it/s, adv_loss=-1.5708, bio_penalty=0.0785, clustering_loss=0.0190, disc_loss=1.5708, elbo=500.3596, epoch=816/2001, vae_loss=500.4572]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 817/2000 [00:20<00:30, 39.20it/s, adv_loss=-1.5707, bio_penalty=0.0736, clustering_loss=0.0190, disc_loss=1.5707, elbo=496.0210, epoch=817/2001, vae_loss=496.1136]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 818/2000 [00:20<00:30, 39.20it/s, adv_loss=-1.5706, bio_penalty=0.0591, clustering_loss=0.0190, disc_loss=1.5706, elbo=493.6907, epoch=818/2001, vae_loss=493.7689]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 819/2000 [00:20<00:30, 39.20it/s, adv_loss=-1.5704, bio_penalty=0.0464, clustering_loss=0.0190, disc_loss=1.5704, elbo=492.9608, epoch=819/2001, vae_loss=493.0263]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 820/2000 [00:20<00:30, 39.26it/s, adv_loss=-1.5704, bio_penalty=0.0464, clustering_loss=0.0190, disc_loss=1.5704, elbo=492.9608, epoch=819/2001, vae_loss=493.0263]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 820/2000 [00:20<00:30, 39.26it/s, adv_loss=-1.5708, bio_penalty=0.0429, clustering_loss=0.0190, disc_loss=1.5708, elbo=493.4782, epoch=820/2001, vae_loss=493.5402]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 821/2000 [00:20<00:30, 39.26it/s, adv_loss=-1.5706, bio_penalty=0.0458, clustering_loss=0.0190, disc_loss=1.5706, elbo=491.2944, epoch=821/2001, vae_loss=491.3593]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 822/2000 [00:20<00:30, 39.26it/s, adv_loss=-1.5706, bio_penalty=0.0487, clustering_loss=0.0190, disc_loss=1.5706, elbo=490.8635, epoch=822/2001, vae_loss=490.9312]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 823/2000 [00:21<00:29, 39.26it/s, adv_loss=-1.5704, bio_penalty=0.0504, clustering_loss=0.0190, disc_loss=1.5704, elbo=488.0996, epoch=823/2001, vae_loss=488.1691]
Training: Embeddings batch effect correction using adversrial training:  41%|████      | 824/2000 [00:21<00:29, 39.26it/s, adv_loss=-1.5704, bio_penalty=0.0529, clustering_loss=0.0190, disc_loss=1.5704, elbo=487.7061, epoch=824/2001, vae_loss=487.7780]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 825/2000 [00:21<00:29, 39.67it/s, adv_loss=-1.5704, bio_penalty=0.0529, clustering_loss=0.0190, disc_loss=1.5704, elbo=487.7061, epoch=824/2001, vae_loss=487.7780]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 825/2000 [00:21<00:29, 39.67it/s, adv_loss=-1.5706, bio_penalty=0.0494, clustering_loss=0.0190, disc_loss=1.5706, elbo=489.5994, epoch=825/2001, vae_loss=489.6679]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 826/2000 [00:21<00:29, 39.67it/s, adv_loss=-1.5705, bio_penalty=0.0489, clustering_loss=0.0190, disc_loss=1.5705, elbo=490.2449, epoch=826/2001, vae_loss=490.3128]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 827/2000 [00:21<00:29, 39.67it/s, adv_loss=-1.5706, bio_penalty=0.0467, clustering_loss=0.0190, disc_loss=1.5706, elbo=489.9396, epoch=827/2001, vae_loss=490.0053]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 828/2000 [00:21<00:29, 39.67it/s, adv_loss=-1.5704, bio_penalty=0.0528, clustering_loss=0.0190, disc_loss=1.5704, elbo=485.0128, epoch=828/2001, vae_loss=485.0846]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 829/2000 [00:21<00:29, 39.73it/s, adv_loss=-1.5704, bio_penalty=0.0528, clustering_loss=0.0190, disc_loss=1.5704, elbo=485.0128, epoch=828/2001, vae_loss=485.0846]
Training: Embeddings batch effect correction using adversrial training:  41%|████▏     | 829/2000 [00:21<00:29, 39.73it/s, adv_loss=-1.5704, bio_penalty=0.0616, clustering_loss=0.0190, disc_loss=1.5704, elbo=486.1138, epoch=829/2001, vae_loss=486.1944]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 830/2000 [00:21<00:29, 39.73it/s, adv_loss=-1.5703, bio_penalty=0.0614, clustering_loss=0.0190, disc_loss=1.5703, elbo=488.0057, epoch=830/2001, vae_loss=488.0862]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 831/2000 [00:21<00:29, 39.73it/s, adv_loss=-1.5704, bio_penalty=0.0530, clustering_loss=0.0190, disc_loss=1.5704, elbo=485.6564, epoch=831/2001, vae_loss=485.7284]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 832/2000 [00:21<00:29, 39.73it/s, adv_loss=-1.5704, bio_penalty=0.0438, clustering_loss=0.0190, disc_loss=1.5704, elbo=485.2607, epoch=832/2001, vae_loss=485.3235]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 833/2000 [00:21<00:29, 39.80it/s, adv_loss=-1.5704, bio_penalty=0.0438, clustering_loss=0.0190, disc_loss=1.5704, elbo=485.2607, epoch=832/2001, vae_loss=485.3235]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 833/2000 [00:21<00:29, 39.80it/s, adv_loss=-1.5703, bio_penalty=0.0423, clustering_loss=0.0190, disc_loss=1.5703, elbo=486.7478, epoch=833/2001, vae_loss=486.8092]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 834/2000 [00:21<00:29, 39.80it/s, adv_loss=-1.5703, bio_penalty=0.0401, clustering_loss=0.0190, disc_loss=1.5703, elbo=483.0251, epoch=834/2001, vae_loss=483.0842]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 835/2000 [00:21<00:29, 39.80it/s, adv_loss=-1.5704, bio_penalty=0.0407, clustering_loss=0.0190, disc_loss=1.5704, elbo=483.9747, epoch=835/2001, vae_loss=484.0344]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 836/2000 [00:21<00:29, 39.80it/s, adv_loss=-1.5703, bio_penalty=0.0410, clustering_loss=0.0190, disc_loss=1.5703, elbo=481.3411, epoch=836/2001, vae_loss=481.4011]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 837/2000 [00:21<00:29, 39.80it/s, adv_loss=-1.5705, bio_penalty=0.0399, clustering_loss=0.0190, disc_loss=1.5705, elbo=482.1789, epoch=837/2001, vae_loss=482.2379]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 838/2000 [00:21<00:29, 38.93it/s, adv_loss=-1.5705, bio_penalty=0.0399, clustering_loss=0.0190, disc_loss=1.5705, elbo=482.1789, epoch=837/2001, vae_loss=482.2379]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 838/2000 [00:21<00:29, 38.93it/s, adv_loss=-1.5705, bio_penalty=0.0393, clustering_loss=0.0190, disc_loss=1.5705, elbo=481.4956, epoch=838/2001, vae_loss=481.5540]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 839/2000 [00:21<00:29, 38.93it/s, adv_loss=-1.5705, bio_penalty=0.0438, clustering_loss=0.0190, disc_loss=1.5705, elbo=480.6523, epoch=839/2001, vae_loss=480.7151]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 840/2000 [00:21<00:29, 38.93it/s, adv_loss=-1.5706, bio_penalty=0.0487, clustering_loss=0.0190, disc_loss=1.5706, elbo=482.0573, epoch=840/2001, vae_loss=482.1251]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 841/2000 [00:21<00:29, 38.93it/s, adv_loss=-1.5707, bio_penalty=0.0503, clustering_loss=0.0190, disc_loss=1.5707, elbo=483.3916, epoch=841/2001, vae_loss=483.4609]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 842/2000 [00:21<00:30, 38.57it/s, adv_loss=-1.5707, bio_penalty=0.0503, clustering_loss=0.0190, disc_loss=1.5707, elbo=483.3916, epoch=841/2001, vae_loss=483.4609]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 842/2000 [00:21<00:30, 38.57it/s, adv_loss=-1.5707, bio_penalty=0.0496, clustering_loss=0.0190, disc_loss=1.5707, elbo=480.5508, epoch=842/2001, vae_loss=480.6194]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 843/2000 [00:21<00:29, 38.57it/s, adv_loss=-1.5709, bio_penalty=0.0515, clustering_loss=0.0190, disc_loss=1.5709, elbo=484.2647, epoch=843/2001, vae_loss=484.3352]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 844/2000 [00:21<00:29, 38.57it/s, adv_loss=-1.5709, bio_penalty=0.0558, clustering_loss=0.0190, disc_loss=1.5709, elbo=481.2697, epoch=844/2001, vae_loss=481.3446]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 845/2000 [00:21<00:29, 38.57it/s, adv_loss=-1.5708, bio_penalty=0.0672, clustering_loss=0.0190, disc_loss=1.5708, elbo=482.3703, epoch=845/2001, vae_loss=482.4565]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 846/2000 [00:21<00:29, 38.57it/s, adv_loss=-1.5708, bio_penalty=0.0755, clustering_loss=0.0190, disc_loss=1.5708, elbo=484.5549, epoch=846/2001, vae_loss=484.6495]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 847/2000 [00:21<00:29, 39.20it/s, adv_loss=-1.5708, bio_penalty=0.0755, clustering_loss=0.0190, disc_loss=1.5708, elbo=484.5549, epoch=846/2001, vae_loss=484.6495]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 847/2000 [00:21<00:29, 39.20it/s, adv_loss=-1.5709, bio_penalty=0.0763, clustering_loss=0.0190, disc_loss=1.5709, elbo=485.2620, epoch=847/2001, vae_loss=485.3574]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 848/2000 [00:21<00:29, 39.20it/s, adv_loss=-1.5708, bio_penalty=0.0695, clustering_loss=0.0190, disc_loss=1.5708, elbo=484.8138, epoch=848/2001, vae_loss=484.9023]
Training: Embeddings batch effect correction using adversrial training:  42%|████▏     | 849/2000 [00:21<00:29, 39.20it/s, adv_loss=-1.5709, bio_penalty=0.0719, clustering_loss=0.0190, disc_loss=1.5709, elbo=482.2982, epoch=849/2001, vae_loss=482.3891]
Training: Embeddings batch effect correction using adversrial training:  42%|████▎     | 850/2000 [00:21<00:29, 39.20it/s, adv_loss=-1.5709, bio_penalty=0.0845, clustering_loss=0.0190, disc_loss=1.5709, elbo=484.3443, epoch=850/2001, vae_loss=484.4479]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 851/2000 [00:21<00:29, 39.20it/s, adv_loss=-1.5707, bio_penalty=0.0918, clustering_loss=0.0190, disc_loss=1.5707, elbo=481.3893, epoch=851/2001, vae_loss=481.5002]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 852/2000 [00:21<00:29, 39.58it/s, adv_loss=-1.5707, bio_penalty=0.0918, clustering_loss=0.0190, disc_loss=1.5707, elbo=481.3893, epoch=851/2001, vae_loss=481.5002]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 852/2000 [00:21<00:29, 39.58it/s, adv_loss=-1.5710, bio_penalty=0.0910, clustering_loss=0.0190, disc_loss=1.5710, elbo=483.8857, epoch=852/2001, vae_loss=483.9958]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 853/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5710, bio_penalty=0.0907, clustering_loss=0.0190, disc_loss=1.5710, elbo=485.5326, epoch=853/2001, vae_loss=485.6423]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 854/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5710, bio_penalty=0.0853, clustering_loss=0.0190, disc_loss=1.5710, elbo=484.6091, epoch=854/2001, vae_loss=484.7135]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 855/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5708, bio_penalty=0.0818, clustering_loss=0.0190, disc_loss=1.5708, elbo=481.2156, epoch=855/2001, vae_loss=481.3165]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 856/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5708, bio_penalty=0.0818, clustering_loss=0.0190, disc_loss=1.5708, elbo=481.2156, epoch=855/2001, vae_loss=481.3165]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 856/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5710, bio_penalty=0.0839, clustering_loss=0.0190, disc_loss=1.5710, elbo=481.2160, epoch=856/2001, vae_loss=481.3189]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 857/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5708, bio_penalty=0.0866, clustering_loss=0.0190, disc_loss=1.5708, elbo=481.2960, epoch=857/2001, vae_loss=481.4016]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 858/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5708, bio_penalty=0.0808, clustering_loss=0.0190, disc_loss=1.5708, elbo=479.2589, epoch=858/2001, vae_loss=479.3587]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 859/2000 [00:21<00:28, 39.58it/s, adv_loss=-1.5706, bio_penalty=0.0676, clustering_loss=0.0190, disc_loss=1.5706, elbo=482.2794, epoch=859/2001, vae_loss=482.3660]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 860/2000 [00:21<00:28, 39.64it/s, adv_loss=-1.5706, bio_penalty=0.0676, clustering_loss=0.0190, disc_loss=1.5706, elbo=482.2794, epoch=859/2001, vae_loss=482.3660]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 860/2000 [00:21<00:28, 39.64it/s, adv_loss=-1.5706, bio_penalty=0.0612, clustering_loss=0.0190, disc_loss=1.5706, elbo=483.4806, epoch=860/2001, vae_loss=483.5608]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 861/2000 [00:21<00:28, 39.64it/s, adv_loss=-1.5707, bio_penalty=0.0636, clustering_loss=0.0190, disc_loss=1.5707, elbo=482.4037, epoch=861/2001, vae_loss=482.4865]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 862/2000 [00:21<00:28, 39.64it/s, adv_loss=-1.5706, bio_penalty=0.0643, clustering_loss=0.0190, disc_loss=1.5706, elbo=482.5994, epoch=862/2001, vae_loss=482.6827]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 863/2000 [00:22<00:28, 39.64it/s, adv_loss=-1.5705, bio_penalty=0.0605, clustering_loss=0.0190, disc_loss=1.5705, elbo=482.4418, epoch=863/2001, vae_loss=482.5213]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 864/2000 [00:22<00:28, 39.56it/s, adv_loss=-1.5705, bio_penalty=0.0605, clustering_loss=0.0190, disc_loss=1.5705, elbo=482.4418, epoch=863/2001, vae_loss=482.5213]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 864/2000 [00:22<00:28, 39.56it/s, adv_loss=-1.5703, bio_penalty=0.0587, clustering_loss=0.0190, disc_loss=1.5703, elbo=481.2847, epoch=864/2001, vae_loss=481.3625]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 865/2000 [00:22<00:28, 39.56it/s, adv_loss=-1.5704, bio_penalty=0.0574, clustering_loss=0.0190, disc_loss=1.5704, elbo=485.2875, epoch=865/2001, vae_loss=485.3639]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 866/2000 [00:22<00:28, 39.56it/s, adv_loss=-1.5703, bio_penalty=0.0498, clustering_loss=0.0190, disc_loss=1.5703, elbo=479.7952, epoch=866/2001, vae_loss=479.8640]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 867/2000 [00:22<00:28, 39.56it/s, adv_loss=-1.5703, bio_penalty=0.0461, clustering_loss=0.0190, disc_loss=1.5703, elbo=482.6545, epoch=867/2001, vae_loss=482.7197]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 868/2000 [00:22<00:28, 39.49it/s, adv_loss=-1.5703, bio_penalty=0.0461, clustering_loss=0.0190, disc_loss=1.5703, elbo=482.6545, epoch=867/2001, vae_loss=482.7197]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 868/2000 [00:22<00:28, 39.49it/s, adv_loss=-1.5701, bio_penalty=0.0441, clustering_loss=0.0190, disc_loss=1.5701, elbo=481.0654, epoch=868/2001, vae_loss=481.1285]
Training: Embeddings batch effect correction using adversrial training:  43%|████▎     | 869/2000 [00:22<00:28, 39.49it/s, adv_loss=-1.5701, bio_penalty=0.0449, clustering_loss=0.0190, disc_loss=1.5701, elbo=477.1075, epoch=869/2001, vae_loss=477.1714]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 870/2000 [00:22<00:28, 39.49it/s, adv_loss=-1.5700, bio_penalty=0.0463, clustering_loss=0.0190, disc_loss=1.5700, elbo=481.1606, epoch=870/2001, vae_loss=481.2259]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 871/2000 [00:22<00:28, 39.49it/s, adv_loss=-1.5700, bio_penalty=0.0465, clustering_loss=0.0190, disc_loss=1.5700, elbo=477.7353, epoch=871/2001, vae_loss=477.8008]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 872/2000 [00:22<00:28, 39.15it/s, adv_loss=-1.5700, bio_penalty=0.0465, clustering_loss=0.0190, disc_loss=1.5700, elbo=477.7353, epoch=871/2001, vae_loss=477.8008]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 872/2000 [00:22<00:28, 39.15it/s, adv_loss=-1.5700, bio_penalty=0.0447, clustering_loss=0.0190, disc_loss=1.5700, elbo=478.1007, epoch=872/2001, vae_loss=478.1645]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 873/2000 [00:22<00:28, 39.15it/s, adv_loss=-1.5700, bio_penalty=0.0407, clustering_loss=0.0190, disc_loss=1.5700, elbo=477.1642, epoch=873/2001, vae_loss=477.2239]
Training: Embeddings batch effect correction using adversrial training:  44%|████▎     | 874/2000 [00:22<00:28, 39.15it/s, adv_loss=-1.5698, bio_penalty=0.0389, clustering_loss=0.0190, disc_loss=1.5698, elbo=477.5438, epoch=874/2001, vae_loss=477.6017]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 875/2000 [00:22<00:28, 39.15it/s, adv_loss=-1.5699, bio_penalty=0.0364, clustering_loss=0.0190, disc_loss=1.5699, elbo=477.4141, epoch=875/2001, vae_loss=477.4695]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 876/2000 [00:22<00:28, 39.16it/s, adv_loss=-1.5699, bio_penalty=0.0364, clustering_loss=0.0190, disc_loss=1.5699, elbo=477.4141, epoch=875/2001, vae_loss=477.4695]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 876/2000 [00:22<00:28, 39.16it/s, adv_loss=-1.5698, bio_penalty=0.0326, clustering_loss=0.0190, disc_loss=1.5698, elbo=477.0446, epoch=876/2001, vae_loss=477.0962]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 877/2000 [00:22<00:28, 39.16it/s, adv_loss=-1.5701, bio_penalty=0.0330, clustering_loss=0.0190, disc_loss=1.5701, elbo=475.6428, epoch=877/2001, vae_loss=475.6949]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 878/2000 [00:22<00:28, 39.16it/s, adv_loss=-1.5703, bio_penalty=0.0354, clustering_loss=0.0190, disc_loss=1.5703, elbo=479.4787, epoch=878/2001, vae_loss=479.5332]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 879/2000 [00:22<00:28, 39.16it/s, adv_loss=-1.5701, bio_penalty=0.0369, clustering_loss=0.0190, disc_loss=1.5701, elbo=479.2694, epoch=879/2001, vae_loss=479.3253]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 880/2000 [00:22<00:28, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0369, clustering_loss=0.0190, disc_loss=1.5701, elbo=479.2694, epoch=879/2001, vae_loss=479.3253]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 880/2000 [00:22<00:28, 39.09it/s, adv_loss=-1.5705, bio_penalty=0.0319, clustering_loss=0.0190, disc_loss=1.5705, elbo=479.7855, epoch=880/2001, vae_loss=479.8364]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 881/2000 [00:22<00:28, 39.09it/s, adv_loss=-1.5704, bio_penalty=0.0293, clustering_loss=0.0190, disc_loss=1.5704, elbo=481.0945, epoch=881/2001, vae_loss=481.1429]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 882/2000 [00:22<00:28, 39.09it/s, adv_loss=-1.5703, bio_penalty=0.0301, clustering_loss=0.0190, disc_loss=1.5703, elbo=479.4091, epoch=882/2001, vae_loss=479.4582]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 883/2000 [00:22<00:28, 39.09it/s, adv_loss=-1.5709, bio_penalty=0.0292, clustering_loss=0.0190, disc_loss=1.5709, elbo=480.3564, epoch=883/2001, vae_loss=480.4047]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 884/2000 [00:22<00:28, 38.84it/s, adv_loss=-1.5709, bio_penalty=0.0292, clustering_loss=0.0190, disc_loss=1.5709, elbo=480.3564, epoch=883/2001, vae_loss=480.4047]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 884/2000 [00:22<00:28, 38.84it/s, adv_loss=-1.5710, bio_penalty=0.0268, clustering_loss=0.0190, disc_loss=1.5710, elbo=483.0185, epoch=884/2001, vae_loss=483.0643]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 885/2000 [00:22<00:28, 38.84it/s, adv_loss=-1.5710, bio_penalty=0.0269, clustering_loss=0.0190, disc_loss=1.5710, elbo=485.3778, epoch=885/2001, vae_loss=485.4238]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 886/2000 [00:22<00:28, 38.84it/s, adv_loss=-1.5714, bio_penalty=0.0303, clustering_loss=0.0190, disc_loss=1.5714, elbo=484.6522, epoch=886/2001, vae_loss=484.7015]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 887/2000 [00:22<00:28, 38.84it/s, adv_loss=-1.5718, bio_penalty=0.0285, clustering_loss=0.0190, disc_loss=1.5718, elbo=487.7521, epoch=887/2001, vae_loss=487.7996]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 888/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5718, bio_penalty=0.0285, clustering_loss=0.0190, disc_loss=1.5718, elbo=487.7521, epoch=887/2001, vae_loss=487.7996]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 888/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5719, bio_penalty=0.0235, clustering_loss=0.0190, disc_loss=1.5719, elbo=483.6009, epoch=888/2001, vae_loss=483.6434]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 889/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5719, bio_penalty=0.0220, clustering_loss=0.0190, disc_loss=1.5719, elbo=485.2530, epoch=889/2001, vae_loss=485.2940]
Training: Embeddings batch effect correction using adversrial training:  44%|████▍     | 890/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5721, bio_penalty=0.0217, clustering_loss=0.0190, disc_loss=1.5721, elbo=486.3357, epoch=890/2001, vae_loss=486.3764]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 891/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5724, bio_penalty=0.0268, clustering_loss=0.0190, disc_loss=1.5724, elbo=499.5171, epoch=891/2001, vae_loss=499.5630]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 892/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5724, bio_penalty=0.0268, clustering_loss=0.0190, disc_loss=1.5724, elbo=499.5171, epoch=891/2001, vae_loss=499.5630]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 892/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5722, bio_penalty=0.0258, clustering_loss=0.0190, disc_loss=1.5722, elbo=491.1244, epoch=892/2001, vae_loss=491.1693]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 893/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5722, bio_penalty=0.0252, clustering_loss=0.0190, disc_loss=1.5722, elbo=489.5785, epoch=893/2001, vae_loss=489.6227]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 894/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5722, bio_penalty=0.0284, clustering_loss=0.0190, disc_loss=1.5722, elbo=488.8444, epoch=894/2001, vae_loss=488.8919]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 895/2000 [00:22<00:28, 38.94it/s, adv_loss=-1.5720, bio_penalty=0.0363, clustering_loss=0.0190, disc_loss=1.5720, elbo=495.1323, epoch=895/2001, vae_loss=495.1877]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 896/2000 [00:22<00:28, 38.20it/s, adv_loss=-1.5720, bio_penalty=0.0363, clustering_loss=0.0190, disc_loss=1.5720, elbo=495.1323, epoch=895/2001, vae_loss=495.1877]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 896/2000 [00:22<00:28, 38.20it/s, adv_loss=-1.5720, bio_penalty=0.0420, clustering_loss=0.0190, disc_loss=1.5720, elbo=490.7110, epoch=896/2001, vae_loss=490.7721]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 897/2000 [00:22<00:28, 38.20it/s, adv_loss=-1.5717, bio_penalty=0.0404, clustering_loss=0.0190, disc_loss=1.5717, elbo=490.5472, epoch=897/2001, vae_loss=490.6066]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 898/2000 [00:22<00:28, 38.20it/s, adv_loss=-1.5714, bio_penalty=0.0358, clustering_loss=0.0190, disc_loss=1.5714, elbo=490.7627, epoch=898/2001, vae_loss=490.8176]
Training: Embeddings batch effect correction using adversrial training:  45%|████▍     | 899/2000 [00:22<00:28, 38.20it/s, adv_loss=-1.5711, bio_penalty=0.0358, clustering_loss=0.0190, disc_loss=1.5711, elbo=488.9492, epoch=899/2001, vae_loss=489.0041]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 900/2000 [00:22<00:28, 38.62it/s, adv_loss=-1.5711, bio_penalty=0.0358, clustering_loss=0.0190, disc_loss=1.5711, elbo=488.9492, epoch=899/2001, vae_loss=489.0041]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 900/2000 [00:22<00:28, 38.62it/s, adv_loss=-1.5709, bio_penalty=0.0344, clustering_loss=0.0190, disc_loss=1.5709, elbo=496.0435, epoch=900/2001, vae_loss=496.0969]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 901/2000 [00:23<00:28, 38.62it/s, adv_loss=-1.5706, bio_penalty=0.0355, clustering_loss=0.0190, disc_loss=1.5706, elbo=492.9807, epoch=901/2001, vae_loss=493.0353]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 902/2000 [00:23<00:28, 38.62it/s, adv_loss=-1.5703, bio_penalty=0.0401, clustering_loss=0.0190, disc_loss=1.5703, elbo=481.4484, epoch=902/2001, vae_loss=481.5076]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 903/2000 [00:23<00:28, 38.62it/s, adv_loss=-1.5701, bio_penalty=0.0344, clustering_loss=0.0190, disc_loss=1.5701, elbo=486.1769, epoch=903/2001, vae_loss=486.2304]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 904/2000 [00:23<00:28, 39.00it/s, adv_loss=-1.5701, bio_penalty=0.0344, clustering_loss=0.0190, disc_loss=1.5701, elbo=486.1769, epoch=903/2001, vae_loss=486.2304]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 904/2000 [00:23<00:28, 39.00it/s, adv_loss=-1.5701, bio_penalty=0.0278, clustering_loss=0.0190, disc_loss=1.5701, elbo=482.6232, epoch=904/2001, vae_loss=482.6700]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 905/2000 [00:23<00:28, 39.00it/s, adv_loss=-1.5700, bio_penalty=0.0233, clustering_loss=0.0190, disc_loss=1.5700, elbo=485.0612, epoch=905/2001, vae_loss=485.1035]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 906/2000 [00:23<00:28, 39.00it/s, adv_loss=-1.5702, bio_penalty=0.0224, clustering_loss=0.0190, disc_loss=1.5702, elbo=483.1371, epoch=906/2001, vae_loss=483.1786]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 907/2000 [00:23<00:28, 39.00it/s, adv_loss=-1.5702, bio_penalty=0.0229, clustering_loss=0.0190, disc_loss=1.5702, elbo=480.1209, epoch=907/2001, vae_loss=480.1628]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 908/2000 [00:23<00:27, 39.28it/s, adv_loss=-1.5702, bio_penalty=0.0229, clustering_loss=0.0190, disc_loss=1.5702, elbo=480.1209, epoch=907/2001, vae_loss=480.1628]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 908/2000 [00:23<00:27, 39.28it/s, adv_loss=-1.5702, bio_penalty=0.0249, clustering_loss=0.0190, disc_loss=1.5702, elbo=476.1346, epoch=908/2001, vae_loss=476.1786]
Training: Embeddings batch effect correction using adversrial training:  45%|████▌     | 909/2000 [00:23<00:27, 39.28it/s, adv_loss=-1.5702, bio_penalty=0.0297, clustering_loss=0.0190, disc_loss=1.5702, elbo=477.7444, epoch=909/2001, vae_loss=477.7932]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 910/2000 [00:23<00:27, 39.28it/s, adv_loss=-1.5703, bio_penalty=0.0351, clustering_loss=0.0190, disc_loss=1.5703, elbo=476.8705, epoch=910/2001, vae_loss=476.9247]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 911/2000 [00:23<00:27, 39.28it/s, adv_loss=-1.5704, bio_penalty=0.0387, clustering_loss=0.0190, disc_loss=1.5704, elbo=477.1972, epoch=911/2001, vae_loss=477.2549]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 912/2000 [00:23<00:27, 39.28it/s, adv_loss=-1.5703, bio_penalty=0.0419, clustering_loss=0.0190, disc_loss=1.5703, elbo=477.8396, epoch=912/2001, vae_loss=477.9006]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 913/2000 [00:23<00:27, 39.56it/s, adv_loss=-1.5703, bio_penalty=0.0419, clustering_loss=0.0190, disc_loss=1.5703, elbo=477.8396, epoch=912/2001, vae_loss=477.9006]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 913/2000 [00:23<00:27, 39.56it/s, adv_loss=-1.5708, bio_penalty=0.0448, clustering_loss=0.0190, disc_loss=1.5708, elbo=480.6770, epoch=913/2001, vae_loss=480.7408]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 914/2000 [00:23<00:27, 39.56it/s, adv_loss=-1.5704, bio_penalty=0.0479, clustering_loss=0.0190, disc_loss=1.5704, elbo=479.2328, epoch=914/2001, vae_loss=479.2997]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 915/2000 [00:23<00:27, 39.56it/s, adv_loss=-1.5706, bio_penalty=0.0439, clustering_loss=0.0190, disc_loss=1.5706, elbo=482.4052, epoch=915/2001, vae_loss=482.4682]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 916/2000 [00:23<00:27, 39.56it/s, adv_loss=-1.5709, bio_penalty=0.0381, clustering_loss=0.0190, disc_loss=1.5709, elbo=480.6531, epoch=916/2001, vae_loss=480.7103]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 917/2000 [00:23<00:27, 39.47it/s, adv_loss=-1.5709, bio_penalty=0.0381, clustering_loss=0.0190, disc_loss=1.5709, elbo=480.6531, epoch=916/2001, vae_loss=480.7103]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 917/2000 [00:23<00:27, 39.47it/s, adv_loss=-1.5708, bio_penalty=0.0385, clustering_loss=0.0190, disc_loss=1.5708, elbo=481.8712, epoch=917/2001, vae_loss=481.9288]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 918/2000 [00:23<00:27, 39.47it/s, adv_loss=-1.5709, bio_penalty=0.0423, clustering_loss=0.0190, disc_loss=1.5709, elbo=481.8741, epoch=918/2001, vae_loss=481.9355]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 919/2000 [00:23<00:27, 39.47it/s, adv_loss=-1.5705, bio_penalty=0.0403, clustering_loss=0.0190, disc_loss=1.5705, elbo=478.6471, epoch=919/2001, vae_loss=478.7064]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 920/2000 [00:23<00:27, 39.47it/s, adv_loss=-1.5710, bio_penalty=0.0360, clustering_loss=0.0190, disc_loss=1.5710, elbo=478.9089, epoch=920/2001, vae_loss=478.9640]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 921/2000 [00:23<00:27, 39.44it/s, adv_loss=-1.5710, bio_penalty=0.0360, clustering_loss=0.0190, disc_loss=1.5710, elbo=478.9089, epoch=920/2001, vae_loss=478.9640]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 921/2000 [00:23<00:27, 39.44it/s, adv_loss=-1.5712, bio_penalty=0.0327, clustering_loss=0.0190, disc_loss=1.5712, elbo=481.8484, epoch=921/2001, vae_loss=481.9001]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 922/2000 [00:23<00:27, 39.44it/s, adv_loss=-1.5710, bio_penalty=0.0294, clustering_loss=0.0190, disc_loss=1.5710, elbo=475.9019, epoch=922/2001, vae_loss=475.9503]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 923/2000 [00:23<00:27, 39.44it/s, adv_loss=-1.5708, bio_penalty=0.0262, clustering_loss=0.0190, disc_loss=1.5708, elbo=476.6334, epoch=923/2001, vae_loss=476.6786]
Training: Embeddings batch effect correction using adversrial training:  46%|████▌     | 924/2000 [00:23<00:27, 39.44it/s, adv_loss=-1.5707, bio_penalty=0.0233, clustering_loss=0.0190, disc_loss=1.5707, elbo=476.5847, epoch=924/2001, vae_loss=476.6271]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 925/2000 [00:23<00:27, 39.44it/s, adv_loss=-1.5709, bio_penalty=0.0244, clustering_loss=0.0190, disc_loss=1.5709, elbo=474.7184, epoch=925/2001, vae_loss=474.7618]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 926/2000 [00:23<00:27, 39.67it/s, adv_loss=-1.5709, bio_penalty=0.0244, clustering_loss=0.0190, disc_loss=1.5709, elbo=474.7184, epoch=925/2001, vae_loss=474.7618]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 926/2000 [00:23<00:27, 39.67it/s, adv_loss=-1.5712, bio_penalty=0.0274, clustering_loss=0.0190, disc_loss=1.5712, elbo=476.3792, epoch=926/2001, vae_loss=476.4257]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 927/2000 [00:23<00:27, 39.67it/s, adv_loss=-1.5708, bio_penalty=0.0291, clustering_loss=0.0190, disc_loss=1.5708, elbo=479.4107, epoch=927/2001, vae_loss=479.4588]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 928/2000 [00:23<00:27, 39.67it/s, adv_loss=-1.5712, bio_penalty=0.0271, clustering_loss=0.0190, disc_loss=1.5712, elbo=474.2114, epoch=928/2001, vae_loss=474.2576]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 929/2000 [00:23<00:26, 39.67it/s, adv_loss=-1.5711, bio_penalty=0.0246, clustering_loss=0.0190, disc_loss=1.5711, elbo=479.2860, epoch=929/2001, vae_loss=479.3297]
Training: Embeddings batch effect correction using adversrial training:  46%|████▋     | 930/2000 [00:23<00:26, 39.67it/s, adv_loss=-1.5711, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5711, elbo=479.6591, epoch=930/2001, vae_loss=479.7035]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 931/2000 [00:23<00:26, 39.90it/s, adv_loss=-1.5711, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5711, elbo=479.6591, epoch=930/2001, vae_loss=479.7035]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 931/2000 [00:23<00:26, 39.90it/s, adv_loss=-1.5714, bio_penalty=0.0305, clustering_loss=0.0190, disc_loss=1.5714, elbo=473.7972, epoch=931/2001, vae_loss=473.8468]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 932/2000 [00:23<00:26, 39.90it/s, adv_loss=-1.5711, bio_penalty=0.0370, clustering_loss=0.0190, disc_loss=1.5711, elbo=480.5425, epoch=932/2001, vae_loss=480.5985]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 933/2000 [00:23<00:26, 39.90it/s, adv_loss=-1.5712, bio_penalty=0.0345, clustering_loss=0.0190, disc_loss=1.5712, elbo=478.1852, epoch=933/2001, vae_loss=478.2388]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 934/2000 [00:23<00:26, 39.90it/s, adv_loss=-1.5712, bio_penalty=0.0275, clustering_loss=0.0190, disc_loss=1.5712, elbo=478.7879, epoch=934/2001, vae_loss=478.8345]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 935/2000 [00:23<00:26, 39.62it/s, adv_loss=-1.5712, bio_penalty=0.0275, clustering_loss=0.0190, disc_loss=1.5712, elbo=478.7879, epoch=934/2001, vae_loss=478.8345]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 935/2000 [00:23<00:26, 39.62it/s, adv_loss=-1.5710, bio_penalty=0.0247, clustering_loss=0.0190, disc_loss=1.5710, elbo=478.1961, epoch=935/2001, vae_loss=478.2398]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 936/2000 [00:23<00:26, 39.62it/s, adv_loss=-1.5709, bio_penalty=0.0274, clustering_loss=0.0190, disc_loss=1.5709, elbo=475.3762, epoch=936/2001, vae_loss=475.4227]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 937/2000 [00:23<00:26, 39.62it/s, adv_loss=-1.5710, bio_penalty=0.0256, clustering_loss=0.0190, disc_loss=1.5710, elbo=476.7319, epoch=937/2001, vae_loss=476.7766]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 938/2000 [00:23<00:26, 39.62it/s, adv_loss=-1.5710, bio_penalty=0.0213, clustering_loss=0.0190, disc_loss=1.5710, elbo=475.8369, epoch=938/2001, vae_loss=475.8772]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 939/2000 [00:23<00:26, 39.62it/s, adv_loss=-1.5710, bio_penalty=0.0201, clustering_loss=0.0190, disc_loss=1.5710, elbo=474.7419, epoch=939/2001, vae_loss=474.7811]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 940/2000 [00:23<00:26, 39.75it/s, adv_loss=-1.5710, bio_penalty=0.0201, clustering_loss=0.0190, disc_loss=1.5710, elbo=474.7419, epoch=939/2001, vae_loss=474.7811]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 940/2000 [00:23<00:26, 39.75it/s, adv_loss=-1.5710, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5710, elbo=479.3951, epoch=940/2001, vae_loss=479.4362]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 941/2000 [00:24<00:26, 39.75it/s, adv_loss=-1.5712, bio_penalty=0.0234, clustering_loss=0.0190, disc_loss=1.5712, elbo=479.8533, epoch=941/2001, vae_loss=479.8958]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 942/2000 [00:24<00:26, 39.75it/s, adv_loss=-1.5713, bio_penalty=0.0220, clustering_loss=0.0190, disc_loss=1.5713, elbo=477.8899, epoch=942/2001, vae_loss=477.9309]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 943/2000 [00:24<00:26, 39.75it/s, adv_loss=-1.5713, bio_penalty=0.0193, clustering_loss=0.0190, disc_loss=1.5713, elbo=479.2348, epoch=943/2001, vae_loss=479.2732]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 944/2000 [00:24<00:26, 39.75it/s, adv_loss=-1.5713, bio_penalty=0.0195, clustering_loss=0.0190, disc_loss=1.5713, elbo=480.1437, epoch=944/2001, vae_loss=480.1823]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 945/2000 [00:24<00:26, 39.85it/s, adv_loss=-1.5713, bio_penalty=0.0195, clustering_loss=0.0190, disc_loss=1.5713, elbo=480.1437, epoch=944/2001, vae_loss=480.1823]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 945/2000 [00:24<00:26, 39.85it/s, adv_loss=-1.5713, bio_penalty=0.0206, clustering_loss=0.0190, disc_loss=1.5713, elbo=481.3447, epoch=945/2001, vae_loss=481.3843]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 946/2000 [00:24<00:26, 39.85it/s, adv_loss=-1.5713, bio_penalty=0.0180, clustering_loss=0.0190, disc_loss=1.5713, elbo=480.8298, epoch=946/2001, vae_loss=480.8668]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 947/2000 [00:24<00:26, 39.85it/s, adv_loss=-1.5712, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5712, elbo=480.2935, epoch=947/2001, vae_loss=480.3307]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 948/2000 [00:24<00:26, 39.85it/s, adv_loss=-1.5712, bio_penalty=0.0189, clustering_loss=0.0190, disc_loss=1.5712, elbo=478.0627, epoch=948/2001, vae_loss=478.1006]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 949/2000 [00:24<00:26, 39.73it/s, adv_loss=-1.5712, bio_penalty=0.0189, clustering_loss=0.0190, disc_loss=1.5712, elbo=478.0627, epoch=948/2001, vae_loss=478.1006]
Training: Embeddings batch effect correction using adversrial training:  47%|████▋     | 949/2000 [00:24<00:26, 39.73it/s, adv_loss=-1.5710, bio_penalty=0.0208, clustering_loss=0.0190, disc_loss=1.5710, elbo=479.4347, epoch=949/2001, vae_loss=479.4746]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 950/2000 [00:24<00:26, 39.73it/s, adv_loss=-1.5710, bio_penalty=0.0193, clustering_loss=0.0190, disc_loss=1.5710, elbo=476.7791, epoch=950/2001, vae_loss=476.8175]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 951/2000 [00:24<00:26, 39.73it/s, adv_loss=-1.5712, bio_penalty=0.0183, clustering_loss=0.0190, disc_loss=1.5712, elbo=477.9218, epoch=951/2001, vae_loss=477.9592]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 952/2000 [00:24<00:26, 39.73it/s, adv_loss=-1.5712, bio_penalty=0.0176, clustering_loss=0.0190, disc_loss=1.5712, elbo=476.8671, epoch=952/2001, vae_loss=476.9038]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 953/2000 [00:24<00:26, 39.61it/s, adv_loss=-1.5712, bio_penalty=0.0176, clustering_loss=0.0190, disc_loss=1.5712, elbo=476.8671, epoch=952/2001, vae_loss=476.9038]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 953/2000 [00:24<00:26, 39.61it/s, adv_loss=-1.5712, bio_penalty=0.0175, clustering_loss=0.0190, disc_loss=1.5712, elbo=480.0678, epoch=953/2001, vae_loss=480.1043]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 954/2000 [00:24<00:26, 39.61it/s, adv_loss=-1.5712, bio_penalty=0.0218, clustering_loss=0.0190, disc_loss=1.5712, elbo=478.4136, epoch=954/2001, vae_loss=478.4545]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 955/2000 [00:24<00:26, 39.61it/s, adv_loss=-1.5710, bio_penalty=0.0229, clustering_loss=0.0190, disc_loss=1.5710, elbo=476.3031, epoch=955/2001, vae_loss=476.3450]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 956/2000 [00:24<00:26, 39.61it/s, adv_loss=-1.5711, bio_penalty=0.0230, clustering_loss=0.0190, disc_loss=1.5711, elbo=477.0150, epoch=956/2001, vae_loss=477.0570]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 957/2000 [00:24<00:26, 39.69it/s, adv_loss=-1.5711, bio_penalty=0.0230, clustering_loss=0.0190, disc_loss=1.5711, elbo=477.0150, epoch=956/2001, vae_loss=477.0570]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 957/2000 [00:24<00:26, 39.69it/s, adv_loss=-1.5712, bio_penalty=0.0232, clustering_loss=0.0190, disc_loss=1.5712, elbo=477.5969, epoch=957/2001, vae_loss=477.6391]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 958/2000 [00:24<00:26, 39.69it/s, adv_loss=-1.5711, bio_penalty=0.0238, clustering_loss=0.0190, disc_loss=1.5711, elbo=482.5573, epoch=958/2001, vae_loss=482.6002]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 959/2000 [00:24<00:26, 39.69it/s, adv_loss=-1.5709, bio_penalty=0.0262, clustering_loss=0.0190, disc_loss=1.5709, elbo=477.1959, epoch=959/2001, vae_loss=477.2411]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 960/2000 [00:24<00:26, 39.69it/s, adv_loss=-1.5709, bio_penalty=0.0315, clustering_loss=0.0190, disc_loss=1.5709, elbo=476.8875, epoch=960/2001, vae_loss=476.9381]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 961/2000 [00:24<00:26, 39.17it/s, adv_loss=-1.5709, bio_penalty=0.0315, clustering_loss=0.0190, disc_loss=1.5709, elbo=476.8875, epoch=960/2001, vae_loss=476.9381]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 961/2000 [00:24<00:26, 39.17it/s, adv_loss=-1.5711, bio_penalty=0.0350, clustering_loss=0.0190, disc_loss=1.5711, elbo=478.4245, epoch=961/2001, vae_loss=478.4785]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 962/2000 [00:24<00:26, 39.17it/s, adv_loss=-1.5710, bio_penalty=0.0336, clustering_loss=0.0190, disc_loss=1.5710, elbo=479.7976, epoch=962/2001, vae_loss=479.8503]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 963/2000 [00:24<00:26, 39.17it/s, adv_loss=-1.5707, bio_penalty=0.0391, clustering_loss=0.0190, disc_loss=1.5707, elbo=476.7018, epoch=963/2001, vae_loss=476.7599]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 964/2000 [00:24<00:26, 39.17it/s, adv_loss=-1.5710, bio_penalty=0.0403, clustering_loss=0.0190, disc_loss=1.5710, elbo=479.3904, epoch=964/2001, vae_loss=479.4498]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 965/2000 [00:24<00:26, 39.14it/s, adv_loss=-1.5710, bio_penalty=0.0403, clustering_loss=0.0190, disc_loss=1.5710, elbo=479.3904, epoch=964/2001, vae_loss=479.4498]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 965/2000 [00:24<00:26, 39.14it/s, adv_loss=-1.5709, bio_penalty=0.0434, clustering_loss=0.0190, disc_loss=1.5709, elbo=482.7492, epoch=965/2001, vae_loss=482.8116]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 966/2000 [00:24<00:26, 39.14it/s, adv_loss=-1.5711, bio_penalty=0.0370, clustering_loss=0.0190, disc_loss=1.5711, elbo=483.9978, epoch=966/2001, vae_loss=484.0539]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 967/2000 [00:24<00:26, 39.14it/s, adv_loss=-1.5709, bio_penalty=0.0280, clustering_loss=0.0190, disc_loss=1.5709, elbo=478.5908, epoch=967/2001, vae_loss=478.6379]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 968/2000 [00:24<00:26, 39.14it/s, adv_loss=-1.5707, bio_penalty=0.0279, clustering_loss=0.0190, disc_loss=1.5707, elbo=479.2404, epoch=968/2001, vae_loss=479.2873]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 969/2000 [00:24<00:26, 39.22it/s, adv_loss=-1.5707, bio_penalty=0.0279, clustering_loss=0.0190, disc_loss=1.5707, elbo=479.2404, epoch=968/2001, vae_loss=479.2873]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 969/2000 [00:24<00:26, 39.22it/s, adv_loss=-1.5706, bio_penalty=0.0296, clustering_loss=0.0190, disc_loss=1.5706, elbo=478.8634, epoch=969/2001, vae_loss=478.9120]
Training: Embeddings batch effect correction using adversrial training:  48%|████▊     | 970/2000 [00:24<00:26, 39.22it/s, adv_loss=-1.5709, bio_penalty=0.0282, clustering_loss=0.0190, disc_loss=1.5709, elbo=479.9612, epoch=970/2001, vae_loss=480.0085]
Training: Embeddings batch effect correction using adversrial training:  49%|████▊     | 971/2000 [00:24<00:26, 39.22it/s, adv_loss=-1.5711, bio_penalty=0.0530, clustering_loss=0.0190, disc_loss=1.5711, elbo=480.1024, epoch=971/2001, vae_loss=480.1744]
Training: Embeddings batch effect correction using adversrial training:  49%|████▊     | 972/2000 [00:24<00:26, 39.22it/s, adv_loss=-1.5709, bio_penalty=0.0467, clustering_loss=0.0190, disc_loss=1.5709, elbo=480.9893, epoch=972/2001, vae_loss=481.0551]
Training: Embeddings batch effect correction using adversrial training:  49%|████▊     | 973/2000 [00:24<00:26, 39.09it/s, adv_loss=-1.5709, bio_penalty=0.0467, clustering_loss=0.0190, disc_loss=1.5709, elbo=480.9893, epoch=972/2001, vae_loss=481.0551]
Training: Embeddings batch effect correction using adversrial training:  49%|████▊     | 973/2000 [00:24<00:26, 39.09it/s, adv_loss=-1.5706, bio_penalty=0.0350, clustering_loss=0.0190, disc_loss=1.5706, elbo=477.7736, epoch=973/2001, vae_loss=477.8275]
Training: Embeddings batch effect correction using adversrial training:  49%|████▊     | 974/2000 [00:24<00:26, 39.09it/s, adv_loss=-1.5706, bio_penalty=0.0279, clustering_loss=0.0190, disc_loss=1.5706, elbo=477.2632, epoch=974/2001, vae_loss=477.3102]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 975/2000 [00:24<00:26, 39.09it/s, adv_loss=-1.5709, bio_penalty=0.0264, clustering_loss=0.0190, disc_loss=1.5709, elbo=481.6935, epoch=975/2001, vae_loss=481.7389]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 976/2000 [00:24<00:26, 39.09it/s, adv_loss=-1.5708, bio_penalty=0.0256, clustering_loss=0.0190, disc_loss=1.5708, elbo=478.5851, epoch=976/2001, vae_loss=478.6298]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 977/2000 [00:24<00:26, 39.20it/s, adv_loss=-1.5708, bio_penalty=0.0256, clustering_loss=0.0190, disc_loss=1.5708, elbo=478.5851, epoch=976/2001, vae_loss=478.6298]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 977/2000 [00:24<00:26, 39.20it/s, adv_loss=-1.5710, bio_penalty=0.0285, clustering_loss=0.0190, disc_loss=1.5710, elbo=481.4598, epoch=977/2001, vae_loss=481.5073]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 978/2000 [00:24<00:26, 39.20it/s, adv_loss=-1.5709, bio_penalty=0.0377, clustering_loss=0.0190, disc_loss=1.5709, elbo=482.6271, epoch=978/2001, vae_loss=482.6838]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 979/2000 [00:24<00:26, 39.20it/s, adv_loss=-1.5709, bio_penalty=0.0484, clustering_loss=0.0190, disc_loss=1.5709, elbo=480.6201, epoch=979/2001, vae_loss=480.6876]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 980/2000 [00:24<00:26, 39.20it/s, adv_loss=-1.5709, bio_penalty=0.0453, clustering_loss=0.0190, disc_loss=1.5709, elbo=483.9225, epoch=980/2001, vae_loss=483.9868]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 981/2000 [00:24<00:25, 39.31it/s, adv_loss=-1.5709, bio_penalty=0.0453, clustering_loss=0.0190, disc_loss=1.5709, elbo=483.9225, epoch=980/2001, vae_loss=483.9868]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 981/2000 [00:25<00:25, 39.31it/s, adv_loss=-1.5709, bio_penalty=0.0387, clustering_loss=0.0190, disc_loss=1.5709, elbo=478.8382, epoch=981/2001, vae_loss=478.8959]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 982/2000 [00:25<00:25, 39.31it/s, adv_loss=-1.5711, bio_penalty=0.0345, clustering_loss=0.0190, disc_loss=1.5711, elbo=482.0519, epoch=982/2001, vae_loss=482.1055]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 983/2000 [00:25<00:25, 39.31it/s, adv_loss=-1.5710, bio_penalty=0.0311, clustering_loss=0.0190, disc_loss=1.5710, elbo=484.3964, epoch=983/2001, vae_loss=484.4465]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 984/2000 [00:25<00:25, 39.31it/s, adv_loss=-1.5708, bio_penalty=0.0295, clustering_loss=0.0190, disc_loss=1.5708, elbo=476.7501, epoch=984/2001, vae_loss=476.7986]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 985/2000 [00:25<00:25, 39.31it/s, adv_loss=-1.5709, bio_penalty=0.0319, clustering_loss=0.0190, disc_loss=1.5709, elbo=479.9333, epoch=985/2001, vae_loss=479.9843]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 986/2000 [00:25<00:25, 39.65it/s, adv_loss=-1.5709, bio_penalty=0.0319, clustering_loss=0.0190, disc_loss=1.5709, elbo=479.9333, epoch=985/2001, vae_loss=479.9843]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 986/2000 [00:25<00:25, 39.65it/s, adv_loss=-1.5711, bio_penalty=0.0355, clustering_loss=0.0190, disc_loss=1.5711, elbo=477.6082, epoch=986/2001, vae_loss=477.6628]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 987/2000 [00:25<00:25, 39.65it/s, adv_loss=-1.5708, bio_penalty=0.0356, clustering_loss=0.0190, disc_loss=1.5708, elbo=476.3994, epoch=987/2001, vae_loss=476.4540]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 988/2000 [00:25<00:25, 39.65it/s, adv_loss=-1.5708, bio_penalty=0.0362, clustering_loss=0.0190, disc_loss=1.5708, elbo=475.3899, epoch=988/2001, vae_loss=475.4451]
Training: Embeddings batch effect correction using adversrial training:  49%|████▉     | 989/2000 [00:25<00:25, 39.65it/s, adv_loss=-1.5707, bio_penalty=0.0391, clustering_loss=0.0190, disc_loss=1.5707, elbo=476.0861, epoch=989/2001, vae_loss=476.1442]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 990/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5707, bio_penalty=0.0391, clustering_loss=0.0190, disc_loss=1.5707, elbo=476.0861, epoch=989/2001, vae_loss=476.1442]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 990/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5707, bio_penalty=0.0313, clustering_loss=0.0190, disc_loss=1.5707, elbo=476.0938, epoch=990/2001, vae_loss=476.1442]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 991/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5709, bio_penalty=0.0280, clustering_loss=0.0190, disc_loss=1.5709, elbo=477.8987, epoch=991/2001, vae_loss=477.9458]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 992/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5707, bio_penalty=0.0284, clustering_loss=0.0190, disc_loss=1.5707, elbo=476.7897, epoch=992/2001, vae_loss=476.8371]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 993/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5705, bio_penalty=0.0350, clustering_loss=0.0190, disc_loss=1.5705, elbo=479.8062, epoch=993/2001, vae_loss=479.8602]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 994/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5708, bio_penalty=0.0365, clustering_loss=0.0190, disc_loss=1.5708, elbo=475.0710, epoch=994/2001, vae_loss=475.1265]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 995/2000 [00:25<00:25, 39.82it/s, adv_loss=-1.5708, bio_penalty=0.0365, clustering_loss=0.0190, disc_loss=1.5708, elbo=475.0710, epoch=994/2001, vae_loss=475.1265]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 995/2000 [00:25<00:25, 39.82it/s, adv_loss=-1.5706, bio_penalty=0.0420, clustering_loss=0.0190, disc_loss=1.5706, elbo=474.8135, epoch=995/2001, vae_loss=474.8746]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 996/2000 [00:25<00:25, 39.82it/s, adv_loss=-1.5708, bio_penalty=0.0297, clustering_loss=0.0190, disc_loss=1.5708, elbo=474.6740, epoch=996/2001, vae_loss=474.7227]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 997/2000 [00:25<00:25, 39.82it/s, adv_loss=-1.5710, bio_penalty=0.0286, clustering_loss=0.0190, disc_loss=1.5710, elbo=474.5378, epoch=997/2001, vae_loss=474.5855]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 998/2000 [00:25<00:25, 39.82it/s, adv_loss=-1.5707, bio_penalty=0.0290, clustering_loss=0.0190, disc_loss=1.5707, elbo=475.2772, epoch=998/2001, vae_loss=475.3252]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 999/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5707, bio_penalty=0.0290, clustering_loss=0.0190, disc_loss=1.5707, elbo=475.2772, epoch=998/2001, vae_loss=475.3252]
Training: Embeddings batch effect correction using adversrial training:  50%|████▉     | 999/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5703, bio_penalty=0.0317, clustering_loss=0.0190, disc_loss=1.5703, elbo=475.4019, epoch=999/2001, vae_loss=475.4527]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1000/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5704, bio_penalty=0.0367, clustering_loss=0.0190, disc_loss=1.5704, elbo=475.2332, epoch=1000/2001, vae_loss=475.2889]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1001/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5706, bio_penalty=0.0469, clustering_loss=0.0190, disc_loss=1.5706, elbo=478.1586, epoch=1001/2001, vae_loss=478.2245]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1002/2000 [00:25<00:25, 39.64it/s, adv_loss=-1.5704, bio_penalty=0.0533, clustering_loss=0.0190, disc_loss=1.5704, elbo=472.9013, epoch=1002/2001, vae_loss=472.9736]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1003/2000 [00:25<00:25, 39.73it/s, adv_loss=-1.5704, bio_penalty=0.0533, clustering_loss=0.0190, disc_loss=1.5704, elbo=472.9013, epoch=1002/2001, vae_loss=472.9736]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1003/2000 [00:25<00:25, 39.73it/s, adv_loss=-1.5706, bio_penalty=0.0559, clustering_loss=0.0190, disc_loss=1.5706, elbo=472.2055, epoch=1003/2001, vae_loss=472.2805]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1004/2000 [00:25<00:25, 39.73it/s, adv_loss=-1.5706, bio_penalty=0.0551, clustering_loss=0.0190, disc_loss=1.5706, elbo=504.9023, epoch=1004/2001, vae_loss=504.9765]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1005/2000 [00:25<00:25, 39.73it/s, adv_loss=-1.5709, bio_penalty=0.0568, clustering_loss=0.0190, disc_loss=1.5709, elbo=482.2404, epoch=1005/2001, vae_loss=482.3163]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1006/2000 [00:25<00:25, 39.73it/s, adv_loss=-1.5707, bio_penalty=0.0638, clustering_loss=0.0190, disc_loss=1.5707, elbo=481.0119, epoch=1006/2001, vae_loss=481.0947]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1007/2000 [00:25<00:24, 39.73it/s, adv_loss=-1.5707, bio_penalty=0.0723, clustering_loss=0.0190, disc_loss=1.5707, elbo=475.3273, epoch=1007/2001, vae_loss=475.4187]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1008/2000 [00:25<00:24, 39.97it/s, adv_loss=-1.5707, bio_penalty=0.0723, clustering_loss=0.0190, disc_loss=1.5707, elbo=475.3273, epoch=1007/2001, vae_loss=475.4187]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1008/2000 [00:25<00:24, 39.97it/s, adv_loss=-1.5707, bio_penalty=0.0639, clustering_loss=0.0190, disc_loss=1.5707, elbo=482.9100, epoch=1008/2001, vae_loss=482.9930]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1009/2000 [00:25<00:24, 39.97it/s, adv_loss=-1.5708, bio_penalty=0.0709, clustering_loss=0.0190, disc_loss=1.5708, elbo=479.1944, epoch=1009/2001, vae_loss=479.2843]
Training: Embeddings batch effect correction using adversrial training:  50%|█████     | 1010/2000 [00:25<00:24, 39.97it/s, adv_loss=-1.5707, bio_penalty=0.0673, clustering_loss=0.0190, disc_loss=1.5707, elbo=477.4573, epoch=1010/2001, vae_loss=477.5436]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1011/2000 [00:25<00:24, 39.97it/s, adv_loss=-1.5707, bio_penalty=0.0653, clustering_loss=0.0190, disc_loss=1.5707, elbo=479.1891, epoch=1011/2001, vae_loss=479.2734]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1012/2000 [00:25<00:24, 39.93it/s, adv_loss=-1.5707, bio_penalty=0.0653, clustering_loss=0.0190, disc_loss=1.5707, elbo=479.1891, epoch=1011/2001, vae_loss=479.2734]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1012/2000 [00:25<00:24, 39.93it/s, adv_loss=-1.5706, bio_penalty=0.0640, clustering_loss=0.0190, disc_loss=1.5706, elbo=474.0221, epoch=1012/2001, vae_loss=474.1051]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1013/2000 [00:25<00:24, 39.93it/s, adv_loss=-1.5705, bio_penalty=0.0678, clustering_loss=0.0190, disc_loss=1.5705, elbo=489.5045, epoch=1013/2001, vae_loss=489.5913]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1014/2000 [00:25<00:24, 39.93it/s, adv_loss=-1.5706, bio_penalty=0.0750, clustering_loss=0.0190, disc_loss=1.5706, elbo=475.0630, epoch=1014/2001, vae_loss=475.1570]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1015/2000 [00:25<00:24, 39.93it/s, adv_loss=-1.5706, bio_penalty=0.0817, clustering_loss=0.0190, disc_loss=1.5706, elbo=481.1974, epoch=1015/2001, vae_loss=481.2981]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1016/2000 [00:25<00:24, 39.90it/s, adv_loss=-1.5706, bio_penalty=0.0817, clustering_loss=0.0190, disc_loss=1.5706, elbo=481.1974, epoch=1015/2001, vae_loss=481.2981]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1016/2000 [00:25<00:24, 39.90it/s, adv_loss=-1.5708, bio_penalty=0.0776, clustering_loss=0.0190, disc_loss=1.5708, elbo=475.6294, epoch=1016/2001, vae_loss=475.7260]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1017/2000 [00:25<00:24, 39.90it/s, adv_loss=-1.5709, bio_penalty=0.0793, clustering_loss=0.0190, disc_loss=1.5709, elbo=478.8128, epoch=1017/2001, vae_loss=478.9112]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1018/2000 [00:25<00:24, 39.90it/s, adv_loss=-1.5711, bio_penalty=0.0812, clustering_loss=0.0190, disc_loss=1.5711, elbo=475.5673, epoch=1018/2001, vae_loss=475.6675]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1019/2000 [00:25<00:24, 39.90it/s, adv_loss=-1.5710, bio_penalty=0.0706, clustering_loss=0.0190, disc_loss=1.5710, elbo=475.0534, epoch=1019/2001, vae_loss=475.1431]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1020/2000 [00:25<00:24, 39.90it/s, adv_loss=-1.5711, bio_penalty=0.0576, clustering_loss=0.0190, disc_loss=1.5711, elbo=476.2642, epoch=1020/2001, vae_loss=476.3409]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1021/2000 [00:25<00:24, 40.02it/s, adv_loss=-1.5711, bio_penalty=0.0576, clustering_loss=0.0190, disc_loss=1.5711, elbo=476.2642, epoch=1020/2001, vae_loss=476.3409]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1021/2000 [00:26<00:24, 40.02it/s, adv_loss=-1.5709, bio_penalty=0.0508, clustering_loss=0.0190, disc_loss=1.5709, elbo=474.1072, epoch=1021/2001, vae_loss=474.1770]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1022/2000 [00:26<00:24, 40.02it/s, adv_loss=-1.5709, bio_penalty=0.0487, clustering_loss=0.0190, disc_loss=1.5709, elbo=479.3448, epoch=1022/2001, vae_loss=479.4125]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1023/2000 [00:26<00:24, 40.02it/s, adv_loss=-1.5708, bio_penalty=0.0727, clustering_loss=0.0190, disc_loss=1.5708, elbo=473.1673, epoch=1023/2001, vae_loss=473.2590]
Training: Embeddings batch effect correction using adversrial training:  51%|█████     | 1024/2000 [00:26<00:24, 40.02it/s, adv_loss=-1.5710, bio_penalty=0.0824, clustering_loss=0.0190, disc_loss=1.5710, elbo=472.2551, epoch=1024/2001, vae_loss=472.3565]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 1025/2000 [00:26<00:24, 40.02it/s, adv_loss=-1.5709, bio_penalty=0.0732, clustering_loss=0.0190, disc_loss=1.5709, elbo=475.8192, epoch=1025/2001, vae_loss=475.9114]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 1026/2000 [00:26<00:24, 40.07it/s, adv_loss=-1.5709, bio_penalty=0.0732, clustering_loss=0.0190, disc_loss=1.5709, elbo=475.8192, epoch=1025/2001, vae_loss=475.9114]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 1026/2000 [00:26<00:24, 40.07it/s, adv_loss=-1.5710, bio_penalty=0.0555, clustering_loss=0.0190, disc_loss=1.5710, elbo=469.9259, epoch=1026/2001, vae_loss=470.0005]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 1027/2000 [00:26<00:24, 40.07it/s, adv_loss=-1.5708, bio_penalty=0.0491, clustering_loss=0.0190, disc_loss=1.5708, elbo=473.2657, epoch=1027/2001, vae_loss=473.3339]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 1028/2000 [00:26<00:24, 40.07it/s, adv_loss=-1.5709, bio_penalty=0.0472, clustering_loss=0.0190, disc_loss=1.5709, elbo=473.9084, epoch=1028/2001, vae_loss=473.9747]
Training: Embeddings batch effect correction using adversrial training:  51%|█████▏    | 1029/2000 [00:26<00:24, 40.07it/s, adv_loss=-1.5710, bio_penalty=0.0508, clustering_loss=0.0190, disc_loss=1.5710, elbo=482.9643, epoch=1029/2001, vae_loss=483.0341]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1030/2000 [00:26<00:24, 40.07it/s, adv_loss=-1.5708, bio_penalty=0.0420, clustering_loss=0.0190, disc_loss=1.5708, elbo=469.6022, epoch=1030/2001, vae_loss=469.6632]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1031/2000 [00:26<00:24, 39.81it/s, adv_loss=-1.5708, bio_penalty=0.0420, clustering_loss=0.0190, disc_loss=1.5708, elbo=469.6022, epoch=1030/2001, vae_loss=469.6632]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1031/2000 [00:26<00:24, 39.81it/s, adv_loss=-1.5707, bio_penalty=0.0363, clustering_loss=0.0190, disc_loss=1.5707, elbo=471.7051, epoch=1031/2001, vae_loss=471.7605]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1032/2000 [00:26<00:24, 39.81it/s, adv_loss=-1.5706, bio_penalty=0.0384, clustering_loss=0.0190, disc_loss=1.5706, elbo=471.3396, epoch=1032/2001, vae_loss=471.3970]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1033/2000 [00:26<00:24, 39.81it/s, adv_loss=-1.5706, bio_penalty=0.0413, clustering_loss=0.0190, disc_loss=1.5706, elbo=474.3755, epoch=1033/2001, vae_loss=474.4358]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1034/2000 [00:26<00:24, 39.81it/s, adv_loss=-1.5705, bio_penalty=0.0526, clustering_loss=0.0190, disc_loss=1.5705, elbo=470.8450, epoch=1034/2001, vae_loss=470.9167]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1035/2000 [00:26<00:24, 39.78it/s, adv_loss=-1.5705, bio_penalty=0.0526, clustering_loss=0.0190, disc_loss=1.5705, elbo=470.8450, epoch=1034/2001, vae_loss=470.9167]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1035/2000 [00:26<00:24, 39.78it/s, adv_loss=-1.5704, bio_penalty=0.0825, clustering_loss=0.0190, disc_loss=1.5704, elbo=471.3267, epoch=1035/2001, vae_loss=471.4282]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1036/2000 [00:26<00:24, 39.78it/s, adv_loss=-1.5704, bio_penalty=0.1021, clustering_loss=0.0190, disc_loss=1.5704, elbo=471.3285, epoch=1036/2001, vae_loss=471.4496]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1037/2000 [00:26<00:24, 39.78it/s, adv_loss=-1.5704, bio_penalty=0.1128, clustering_loss=0.0190, disc_loss=1.5704, elbo=475.1855, epoch=1037/2001, vae_loss=475.3173]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1038/2000 [00:26<00:24, 39.78it/s, adv_loss=-1.5705, bio_penalty=0.1056, clustering_loss=0.0190, disc_loss=1.5705, elbo=473.0256, epoch=1038/2001, vae_loss=473.1503]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1039/2000 [00:26<00:24, 39.33it/s, adv_loss=-1.5705, bio_penalty=0.1056, clustering_loss=0.0190, disc_loss=1.5705, elbo=473.0256, epoch=1038/2001, vae_loss=473.1503]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1039/2000 [00:26<00:24, 39.33it/s, adv_loss=-1.5703, bio_penalty=0.0998, clustering_loss=0.0190, disc_loss=1.5703, elbo=474.3131, epoch=1039/2001, vae_loss=474.4320]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1040/2000 [00:26<00:24, 39.33it/s, adv_loss=-1.5703, bio_penalty=0.0698, clustering_loss=0.0190, disc_loss=1.5703, elbo=471.7614, epoch=1040/2001, vae_loss=471.8503]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1041/2000 [00:26<00:24, 39.33it/s, adv_loss=-1.5704, bio_penalty=0.0576, clustering_loss=0.0190, disc_loss=1.5704, elbo=470.5453, epoch=1041/2001, vae_loss=470.6220]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1042/2000 [00:26<00:24, 39.33it/s, adv_loss=-1.5702, bio_penalty=0.0479, clustering_loss=0.0190, disc_loss=1.5702, elbo=470.5393, epoch=1042/2001, vae_loss=470.6063]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1043/2000 [00:26<00:24, 39.23it/s, adv_loss=-1.5702, bio_penalty=0.0479, clustering_loss=0.0190, disc_loss=1.5702, elbo=470.5393, epoch=1042/2001, vae_loss=470.6063]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1043/2000 [00:26<00:24, 39.23it/s, adv_loss=-1.5701, bio_penalty=0.0461, clustering_loss=0.0190, disc_loss=1.5701, elbo=468.5569, epoch=1043/2001, vae_loss=468.6220]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1044/2000 [00:26<00:24, 39.23it/s, adv_loss=-1.5701, bio_penalty=0.0423, clustering_loss=0.0190, disc_loss=1.5701, elbo=469.2834, epoch=1044/2001, vae_loss=469.3448]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1045/2000 [00:26<00:24, 39.23it/s, adv_loss=-1.5702, bio_penalty=0.0478, clustering_loss=0.0190, disc_loss=1.5702, elbo=468.1886, epoch=1045/2001, vae_loss=468.2555]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1046/2000 [00:26<00:24, 39.23it/s, adv_loss=-1.5702, bio_penalty=0.0553, clustering_loss=0.0190, disc_loss=1.5702, elbo=465.3525, epoch=1046/2001, vae_loss=465.4268]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1047/2000 [00:26<00:24, 39.24it/s, adv_loss=-1.5702, bio_penalty=0.0553, clustering_loss=0.0190, disc_loss=1.5702, elbo=465.3525, epoch=1046/2001, vae_loss=465.4268]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1047/2000 [00:26<00:24, 39.24it/s, adv_loss=-1.5700, bio_penalty=0.0646, clustering_loss=0.0190, disc_loss=1.5700, elbo=465.6123, epoch=1047/2001, vae_loss=465.6959]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1048/2000 [00:26<00:24, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0722, clustering_loss=0.0190, disc_loss=1.5701, elbo=466.2151, epoch=1048/2001, vae_loss=466.3063]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▏    | 1049/2000 [00:26<00:24, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0825, clustering_loss=0.0190, disc_loss=1.5701, elbo=468.0813, epoch=1049/2001, vae_loss=468.1828]
Training: Embeddings batch effect correction using adversrial training:  52%|█████▎    | 1050/2000 [00:26<00:24, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0920, clustering_loss=0.0190, disc_loss=1.5701, elbo=467.4467, epoch=1050/2001, vae_loss=467.5578]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1051/2000 [00:26<00:24, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0962, clustering_loss=0.0190, disc_loss=1.5701, elbo=469.1888, epoch=1051/2001, vae_loss=469.3040]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1052/2000 [00:26<00:24, 39.48it/s, adv_loss=-1.5701, bio_penalty=0.0962, clustering_loss=0.0190, disc_loss=1.5701, elbo=469.1888, epoch=1051/2001, vae_loss=469.3040]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1052/2000 [00:26<00:24, 39.48it/s, adv_loss=-1.5701, bio_penalty=0.0861, clustering_loss=0.0190, disc_loss=1.5701, elbo=464.9006, epoch=1052/2001, vae_loss=465.0057]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1053/2000 [00:26<00:23, 39.48it/s, adv_loss=-1.5701, bio_penalty=0.0745, clustering_loss=0.0190, disc_loss=1.5701, elbo=462.6291, epoch=1053/2001, vae_loss=462.7227]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1054/2000 [00:26<00:23, 39.48it/s, adv_loss=-1.5701, bio_penalty=0.0673, clustering_loss=0.0190, disc_loss=1.5701, elbo=463.9699, epoch=1054/2001, vae_loss=464.0562]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1055/2000 [00:26<00:23, 39.48it/s, adv_loss=-1.5701, bio_penalty=0.0652, clustering_loss=0.0190, disc_loss=1.5701, elbo=464.6788, epoch=1055/2001, vae_loss=464.7630]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1056/2000 [00:26<00:23, 39.37it/s, adv_loss=-1.5701, bio_penalty=0.0652, clustering_loss=0.0190, disc_loss=1.5701, elbo=464.6788, epoch=1055/2001, vae_loss=464.7630]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1056/2000 [00:26<00:23, 39.37it/s, adv_loss=-1.5700, bio_penalty=0.0620, clustering_loss=0.0190, disc_loss=1.5700, elbo=464.5647, epoch=1056/2001, vae_loss=464.6457]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1057/2000 [00:26<00:23, 39.37it/s, adv_loss=-1.5699, bio_penalty=0.0642, clustering_loss=0.0190, disc_loss=1.5699, elbo=461.4223, epoch=1057/2001, vae_loss=461.5055]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1058/2000 [00:26<00:23, 39.37it/s, adv_loss=-1.5700, bio_penalty=0.0698, clustering_loss=0.0190, disc_loss=1.5700, elbo=464.7317, epoch=1058/2001, vae_loss=464.8205]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1059/2000 [00:26<00:23, 39.37it/s, adv_loss=-1.5700, bio_penalty=0.0560, clustering_loss=0.0190, disc_loss=1.5700, elbo=463.7144, epoch=1059/2001, vae_loss=463.7895]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1060/2000 [00:27<00:23, 39.37it/s, adv_loss=-1.5701, bio_penalty=0.0519, clustering_loss=0.0190, disc_loss=1.5701, elbo=462.1442, epoch=1060/2001, vae_loss=462.2151]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1061/2000 [00:27<00:23, 39.67it/s, adv_loss=-1.5701, bio_penalty=0.0519, clustering_loss=0.0190, disc_loss=1.5701, elbo=462.1442, epoch=1060/2001, vae_loss=462.2151]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1061/2000 [00:27<00:23, 39.67it/s, adv_loss=-1.5701, bio_penalty=0.0492, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.5125, epoch=1061/2001, vae_loss=459.5808]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1062/2000 [00:27<00:23, 39.67it/s, adv_loss=-1.5701, bio_penalty=0.0482, clustering_loss=0.0190, disc_loss=1.5701, elbo=462.1154, epoch=1062/2001, vae_loss=462.1826]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1063/2000 [00:27<00:23, 39.67it/s, adv_loss=-1.5701, bio_penalty=0.0455, clustering_loss=0.0190, disc_loss=1.5701, elbo=466.7052, epoch=1063/2001, vae_loss=466.7698]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1064/2000 [00:27<00:23, 39.67it/s, adv_loss=-1.5700, bio_penalty=0.0454, clustering_loss=0.0190, disc_loss=1.5700, elbo=461.3320, epoch=1064/2001, vae_loss=461.3964]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1065/2000 [00:27<00:23, 39.67it/s, adv_loss=-1.5700, bio_penalty=0.0491, clustering_loss=0.0190, disc_loss=1.5700, elbo=461.4035, epoch=1065/2001, vae_loss=461.4716]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1066/2000 [00:27<00:23, 39.78it/s, adv_loss=-1.5700, bio_penalty=0.0491, clustering_loss=0.0190, disc_loss=1.5700, elbo=461.4035, epoch=1065/2001, vae_loss=461.4716]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1066/2000 [00:27<00:23, 39.78it/s, adv_loss=-1.5701, bio_penalty=0.0536, clustering_loss=0.0190, disc_loss=1.5701, elbo=466.8846, epoch=1066/2001, vae_loss=466.9572]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1067/2000 [00:27<00:23, 39.78it/s, adv_loss=-1.5700, bio_penalty=0.0478, clustering_loss=0.0190, disc_loss=1.5700, elbo=464.9768, epoch=1067/2001, vae_loss=465.0437]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1068/2000 [00:27<00:23, 39.78it/s, adv_loss=-1.5700, bio_penalty=0.0374, clustering_loss=0.0190, disc_loss=1.5700, elbo=471.9880, epoch=1068/2001, vae_loss=472.0445]
Training: Embeddings batch effect correction using adversrial training:  53%|█████▎    | 1069/2000 [00:27<00:23, 39.78it/s, adv_loss=-1.5701, bio_penalty=0.0403, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.7532, epoch=1069/2001, vae_loss=461.8125]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 1070/2000 [00:27<00:23, 39.73it/s, adv_loss=-1.5701, bio_penalty=0.0403, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.7532, epoch=1069/2001, vae_loss=461.8125]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 1070/2000 [00:27<00:23, 39.73it/s, adv_loss=-1.5700, bio_penalty=0.0462, clustering_loss=0.0190, disc_loss=1.5700, elbo=461.6182, epoch=1070/2001, vae_loss=461.6834]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 1071/2000 [00:27<00:23, 39.73it/s, adv_loss=-1.5702, bio_penalty=0.0366, clustering_loss=0.0190, disc_loss=1.5702, elbo=463.8241, epoch=1071/2001, vae_loss=463.8797]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 1072/2000 [00:27<00:23, 39.73it/s, adv_loss=-1.5701, bio_penalty=0.0299, clustering_loss=0.0190, disc_loss=1.5701, elbo=463.7313, epoch=1072/2001, vae_loss=463.7802]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 1073/2000 [00:27<00:23, 39.73it/s, adv_loss=-1.5701, bio_penalty=0.0315, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.9322, epoch=1073/2001, vae_loss=459.9828]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▎    | 1074/2000 [00:27<00:23, 39.73it/s, adv_loss=-1.5701, bio_penalty=0.0383, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.0308, epoch=1074/2001, vae_loss=461.0881]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1075/2000 [00:27<00:23, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0383, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.0308, epoch=1074/2001, vae_loss=461.0881]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1075/2000 [00:27<00:23, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0399, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.4197, epoch=1075/2001, vae_loss=461.4787]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1076/2000 [00:27<00:23, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0388, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.8920, epoch=1076/2001, vae_loss=459.9499]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1077/2000 [00:27<00:23, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0384, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.8770, epoch=1077/2001, vae_loss=458.9345]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1078/2000 [00:27<00:23, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0431, clustering_loss=0.0190, disc_loss=1.5701, elbo=460.1920, epoch=1078/2001, vae_loss=460.2541]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1079/2000 [00:27<00:23, 39.64it/s, adv_loss=-1.5701, bio_penalty=0.0431, clustering_loss=0.0190, disc_loss=1.5701, elbo=460.1920, epoch=1078/2001, vae_loss=460.2541]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1079/2000 [00:27<00:23, 39.64it/s, adv_loss=-1.5702, bio_penalty=0.0478, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.4772, epoch=1079/2001, vae_loss=460.5440]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1080/2000 [00:27<00:23, 39.64it/s, adv_loss=-1.5703, bio_penalty=0.0466, clustering_loss=0.0190, disc_loss=1.5703, elbo=461.7387, epoch=1080/2001, vae_loss=461.8043]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1081/2000 [00:27<00:23, 39.64it/s, adv_loss=-1.5703, bio_penalty=0.0415, clustering_loss=0.0190, disc_loss=1.5703, elbo=462.0122, epoch=1081/2001, vae_loss=462.0728]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1082/2000 [00:27<00:23, 39.64it/s, adv_loss=-1.5702, bio_penalty=0.0495, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.3279, epoch=1082/2001, vae_loss=461.3964]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1083/2000 [00:27<00:23, 39.64it/s, adv_loss=-1.5702, bio_penalty=0.0551, clustering_loss=0.0190, disc_loss=1.5702, elbo=464.5657, epoch=1083/2001, vae_loss=464.6398]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1084/2000 [00:27<00:23, 39.81it/s, adv_loss=-1.5702, bio_penalty=0.0551, clustering_loss=0.0190, disc_loss=1.5702, elbo=464.5657, epoch=1083/2001, vae_loss=464.6398]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1084/2000 [00:27<00:23, 39.81it/s, adv_loss=-1.5703, bio_penalty=0.0663, clustering_loss=0.0190, disc_loss=1.5703, elbo=460.7052, epoch=1084/2001, vae_loss=460.7905]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1085/2000 [00:27<00:22, 39.81it/s, adv_loss=-1.5703, bio_penalty=0.0723, clustering_loss=0.0190, disc_loss=1.5703, elbo=462.2474, epoch=1085/2001, vae_loss=462.3387]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1086/2000 [00:27<00:22, 39.81it/s, adv_loss=-1.5703, bio_penalty=0.0757, clustering_loss=0.0190, disc_loss=1.5703, elbo=459.7140, epoch=1086/2001, vae_loss=459.8087]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1087/2000 [00:27<00:22, 39.81it/s, adv_loss=-1.5703, bio_penalty=0.0547, clustering_loss=0.0190, disc_loss=1.5703, elbo=461.8846, epoch=1087/2001, vae_loss=461.9583]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1088/2000 [00:27<00:22, 39.81it/s, adv_loss=-1.5702, bio_penalty=0.0489, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.6682, epoch=1088/2001, vae_loss=459.7361]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1089/2000 [00:27<00:22, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0489, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.6682, epoch=1088/2001, vae_loss=459.7361]
Training: Embeddings batch effect correction using adversrial training:  54%|█████▍    | 1089/2000 [00:27<00:22, 40.14it/s, adv_loss=-1.5703, bio_penalty=0.0556, clustering_loss=0.0190, disc_loss=1.5703, elbo=460.8840, epoch=1089/2001, vae_loss=460.9586]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1090/2000 [00:27<00:22, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0669, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.8776, epoch=1090/2001, vae_loss=458.9636]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1091/2000 [00:27<00:22, 40.14it/s, adv_loss=-1.5704, bio_penalty=0.0695, clustering_loss=0.0190, disc_loss=1.5704, elbo=460.5574, epoch=1091/2001, vae_loss=460.6459]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1092/2000 [00:27<00:22, 40.14it/s, adv_loss=-1.5703, bio_penalty=0.0618, clustering_loss=0.0190, disc_loss=1.5703, elbo=461.1497, epoch=1092/2001, vae_loss=461.2306]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1093/2000 [00:27<00:22, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0549, clustering_loss=0.0190, disc_loss=1.5702, elbo=465.0378, epoch=1093/2001, vae_loss=465.1117]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1094/2000 [00:27<00:22, 39.89it/s, adv_loss=-1.5702, bio_penalty=0.0549, clustering_loss=0.0190, disc_loss=1.5702, elbo=465.0378, epoch=1093/2001, vae_loss=465.1117]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1094/2000 [00:27<00:22, 39.89it/s, adv_loss=-1.5704, bio_penalty=0.0425, clustering_loss=0.0190, disc_loss=1.5704, elbo=458.8820, epoch=1094/2001, vae_loss=458.9435]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1095/2000 [00:27<00:22, 39.89it/s, adv_loss=-1.5703, bio_penalty=0.0416, clustering_loss=0.0190, disc_loss=1.5703, elbo=461.1046, epoch=1095/2001, vae_loss=461.1652]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1096/2000 [00:27<00:22, 39.89it/s, adv_loss=-1.5704, bio_penalty=0.0579, clustering_loss=0.0190, disc_loss=1.5704, elbo=459.6981, epoch=1096/2001, vae_loss=459.7750]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1097/2000 [00:27<00:22, 39.89it/s, adv_loss=-1.5703, bio_penalty=0.0618, clustering_loss=0.0190, disc_loss=1.5703, elbo=459.2240, epoch=1097/2001, vae_loss=459.3049]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1098/2000 [00:27<00:22, 39.89it/s, adv_loss=-1.5704, bio_penalty=0.0518, clustering_loss=0.0190, disc_loss=1.5704, elbo=459.8620, epoch=1098/2001, vae_loss=459.9329]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1099/2000 [00:27<00:22, 40.04it/s, adv_loss=-1.5704, bio_penalty=0.0518, clustering_loss=0.0190, disc_loss=1.5704, elbo=459.8620, epoch=1098/2001, vae_loss=459.9329]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▍    | 1099/2000 [00:27<00:22, 40.04it/s, adv_loss=-1.5703, bio_penalty=0.0381, clustering_loss=0.0190, disc_loss=1.5703, elbo=458.1513, epoch=1099/2001, vae_loss=458.2085]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1100/2000 [00:28<00:22, 40.04it/s, adv_loss=-1.5704, bio_penalty=0.0289, clustering_loss=0.0190, disc_loss=1.5704, elbo=460.1898, epoch=1100/2001, vae_loss=460.2377]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1101/2000 [00:28<00:22, 40.04it/s, adv_loss=-1.5703, bio_penalty=0.0242, clustering_loss=0.0190, disc_loss=1.5703, elbo=463.0965, epoch=1101/2001, vae_loss=463.1397]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1102/2000 [00:28<00:22, 40.04it/s, adv_loss=-1.5704, bio_penalty=0.0219, clustering_loss=0.0190, disc_loss=1.5704, elbo=461.8906, epoch=1102/2001, vae_loss=461.9315]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1103/2000 [00:28<00:22, 40.04it/s, adv_loss=-1.5704, bio_penalty=0.0324, clustering_loss=0.0190, disc_loss=1.5704, elbo=461.1251, epoch=1103/2001, vae_loss=461.1766]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1104/2000 [00:28<00:22, 40.18it/s, adv_loss=-1.5704, bio_penalty=0.0324, clustering_loss=0.0190, disc_loss=1.5704, elbo=461.1251, epoch=1103/2001, vae_loss=461.1766]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1104/2000 [00:28<00:22, 40.18it/s, adv_loss=-1.5703, bio_penalty=0.0314, clustering_loss=0.0190, disc_loss=1.5703, elbo=459.5406, epoch=1104/2001, vae_loss=459.5911]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1105/2000 [00:28<00:22, 40.18it/s, adv_loss=-1.5703, bio_penalty=0.0276, clustering_loss=0.0190, disc_loss=1.5703, elbo=458.0515, epoch=1105/2001, vae_loss=458.0981]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1106/2000 [00:28<00:22, 40.18it/s, adv_loss=-1.5703, bio_penalty=0.0213, clustering_loss=0.0190, disc_loss=1.5703, elbo=456.9280, epoch=1106/2001, vae_loss=456.9684]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1107/2000 [00:28<00:22, 40.18it/s, adv_loss=-1.5703, bio_penalty=0.0180, clustering_loss=0.0190, disc_loss=1.5703, elbo=459.7650, epoch=1107/2001, vae_loss=459.8020]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1108/2000 [00:28<00:22, 40.18it/s, adv_loss=-1.5704, bio_penalty=0.0200, clustering_loss=0.0190, disc_loss=1.5704, elbo=460.2436, epoch=1108/2001, vae_loss=460.2827]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1109/2000 [00:28<00:22, 39.90it/s, adv_loss=-1.5704, bio_penalty=0.0200, clustering_loss=0.0190, disc_loss=1.5704, elbo=460.2436, epoch=1108/2001, vae_loss=460.2827]
Training: Embeddings batch effect correction using adversrial training:  55%|█████▌    | 1109/2000 [00:28<00:22, 39.90it/s, adv_loss=-1.5703, bio_penalty=0.0213, clustering_loss=0.0190, disc_loss=1.5703, elbo=458.6098, epoch=1109/2001, vae_loss=458.6502]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1110/2000 [00:28<00:22, 39.90it/s, adv_loss=-1.5703, bio_penalty=0.0214, clustering_loss=0.0190, disc_loss=1.5703, elbo=463.3127, epoch=1110/2001, vae_loss=463.3531]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1111/2000 [00:28<00:22, 39.90it/s, adv_loss=-1.5703, bio_penalty=0.0179, clustering_loss=0.0190, disc_loss=1.5703, elbo=457.8933, epoch=1111/2001, vae_loss=457.9303]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1112/2000 [00:28<00:22, 39.90it/s, adv_loss=-1.5703, bio_penalty=0.0200, clustering_loss=0.0190, disc_loss=1.5703, elbo=460.5957, epoch=1112/2001, vae_loss=460.6347]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1113/2000 [00:28<00:22, 39.68it/s, adv_loss=-1.5703, bio_penalty=0.0200, clustering_loss=0.0190, disc_loss=1.5703, elbo=460.5957, epoch=1112/2001, vae_loss=460.6347]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1113/2000 [00:28<00:22, 39.68it/s, adv_loss=-1.5702, bio_penalty=0.0162, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.2219, epoch=1113/2001, vae_loss=459.2571]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1114/2000 [00:28<00:22, 39.68it/s, adv_loss=-1.5702, bio_penalty=0.0139, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.7661, epoch=1114/2001, vae_loss=458.7990]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1115/2000 [00:28<00:22, 39.68it/s, adv_loss=-1.5702, bio_penalty=0.0136, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.0969, epoch=1115/2001, vae_loss=460.1296]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1116/2000 [00:28<00:22, 39.68it/s, adv_loss=-1.5703, bio_penalty=0.0177, clustering_loss=0.0190, disc_loss=1.5703, elbo=459.2293, epoch=1116/2001, vae_loss=459.2660]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1117/2000 [00:28<00:22, 39.71it/s, adv_loss=-1.5703, bio_penalty=0.0177, clustering_loss=0.0190, disc_loss=1.5703, elbo=459.2293, epoch=1116/2001, vae_loss=459.2660]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1117/2000 [00:28<00:22, 39.71it/s, adv_loss=-1.5703, bio_penalty=0.0264, clustering_loss=0.0190, disc_loss=1.5703, elbo=459.9468, epoch=1117/2001, vae_loss=459.9923]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1118/2000 [00:28<00:22, 39.71it/s, adv_loss=-1.5702, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.6854, epoch=1118/2001, vae_loss=456.7169]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1119/2000 [00:28<00:22, 39.71it/s, adv_loss=-1.5702, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.3279, epoch=1119/2001, vae_loss=456.3594]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1120/2000 [00:28<00:22, 39.71it/s, adv_loss=-1.5702, bio_penalty=0.0150, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.0532, epoch=1120/2001, vae_loss=459.0872]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1121/2000 [00:28<00:22, 39.25it/s, adv_loss=-1.5702, bio_penalty=0.0150, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.0532, epoch=1120/2001, vae_loss=459.0872]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1121/2000 [00:28<00:22, 39.25it/s, adv_loss=-1.5702, bio_penalty=0.0162, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.5101, epoch=1121/2001, vae_loss=455.5453]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1122/2000 [00:28<00:22, 39.25it/s, adv_loss=-1.5702, bio_penalty=0.0239, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.7149, epoch=1122/2001, vae_loss=459.7578]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1123/2000 [00:28<00:22, 39.25it/s, adv_loss=-1.5702, bio_penalty=0.0460, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.2188, epoch=1123/2001, vae_loss=460.2838]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▌    | 1124/2000 [00:28<00:22, 39.25it/s, adv_loss=-1.5701, bio_penalty=0.0226, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.5385, epoch=1124/2001, vae_loss=457.5802]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1125/2000 [00:28<00:22, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.0226, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.5385, epoch=1124/2001, vae_loss=457.5802]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1125/2000 [00:28<00:22, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.0161, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.5366, epoch=1125/2001, vae_loss=459.5717]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1126/2000 [00:28<00:22, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0151, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.4944, epoch=1126/2001, vae_loss=457.5286]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1127/2000 [00:28<00:22, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.0403, epoch=1127/2001, vae_loss=460.0805]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1128/2000 [00:28<00:22, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0188, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.1613, epoch=1128/2001, vae_loss=455.1992]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1129/2000 [00:28<00:22, 39.29it/s, adv_loss=-1.5702, bio_penalty=0.0188, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.1613, epoch=1128/2001, vae_loss=455.1992]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1129/2000 [00:28<00:22, 39.29it/s, adv_loss=-1.5701, bio_penalty=0.0179, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.5955, epoch=1129/2001, vae_loss=456.6324]
Training: Embeddings batch effect correction using adversrial training:  56%|█████▋    | 1130/2000 [00:28<00:22, 39.29it/s, adv_loss=-1.5701, bio_penalty=0.0160, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.2045, epoch=1130/2001, vae_loss=456.2395]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1131/2000 [00:28<00:22, 39.29it/s, adv_loss=-1.5701, bio_penalty=0.0152, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.7607, epoch=1131/2001, vae_loss=454.7949]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1132/2000 [00:28<00:22, 39.29it/s, adv_loss=-1.5701, bio_penalty=0.0160, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.2928, epoch=1132/2001, vae_loss=457.3278]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1133/2000 [00:28<00:22, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0160, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.2928, epoch=1132/2001, vae_loss=457.3278]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1133/2000 [00:28<00:22, 39.09it/s, adv_loss=-1.5702, bio_penalty=0.0231, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.3633, epoch=1133/2001, vae_loss=459.4054]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1134/2000 [00:28<00:22, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0223, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.6184, epoch=1134/2001, vae_loss=456.6597]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1135/2000 [00:28<00:22, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0216, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.9076, epoch=1135/2001, vae_loss=454.9482]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1136/2000 [00:28<00:22, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0250, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.0805, epoch=1136/2001, vae_loss=457.1245]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1137/2000 [00:28<00:21, 39.27it/s, adv_loss=-1.5701, bio_penalty=0.0250, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.0805, epoch=1136/2001, vae_loss=457.1245]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1137/2000 [00:28<00:21, 39.27it/s, adv_loss=-1.5701, bio_penalty=0.0270, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.8891, epoch=1137/2001, vae_loss=455.9352]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1138/2000 [00:28<00:21, 39.27it/s, adv_loss=-1.5701, bio_penalty=0.0224, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.3768, epoch=1138/2001, vae_loss=457.4182]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1139/2000 [00:29<00:21, 39.27it/s, adv_loss=-1.5702, bio_penalty=0.0187, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.7343, epoch=1139/2001, vae_loss=458.7720]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1140/2000 [00:29<00:21, 39.27it/s, adv_loss=-1.5701, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.4904, epoch=1140/2001, vae_loss=454.5307]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1141/2000 [00:29<00:21, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.4904, epoch=1140/2001, vae_loss=454.5307]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1141/2000 [00:29<00:21, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0164, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.6572, epoch=1141/2001, vae_loss=458.6927]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1142/2000 [00:29<00:21, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0150, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.1208, epoch=1142/2001, vae_loss=453.1549]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1143/2000 [00:29<00:21, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0171, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.4360, epoch=1143/2001, vae_loss=455.4721]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1144/2000 [00:29<00:21, 39.47it/s, adv_loss=-1.5702, bio_penalty=0.0188, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.8727, epoch=1144/2001, vae_loss=454.9106]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1145/2000 [00:29<00:21, 39.60it/s, adv_loss=-1.5702, bio_penalty=0.0188, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.8727, epoch=1144/2001, vae_loss=454.9106]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1145/2000 [00:29<00:21, 39.60it/s, adv_loss=-1.5701, bio_penalty=0.0213, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.2676, epoch=1145/2001, vae_loss=455.3080]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1146/2000 [00:29<00:21, 39.60it/s, adv_loss=-1.5701, bio_penalty=0.0273, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.8285, epoch=1146/2001, vae_loss=458.8748]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1147/2000 [00:29<00:21, 39.60it/s, adv_loss=-1.5701, bio_penalty=0.0202, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.1038, epoch=1147/2001, vae_loss=454.1430]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1148/2000 [00:29<00:21, 39.60it/s, adv_loss=-1.5701, bio_penalty=0.0215, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.8048, epoch=1148/2001, vae_loss=455.8454]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1149/2000 [00:29<00:21, 39.71it/s, adv_loss=-1.5701, bio_penalty=0.0215, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.8048, epoch=1148/2001, vae_loss=455.8454]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▋    | 1149/2000 [00:29<00:21, 39.71it/s, adv_loss=-1.5701, bio_penalty=0.0168, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.5749, epoch=1149/2001, vae_loss=453.6107]
Training: Embeddings batch effect correction using adversrial training:  57%|█████▊    | 1150/2000 [00:29<00:21, 39.71it/s, adv_loss=-1.5701, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.7844, epoch=1150/2001, vae_loss=455.8174]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1151/2000 [00:29<00:21, 39.71it/s, adv_loss=-1.5701, bio_penalty=0.0125, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.6231, epoch=1151/2001, vae_loss=456.6546]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1152/2000 [00:29<00:21, 39.71it/s, adv_loss=-1.5701, bio_penalty=0.0120, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.8297, epoch=1152/2001, vae_loss=455.8607]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1153/2000 [00:29<00:21, 39.71it/s, adv_loss=-1.5701, bio_penalty=0.0135, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.6772, epoch=1153/2001, vae_loss=457.7098]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1154/2000 [00:29<00:21, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0135, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.6772, epoch=1153/2001, vae_loss=457.7098]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1154/2000 [00:29<00:21, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0196, clustering_loss=0.0190, disc_loss=1.5701, elbo=462.3068, epoch=1154/2001, vae_loss=462.3454]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1155/2000 [00:29<00:21, 39.83it/s, adv_loss=-1.5700, bio_penalty=0.0192, clustering_loss=0.0190, disc_loss=1.5700, elbo=464.0121, epoch=1155/2001, vae_loss=464.0503]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1156/2000 [00:29<00:21, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0097, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.9048, epoch=1156/2001, vae_loss=458.9336]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1157/2000 [00:29<00:21, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0068, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.6760, epoch=1157/2001, vae_loss=458.7018]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1158/2000 [00:29<00:21, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0068, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.6760, epoch=1157/2001, vae_loss=458.7018]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1158/2000 [00:29<00:21, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0082, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.4954, epoch=1158/2001, vae_loss=456.5226]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1159/2000 [00:29<00:21, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0079, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.7556, epoch=1159/2001, vae_loss=456.7826]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1160/2000 [00:29<00:21, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0063, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.7610, epoch=1160/2001, vae_loss=455.7864]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1161/2000 [00:29<00:21, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0098, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.5291, epoch=1161/2001, vae_loss=456.5580]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1162/2000 [00:29<00:21, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0194, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.4044, epoch=1162/2001, vae_loss=456.4428]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1163/2000 [00:29<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0194, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.4044, epoch=1162/2001, vae_loss=456.4428]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1163/2000 [00:29<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0262, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.8195, epoch=1163/2001, vae_loss=457.8648]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1164/2000 [00:29<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0308, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.3573, epoch=1164/2001, vae_loss=456.4071]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1165/2000 [00:29<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0323, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.6680, epoch=1165/2001, vae_loss=457.7194]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1166/2000 [00:29<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0259, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.8959, epoch=1166/2001, vae_loss=456.9408]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1167/2000 [00:29<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0170, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.5624, epoch=1167/2001, vae_loss=456.5985]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1168/2000 [00:29<00:20, 40.22it/s, adv_loss=-1.5701, bio_penalty=0.0170, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.5624, epoch=1167/2001, vae_loss=456.5985]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1168/2000 [00:29<00:20, 40.22it/s, adv_loss=-1.5702, bio_penalty=0.0156, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.7128, epoch=1168/2001, vae_loss=457.7474]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1169/2000 [00:29<00:20, 40.22it/s, adv_loss=-1.5701, bio_penalty=0.0168, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.1704, epoch=1169/2001, vae_loss=461.2063]
Training: Embeddings batch effect correction using adversrial training:  58%|█████▊    | 1170/2000 [00:29<00:20, 40.22it/s, adv_loss=-1.5701, bio_penalty=0.0186, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.3003, epoch=1170/2001, vae_loss=459.3380]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▊    | 1171/2000 [00:29<00:20, 40.22it/s, adv_loss=-1.5700, bio_penalty=0.0194, clustering_loss=0.0190, disc_loss=1.5700, elbo=456.0049, epoch=1171/2001, vae_loss=456.0434]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▊    | 1172/2000 [00:29<00:20, 40.22it/s, adv_loss=-1.5701, bio_penalty=0.0241, clustering_loss=0.0190, disc_loss=1.5701, elbo=460.1496, epoch=1172/2001, vae_loss=460.1927]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▊    | 1173/2000 [00:29<00:20, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0241, clustering_loss=0.0190, disc_loss=1.5701, elbo=460.1496, epoch=1172/2001, vae_loss=460.1927]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▊    | 1173/2000 [00:29<00:20, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0164, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.8634, epoch=1173/2001, vae_loss=458.8988]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▊    | 1174/2000 [00:29<00:20, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0168, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.3813, epoch=1174/2001, vae_loss=456.4171]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1175/2000 [00:29<00:20, 39.99it/s, adv_loss=-1.5700, bio_penalty=0.0181, clustering_loss=0.0190, disc_loss=1.5700, elbo=456.4871, epoch=1175/2001, vae_loss=456.5242]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1176/2000 [00:29<00:20, 39.99it/s, adv_loss=-1.5700, bio_penalty=0.0177, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.4109, epoch=1176/2001, vae_loss=453.4476]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1177/2000 [00:29<00:20, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0141, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.4908, epoch=1177/2001, vae_loss=455.5240]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1178/2000 [00:29<00:20, 39.97it/s, adv_loss=-1.5701, bio_penalty=0.0141, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.4908, epoch=1177/2001, vae_loss=455.5240]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1178/2000 [00:29<00:20, 39.97it/s, adv_loss=-1.5700, bio_penalty=0.0128, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.8107, epoch=1178/2001, vae_loss=455.8426]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1179/2000 [00:30<00:20, 39.97it/s, adv_loss=-1.5700, bio_penalty=0.0138, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.3245, epoch=1179/2001, vae_loss=455.3573]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1180/2000 [00:30<00:20, 39.97it/s, adv_loss=-1.5700, bio_penalty=0.0145, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.1687, epoch=1180/2001, vae_loss=453.2022]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1181/2000 [00:30<00:20, 39.97it/s, adv_loss=-1.5700, bio_penalty=0.0157, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.3792, epoch=1181/2001, vae_loss=451.4140]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1182/2000 [00:30<00:20, 39.97it/s, adv_loss=-1.5700, bio_penalty=0.0152, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.7238, epoch=1182/2001, vae_loss=454.7580]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1183/2000 [00:30<00:20, 40.01it/s, adv_loss=-1.5700, bio_penalty=0.0152, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.7238, epoch=1182/2001, vae_loss=454.7580]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1183/2000 [00:30<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0113, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.9009, epoch=1183/2001, vae_loss=457.9313]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1184/2000 [00:30<00:20, 40.01it/s, adv_loss=-1.5700, bio_penalty=0.0091, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.7853, epoch=1184/2001, vae_loss=455.8135]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1185/2000 [00:30<00:20, 40.01it/s, adv_loss=-1.5700, bio_penalty=0.0101, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.0345, epoch=1185/2001, vae_loss=453.0636]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1186/2000 [00:30<00:20, 40.01it/s, adv_loss=-1.5700, bio_penalty=0.0151, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.4646, epoch=1186/2001, vae_loss=454.4987]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1187/2000 [00:30<00:20, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0104, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.4244, epoch=1187/2001, vae_loss=453.4539]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1188/2000 [00:30<00:20, 39.94it/s, adv_loss=-1.5701, bio_penalty=0.0104, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.4244, epoch=1187/2001, vae_loss=453.4539]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1188/2000 [00:30<00:20, 39.94it/s, adv_loss=-1.5701, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.6906, epoch=1188/2001, vae_loss=453.7206]
Training: Embeddings batch effect correction using adversrial training:  59%|█████▉    | 1189/2000 [00:30<00:20, 39.94it/s, adv_loss=-1.5701, bio_penalty=0.0132, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.1141, epoch=1189/2001, vae_loss=454.1464]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1190/2000 [00:30<00:20, 39.94it/s, adv_loss=-1.5701, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.2811, epoch=1190/2001, vae_loss=453.3160]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1191/2000 [00:30<00:20, 39.94it/s, adv_loss=-1.5700, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5700, elbo=458.5194, epoch=1191/2001, vae_loss=458.5567]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1192/2000 [00:30<00:20, 39.68it/s, adv_loss=-1.5700, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5700, elbo=458.5194, epoch=1191/2001, vae_loss=458.5567]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1192/2000 [00:30<00:20, 39.68it/s, adv_loss=-1.5700, bio_penalty=0.0148, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.7615, epoch=1192/2001, vae_loss=454.7953]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1193/2000 [00:30<00:20, 39.68it/s, adv_loss=-1.5700, bio_penalty=0.0142, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.3563, epoch=1193/2001, vae_loss=453.3895]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1194/2000 [00:30<00:20, 39.68it/s, adv_loss=-1.5701, bio_penalty=0.0142, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.7822, epoch=1194/2001, vae_loss=456.8155]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1195/2000 [00:30<00:20, 39.68it/s, adv_loss=-1.5701, bio_penalty=0.0176, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.3464, epoch=1195/2001, vae_loss=454.3830]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1196/2000 [00:30<00:20, 39.68it/s, adv_loss=-1.5700, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5700, elbo=456.3287, epoch=1196/2001, vae_loss=456.3689]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1197/2000 [00:30<00:20, 39.61it/s, adv_loss=-1.5700, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5700, elbo=456.3287, epoch=1196/2001, vae_loss=456.3689]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1197/2000 [00:30<00:20, 39.61it/s, adv_loss=-1.5700, bio_penalty=0.0216, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.1982, epoch=1197/2001, vae_loss=455.2388]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1198/2000 [00:30<00:20, 39.61it/s, adv_loss=-1.5700, bio_penalty=0.0197, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.8745, epoch=1198/2001, vae_loss=451.9133]
Training: Embeddings batch effect correction using adversrial training:  60%|█████▉    | 1199/2000 [00:30<00:20, 39.61it/s, adv_loss=-1.5700, bio_penalty=0.0177, clustering_loss=0.0190, disc_loss=1.5700, elbo=452.1365, epoch=1199/2001, vae_loss=452.1732]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1200/2000 [00:30<00:20, 39.61it/s, adv_loss=-1.5700, bio_penalty=0.0188, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.8467, epoch=1200/2001, vae_loss=451.8846]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1201/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5700, bio_penalty=0.0188, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.8467, epoch=1200/2001, vae_loss=451.8846]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1201/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5700, bio_penalty=0.0202, clustering_loss=0.0190, disc_loss=1.5700, elbo=452.4870, epoch=1201/2001, vae_loss=452.5263]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1202/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5700, bio_penalty=0.0192, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.1555, epoch=1202/2001, vae_loss=455.1938]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1203/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5701, bio_penalty=0.0232, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.2744, epoch=1203/2001, vae_loss=455.3167]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1204/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5701, bio_penalty=0.0218, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.6552, epoch=1204/2001, vae_loss=453.6960]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1205/2000 [00:30<00:20, 39.19it/s, adv_loss=-1.5701, bio_penalty=0.0218, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.6552, epoch=1204/2001, vae_loss=453.6960]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1205/2000 [00:30<00:20, 39.19it/s, adv_loss=-1.5701, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.4705, epoch=1205/2001, vae_loss=453.5108]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1206/2000 [00:30<00:20, 39.19it/s, adv_loss=-1.5701, bio_penalty=0.0267, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.5178, epoch=1206/2001, vae_loss=454.5635]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1207/2000 [00:30<00:20, 39.19it/s, adv_loss=-1.5700, bio_penalty=0.0305, clustering_loss=0.0190, disc_loss=1.5700, elbo=457.2337, epoch=1207/2001, vae_loss=457.2832]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1208/2000 [00:30<00:20, 39.19it/s, adv_loss=-1.5700, bio_penalty=0.0216, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.2752, epoch=1208/2001, vae_loss=453.3158]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1209/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5700, bio_penalty=0.0216, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.2752, epoch=1208/2001, vae_loss=453.3158]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1209/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5701, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.1966, epoch=1209/2001, vae_loss=456.2409]
Training: Embeddings batch effect correction using adversrial training:  60%|██████    | 1210/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5700, bio_penalty=0.0423, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.1384, epoch=1210/2001, vae_loss=454.1998]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1211/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5700, bio_penalty=0.0517, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.4026, epoch=1211/2001, vae_loss=455.4734]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1212/2000 [00:30<00:20, 39.32it/s, adv_loss=-1.5701, bio_penalty=0.0390, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.2394, epoch=1212/2001, vae_loss=457.2975]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1213/2000 [00:30<00:20, 39.01it/s, adv_loss=-1.5701, bio_penalty=0.0390, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.2394, epoch=1212/2001, vae_loss=457.2975]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1213/2000 [00:30<00:20, 39.01it/s, adv_loss=-1.5701, bio_penalty=0.0429, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.0501, epoch=1213/2001, vae_loss=458.1121]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1214/2000 [00:30<00:20, 39.01it/s, adv_loss=-1.5700, bio_penalty=0.0692, clustering_loss=0.0190, disc_loss=1.5700, elbo=456.3145, epoch=1214/2001, vae_loss=456.4027]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1215/2000 [00:30<00:20, 39.01it/s, adv_loss=-1.5701, bio_penalty=0.0848, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.8860, epoch=1215/2001, vae_loss=459.9899]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1216/2000 [00:30<00:20, 39.01it/s, adv_loss=-1.5701, bio_penalty=0.0774, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.4446, epoch=1216/2001, vae_loss=461.5411]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1217/2000 [00:30<00:20, 39.01it/s, adv_loss=-1.5701, bio_penalty=0.0612, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.9266, epoch=1217/2001, vae_loss=460.0069]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1218/2000 [00:30<00:19, 39.38it/s, adv_loss=-1.5701, bio_penalty=0.0612, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.9266, epoch=1217/2001, vae_loss=460.0069]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1218/2000 [00:30<00:19, 39.38it/s, adv_loss=-1.5701, bio_penalty=0.0514, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.1847, epoch=1218/2001, vae_loss=458.2551]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1219/2000 [00:31<00:19, 39.38it/s, adv_loss=-1.5701, bio_penalty=0.0421, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.5677, epoch=1219/2001, vae_loss=452.6288]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1220/2000 [00:31<00:19, 39.38it/s, adv_loss=-1.5700, bio_penalty=0.0399, clustering_loss=0.0190, disc_loss=1.5700, elbo=458.1601, epoch=1220/2001, vae_loss=458.2190]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1221/2000 [00:31<00:19, 39.38it/s, adv_loss=-1.5701, bio_penalty=0.0343, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.5659, epoch=1221/2001, vae_loss=458.6193]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1222/2000 [00:31<00:19, 39.52it/s, adv_loss=-1.5701, bio_penalty=0.0343, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.5659, epoch=1221/2001, vae_loss=458.6193]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1222/2000 [00:31<00:19, 39.52it/s, adv_loss=-1.5701, bio_penalty=0.0290, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.1466, epoch=1222/2001, vae_loss=454.1947]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1223/2000 [00:31<00:19, 39.52it/s, adv_loss=-1.5701, bio_penalty=0.0381, clustering_loss=0.0190, disc_loss=1.5701, elbo=462.8604, epoch=1223/2001, vae_loss=462.9175]
Training: Embeddings batch effect correction using adversrial training:  61%|██████    | 1224/2000 [00:31<00:19, 39.52it/s, adv_loss=-1.5701, bio_penalty=0.0339, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.4146, epoch=1224/2001, vae_loss=461.4675]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 1225/2000 [00:31<00:19, 39.52it/s, adv_loss=-1.5701, bio_penalty=0.0317, clustering_loss=0.0190, disc_loss=1.5701, elbo=463.9518, epoch=1225/2001, vae_loss=464.0026]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 1226/2000 [00:31<00:19, 39.42it/s, adv_loss=-1.5701, bio_penalty=0.0317, clustering_loss=0.0190, disc_loss=1.5701, elbo=463.9518, epoch=1225/2001, vae_loss=464.0026]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 1226/2000 [00:31<00:19, 39.42it/s, adv_loss=-1.5701, bio_penalty=0.0473, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.5487, epoch=1226/2001, vae_loss=461.6151]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 1227/2000 [00:31<00:19, 39.42it/s, adv_loss=-1.5699, bio_penalty=0.0791, clustering_loss=0.0190, disc_loss=1.5699, elbo=458.4174, epoch=1227/2001, vae_loss=458.5156]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 1228/2000 [00:31<00:19, 39.42it/s, adv_loss=-1.5700, bio_penalty=0.0666, clustering_loss=0.0190, disc_loss=1.5700, elbo=465.0007, epoch=1228/2001, vae_loss=465.0863]
Training: Embeddings batch effect correction using adversrial training:  61%|██████▏   | 1229/2000 [00:31<00:19, 39.42it/s, adv_loss=-1.5701, bio_penalty=0.0247, clustering_loss=0.0190, disc_loss=1.5701, elbo=464.1230, epoch=1229/2001, vae_loss=464.1668]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1230/2000 [00:31<00:19, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.0247, clustering_loss=0.0190, disc_loss=1.5701, elbo=464.1230, epoch=1229/2001, vae_loss=464.1668]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1230/2000 [00:31<00:19, 39.54it/s, adv_loss=-1.5702, bio_penalty=0.0206, clustering_loss=0.0190, disc_loss=1.5702, elbo=463.2200, epoch=1230/2001, vae_loss=463.2596]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1231/2000 [00:31<00:19, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.0250, clustering_loss=0.0190, disc_loss=1.5701, elbo=465.7581, epoch=1231/2001, vae_loss=465.8021]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1232/2000 [00:31<00:19, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.0341, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.6597, epoch=1232/2001, vae_loss=459.7128]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1233/2000 [00:31<00:19, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.0444, clustering_loss=0.0190, disc_loss=1.5701, elbo=463.2042, epoch=1233/2001, vae_loss=463.2677]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1234/2000 [00:31<00:19, 39.60it/s, adv_loss=-1.5701, bio_penalty=0.0444, clustering_loss=0.0190, disc_loss=1.5701, elbo=463.2042, epoch=1233/2001, vae_loss=463.2677]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1234/2000 [00:31<00:19, 39.60it/s, adv_loss=-1.5700, bio_penalty=0.0541, clustering_loss=0.0190, disc_loss=1.5700, elbo=460.6449, epoch=1234/2001, vae_loss=460.7180]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1235/2000 [00:31<00:19, 39.60it/s, adv_loss=-1.5701, bio_penalty=0.0619, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.6187, epoch=1235/2001, vae_loss=458.6997]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1236/2000 [00:31<00:19, 39.60it/s, adv_loss=-1.5702, bio_penalty=0.0707, clustering_loss=0.0190, disc_loss=1.5702, elbo=463.2431, epoch=1236/2001, vae_loss=463.3328]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1237/2000 [00:31<00:19, 39.60it/s, adv_loss=-1.5701, bio_penalty=0.0798, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.3942, epoch=1237/2001, vae_loss=457.4930]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1238/2000 [00:31<00:19, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0798, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.3942, epoch=1237/2001, vae_loss=457.4930]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1238/2000 [00:31<00:19, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0820, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.8602, epoch=1238/2001, vae_loss=459.9612]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1239/2000 [00:31<00:19, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0514, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.0198, epoch=1239/2001, vae_loss=459.0902]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1240/2000 [00:31<00:19, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0366, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.4448, epoch=1240/2001, vae_loss=454.5005]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1241/2000 [00:31<00:19, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0318, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.6816, epoch=1241/2001, vae_loss=459.7324]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1242/2000 [00:31<00:19, 39.56it/s, adv_loss=-1.5701, bio_penalty=0.0318, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.6816, epoch=1241/2001, vae_loss=459.7324]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1242/2000 [00:31<00:19, 39.56it/s, adv_loss=-1.5702, bio_penalty=0.0287, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.9010, epoch=1242/2001, vae_loss=454.9487]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1243/2000 [00:31<00:19, 39.56it/s, adv_loss=-1.5700, bio_penalty=0.0297, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.0743, epoch=1243/2001, vae_loss=454.1230]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1244/2000 [00:31<00:19, 39.56it/s, adv_loss=-1.5701, bio_penalty=0.0274, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.0486, epoch=1244/2001, vae_loss=457.0950]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1245/2000 [00:31<00:19, 39.56it/s, adv_loss=-1.5701, bio_penalty=0.0275, clustering_loss=0.0190, disc_loss=1.5701, elbo=460.3698, epoch=1245/2001, vae_loss=460.4163]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1246/2000 [00:31<00:19, 39.56it/s, adv_loss=-1.5702, bio_penalty=0.0378, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.2685, epoch=1246/2001, vae_loss=458.3253]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1247/2000 [00:31<00:18, 39.89it/s, adv_loss=-1.5702, bio_penalty=0.0378, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.2685, epoch=1246/2001, vae_loss=458.3253]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1247/2000 [00:31<00:18, 39.89it/s, adv_loss=-1.5700, bio_penalty=0.0685, clustering_loss=0.0190, disc_loss=1.5700, elbo=458.5314, epoch=1247/2001, vae_loss=458.6190]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1248/2000 [00:31<00:18, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0388, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.1511, epoch=1248/2001, vae_loss=457.2090]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▏   | 1249/2000 [00:31<00:18, 39.89it/s, adv_loss=-1.5702, bio_penalty=0.0252, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.4498, epoch=1249/2001, vae_loss=460.4940]
Training: Embeddings batch effect correction using adversrial training:  62%|██████▎   | 1250/2000 [00:31<00:18, 39.89it/s, adv_loss=-1.5702, bio_penalty=0.0330, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.1595, epoch=1250/2001, vae_loss=454.2115]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1251/2000 [00:31<00:18, 39.84it/s, adv_loss=-1.5702, bio_penalty=0.0330, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.1595, epoch=1250/2001, vae_loss=454.2115]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1251/2000 [00:31<00:18, 39.84it/s, adv_loss=-1.5702, bio_penalty=0.0322, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.9874, epoch=1251/2001, vae_loss=457.0387]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1252/2000 [00:31<00:18, 39.84it/s, adv_loss=-1.5701, bio_penalty=0.0291, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.4891, epoch=1252/2001, vae_loss=459.5372]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1253/2000 [00:31<00:18, 39.84it/s, adv_loss=-1.5701, bio_penalty=0.0235, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.7422, epoch=1253/2001, vae_loss=457.7848]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1254/2000 [00:31<00:18, 39.84it/s, adv_loss=-1.5702, bio_penalty=0.0238, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.0758, epoch=1254/2001, vae_loss=453.1186]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1255/2000 [00:31<00:18, 39.82it/s, adv_loss=-1.5702, bio_penalty=0.0238, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.0758, epoch=1254/2001, vae_loss=453.1186]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1255/2000 [00:31<00:18, 39.82it/s, adv_loss=-1.5701, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.0599, epoch=1255/2001, vae_loss=453.1042]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1256/2000 [00:31<00:18, 39.82it/s, adv_loss=-1.5701, bio_penalty=0.0255, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.9927, epoch=1256/2001, vae_loss=459.0373]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1257/2000 [00:31<00:18, 39.82it/s, adv_loss=-1.5702, bio_penalty=0.0334, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.8317, epoch=1257/2001, vae_loss=458.8842]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1258/2000 [00:31<00:18, 39.82it/s, adv_loss=-1.5703, bio_penalty=0.0363, clustering_loss=0.0190, disc_loss=1.5703, elbo=453.3524, epoch=1258/2001, vae_loss=453.4077]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1259/2000 [00:32<00:18, 39.82it/s, adv_loss=-1.5702, bio_penalty=0.0349, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.9797, epoch=1259/2001, vae_loss=456.0336]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1260/2000 [00:32<00:18, 40.01it/s, adv_loss=-1.5702, bio_penalty=0.0349, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.9797, epoch=1259/2001, vae_loss=456.0336]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1260/2000 [00:32<00:18, 40.01it/s, adv_loss=-1.5702, bio_penalty=0.0332, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.0294, epoch=1260/2001, vae_loss=460.0816]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1261/2000 [00:32<00:18, 40.01it/s, adv_loss=-1.5702, bio_penalty=0.0680, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.2331, epoch=1261/2001, vae_loss=458.3202]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1262/2000 [00:32<00:18, 40.01it/s, adv_loss=-1.5702, bio_penalty=0.0690, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.9692, epoch=1262/2001, vae_loss=461.0573]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1263/2000 [00:32<00:18, 40.01it/s, adv_loss=-1.5702, bio_penalty=0.0864, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.1158, epoch=1263/2001, vae_loss=461.2213]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1264/2000 [00:32<00:18, 39.86it/s, adv_loss=-1.5702, bio_penalty=0.0864, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.1158, epoch=1263/2001, vae_loss=461.2213]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1264/2000 [00:32<00:18, 39.86it/s, adv_loss=-1.5701, bio_penalty=0.0780, clustering_loss=0.0190, disc_loss=1.5701, elbo=460.7468, epoch=1264/2001, vae_loss=460.8438]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1265/2000 [00:32<00:18, 39.86it/s, adv_loss=-1.5701, bio_penalty=0.0461, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.8545, epoch=1265/2001, vae_loss=459.9196]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1266/2000 [00:32<00:18, 39.86it/s, adv_loss=-1.5701, bio_penalty=0.0853, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.8337, epoch=1266/2001, vae_loss=459.9380]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1267/2000 [00:32<00:18, 39.86it/s, adv_loss=-1.5702, bio_penalty=0.1111, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.2521, epoch=1267/2001, vae_loss=457.3823]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1268/2000 [00:32<00:18, 39.40it/s, adv_loss=-1.5702, bio_penalty=0.1111, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.2521, epoch=1267/2001, vae_loss=457.3823]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1268/2000 [00:32<00:18, 39.40it/s, adv_loss=-1.5701, bio_penalty=0.0789, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.0409, epoch=1268/2001, vae_loss=458.1388]
Training: Embeddings batch effect correction using adversrial training:  63%|██████▎   | 1269/2000 [00:32<00:18, 39.40it/s, adv_loss=-1.5702, bio_penalty=0.0607, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.2214, epoch=1269/2001, vae_loss=456.3012]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 1270/2000 [00:32<00:18, 39.40it/s, adv_loss=-1.5702, bio_penalty=0.0740, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.1624, epoch=1270/2001, vae_loss=455.2554]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 1271/2000 [00:32<00:18, 39.40it/s, adv_loss=-1.5702, bio_penalty=0.0902, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.4626, epoch=1271/2001, vae_loss=460.5719]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 1272/2000 [00:32<00:18, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0902, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.4626, epoch=1271/2001, vae_loss=460.5719]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 1272/2000 [00:32<00:18, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0844, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.8059, epoch=1272/2001, vae_loss=457.9093]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 1273/2000 [00:32<00:18, 39.17it/s, adv_loss=-1.5703, bio_penalty=0.1097, clustering_loss=0.0190, disc_loss=1.5703, elbo=461.7982, epoch=1273/2001, vae_loss=461.9269]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▎   | 1274/2000 [00:32<00:18, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.1419, clustering_loss=0.0190, disc_loss=1.5701, elbo=463.7158, epoch=1274/2001, vae_loss=463.8767]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1275/2000 [00:32<00:18, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.1520, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.9061, epoch=1275/2001, vae_loss=462.0771]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1276/2000 [00:32<00:18, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.1520, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.9061, epoch=1275/2001, vae_loss=462.0771]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1276/2000 [00:32<00:18, 38.96it/s, adv_loss=-1.5699, bio_penalty=0.1506, clustering_loss=0.0190, disc_loss=1.5699, elbo=459.5433, epoch=1276/2001, vae_loss=459.7130]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1277/2000 [00:32<00:18, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.1526, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.0184, epoch=1277/2001, vae_loss=460.1901]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1278/2000 [00:32<00:18, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.1506, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.3067, epoch=1278/2001, vae_loss=458.4763]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1279/2000 [00:32<00:18, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.1438, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.4792, epoch=1279/2001, vae_loss=460.6421]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1280/2000 [00:32<00:18, 38.97it/s, adv_loss=-1.5702, bio_penalty=0.1438, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.4792, epoch=1279/2001, vae_loss=460.6421]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1280/2000 [00:32<00:18, 38.97it/s, adv_loss=-1.5701, bio_penalty=0.1453, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.6883, epoch=1280/2001, vae_loss=455.8526]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1281/2000 [00:32<00:18, 38.97it/s, adv_loss=-1.5701, bio_penalty=0.1579, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.0368, epoch=1281/2001, vae_loss=457.2138]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1282/2000 [00:32<00:18, 38.97it/s, adv_loss=-1.5701, bio_penalty=0.1603, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.3933, epoch=1282/2001, vae_loss=456.5727]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1283/2000 [00:32<00:18, 38.97it/s, adv_loss=-1.5702, bio_penalty=0.1720, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.1977, epoch=1283/2001, vae_loss=456.3887]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1284/2000 [00:32<00:18, 39.04it/s, adv_loss=-1.5702, bio_penalty=0.1720, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.1977, epoch=1283/2001, vae_loss=456.3887]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1284/2000 [00:32<00:18, 39.04it/s, adv_loss=-1.5702, bio_penalty=0.1814, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.2584, epoch=1284/2001, vae_loss=455.4588]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1285/2000 [00:32<00:18, 39.04it/s, adv_loss=-1.5702, bio_penalty=0.1742, clustering_loss=0.0190, disc_loss=1.5702, elbo=469.0692, epoch=1285/2001, vae_loss=469.2625]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1286/2000 [00:32<00:18, 39.04it/s, adv_loss=-1.5702, bio_penalty=0.1806, clustering_loss=0.0190, disc_loss=1.5702, elbo=464.2834, epoch=1286/2001, vae_loss=464.4830]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1287/2000 [00:32<00:18, 39.04it/s, adv_loss=-1.5702, bio_penalty=0.1781, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.0393, epoch=1287/2001, vae_loss=459.2365]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1288/2000 [00:32<00:18, 39.04it/s, adv_loss=-1.5701, bio_penalty=0.1677, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.0611, epoch=1288/2001, vae_loss=459.2478]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1289/2000 [00:32<00:17, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.1677, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.0611, epoch=1288/2001, vae_loss=459.2478]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1289/2000 [00:32<00:17, 39.54it/s, adv_loss=-1.5702, bio_penalty=0.1549, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.5352, epoch=1289/2001, vae_loss=457.7092]
Training: Embeddings batch effect correction using adversrial training:  64%|██████▍   | 1290/2000 [00:32<00:17, 39.54it/s, adv_loss=-1.5702, bio_penalty=0.1415, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.1350, epoch=1290/2001, vae_loss=460.2955]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1291/2000 [00:32<00:17, 39.54it/s, adv_loss=-1.5702, bio_penalty=0.1366, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.3969, epoch=1291/2001, vae_loss=461.5526]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1292/2000 [00:32<00:17, 39.54it/s, adv_loss=-1.5702, bio_penalty=0.1503, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.9699, epoch=1292/2001, vae_loss=460.1393]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1293/2000 [00:32<00:17, 39.30it/s, adv_loss=-1.5702, bio_penalty=0.1503, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.9699, epoch=1292/2001, vae_loss=460.1393]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1293/2000 [00:32<00:17, 39.30it/s, adv_loss=-1.5702, bio_penalty=0.1695, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.8386, epoch=1293/2001, vae_loss=459.0271]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1294/2000 [00:32<00:17, 39.30it/s, adv_loss=-1.5701, bio_penalty=0.1806, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.1115, epoch=1294/2001, vae_loss=459.3112]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1295/2000 [00:32<00:17, 39.30it/s, adv_loss=-1.5701, bio_penalty=0.1976, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.2271, epoch=1295/2001, vae_loss=459.4437]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1296/2000 [00:32<00:17, 39.30it/s, adv_loss=-1.5700, bio_penalty=0.1637, clustering_loss=0.0190, disc_loss=1.5700, elbo=459.4748, epoch=1296/2001, vae_loss=459.6575]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1297/2000 [00:32<00:17, 39.30it/s, adv_loss=-1.5702, bio_penalty=0.1530, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.7144, epoch=1297/2001, vae_loss=454.8865]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1298/2000 [00:32<00:17, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.1530, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.7144, epoch=1297/2001, vae_loss=454.8865]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1298/2000 [00:33<00:17, 39.90it/s, adv_loss=-1.5701, bio_penalty=0.1417, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.6320, epoch=1298/2001, vae_loss=457.7927]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▍   | 1299/2000 [00:33<00:17, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.1344, clustering_loss=0.0190, disc_loss=1.5702, elbo=462.1660, epoch=1299/2001, vae_loss=462.3194]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1300/2000 [00:33<00:17, 39.90it/s, adv_loss=-1.5701, bio_penalty=0.1426, clustering_loss=0.0190, disc_loss=1.5701, elbo=462.6334, epoch=1300/2001, vae_loss=462.7951]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1301/2000 [00:33<00:17, 39.90it/s, adv_loss=-1.5701, bio_penalty=0.1482, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.3690, epoch=1301/2001, vae_loss=457.5363]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1302/2000 [00:33<00:17, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.1577, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.3283, epoch=1302/2001, vae_loss=458.5050]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1303/2000 [00:33<00:17, 40.05it/s, adv_loss=-1.5702, bio_penalty=0.1577, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.3283, epoch=1302/2001, vae_loss=458.5050]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1303/2000 [00:33<00:17, 40.05it/s, adv_loss=-1.5701, bio_penalty=0.1492, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.3925, epoch=1303/2001, vae_loss=457.5607]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1304/2000 [00:33<00:17, 40.05it/s, adv_loss=-1.5700, bio_penalty=0.1262, clustering_loss=0.0190, disc_loss=1.5700, elbo=456.6751, epoch=1304/2001, vae_loss=456.8204]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1305/2000 [00:33<00:17, 40.05it/s, adv_loss=-1.5702, bio_penalty=0.1166, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.4434, epoch=1305/2001, vae_loss=456.5790]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1306/2000 [00:33<00:17, 40.05it/s, adv_loss=-1.5702, bio_penalty=0.1502, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.6428, epoch=1306/2001, vae_loss=455.8120]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1307/2000 [00:33<00:17, 39.93it/s, adv_loss=-1.5702, bio_penalty=0.1502, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.6428, epoch=1306/2001, vae_loss=455.8120]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1307/2000 [00:33<00:17, 39.93it/s, adv_loss=-1.5701, bio_penalty=0.1626, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.7112, epoch=1307/2001, vae_loss=458.8928]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1308/2000 [00:33<00:17, 39.93it/s, adv_loss=-1.5702, bio_penalty=0.1387, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.9970, epoch=1308/2001, vae_loss=456.1548]
Training: Embeddings batch effect correction using adversrial training:  65%|██████▌   | 1309/2000 [00:33<00:17, 39.93it/s, adv_loss=-1.5701, bio_penalty=0.1197, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.8262, epoch=1309/2001, vae_loss=453.9649]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1310/2000 [00:33<00:17, 39.93it/s, adv_loss=-1.5701, bio_penalty=0.1116, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.7039, epoch=1310/2001, vae_loss=457.8345]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1311/2000 [00:33<00:17, 39.93it/s, adv_loss=-1.5702, bio_penalty=0.1132, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.5743, epoch=1311/2001, vae_loss=460.7065]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1312/2000 [00:33<00:17, 40.04it/s, adv_loss=-1.5702, bio_penalty=0.1132, clustering_loss=0.0190, disc_loss=1.5702, elbo=460.5743, epoch=1311/2001, vae_loss=460.7065]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1312/2000 [00:33<00:17, 40.04it/s, adv_loss=-1.5702, bio_penalty=0.0902, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.2049, epoch=1312/2001, vae_loss=455.3141]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1313/2000 [00:33<00:17, 40.04it/s, adv_loss=-1.5701, bio_penalty=0.0824, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.1561, epoch=1313/2001, vae_loss=451.2575]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1314/2000 [00:33<00:17, 40.04it/s, adv_loss=-1.5701, bio_penalty=0.0822, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.6263, epoch=1314/2001, vae_loss=455.7275]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1315/2000 [00:33<00:17, 40.04it/s, adv_loss=-1.5703, bio_penalty=0.0696, clustering_loss=0.0190, disc_loss=1.5703, elbo=456.2764, epoch=1315/2001, vae_loss=456.3651]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1316/2000 [00:33<00:17, 39.91it/s, adv_loss=-1.5703, bio_penalty=0.0696, clustering_loss=0.0190, disc_loss=1.5703, elbo=456.2764, epoch=1315/2001, vae_loss=456.3651]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1316/2000 [00:33<00:17, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0523, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.9552, epoch=1316/2001, vae_loss=453.0265]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1317/2000 [00:33<00:17, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0460, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.8811, epoch=1317/2001, vae_loss=456.9461]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1318/2000 [00:33<00:17, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0494, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.8965, epoch=1318/2001, vae_loss=452.9649]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1319/2000 [00:33<00:17, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0574, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.6697, epoch=1319/2001, vae_loss=453.7462]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1320/2000 [00:33<00:17, 39.76it/s, adv_loss=-1.5701, bio_penalty=0.0574, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.6697, epoch=1319/2001, vae_loss=453.7462]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1320/2000 [00:33<00:17, 39.76it/s, adv_loss=-1.5700, bio_penalty=0.0508, clustering_loss=0.0190, disc_loss=1.5700, elbo=452.4777, epoch=1320/2001, vae_loss=452.5476]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1321/2000 [00:33<00:17, 39.76it/s, adv_loss=-1.5702, bio_penalty=0.0468, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.1638, epoch=1321/2001, vae_loss=456.2297]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1322/2000 [00:33<00:17, 39.76it/s, adv_loss=-1.5701, bio_penalty=0.0517, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.3605, epoch=1322/2001, vae_loss=454.4313]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1323/2000 [00:33<00:17, 39.76it/s, adv_loss=-1.5702, bio_penalty=0.0634, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.5787, epoch=1323/2001, vae_loss=450.6612]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1324/2000 [00:33<00:17, 39.76it/s, adv_loss=-1.5702, bio_penalty=0.0634, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.5787, epoch=1323/2001, vae_loss=450.6612]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▌   | 1324/2000 [00:33<00:17, 39.76it/s, adv_loss=-1.5701, bio_penalty=0.0643, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.6971, epoch=1324/2001, vae_loss=452.7804]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 1325/2000 [00:33<00:16, 39.76it/s, adv_loss=-1.5702, bio_penalty=0.0557, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.6577, epoch=1325/2001, vae_loss=453.7325]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 1326/2000 [00:33<00:16, 39.76it/s, adv_loss=-1.5703, bio_penalty=0.0409, clustering_loss=0.0190, disc_loss=1.5703, elbo=465.1488, epoch=1326/2001, vae_loss=465.2088]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 1327/2000 [00:33<00:16, 39.76it/s, adv_loss=-1.5702, bio_penalty=0.0628, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.9046, epoch=1327/2001, vae_loss=459.9864]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 1328/2000 [00:33<00:17, 39.38it/s, adv_loss=-1.5702, bio_penalty=0.0628, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.9046, epoch=1327/2001, vae_loss=459.9864]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 1328/2000 [00:33<00:17, 39.38it/s, adv_loss=-1.5701, bio_penalty=0.0930, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.7241, epoch=1328/2001, vae_loss=456.8361]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 1329/2000 [00:33<00:17, 39.38it/s, adv_loss=-1.5701, bio_penalty=0.0792, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.6094, epoch=1329/2001, vae_loss=451.7077]
Training: Embeddings batch effect correction using adversrial training:  66%|██████▋   | 1330/2000 [00:33<00:17, 39.38it/s, adv_loss=-1.5700, bio_penalty=0.0655, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.2755, epoch=1330/2001, vae_loss=455.3600]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1331/2000 [00:33<00:16, 39.38it/s, adv_loss=-1.5701, bio_penalty=0.0411, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.3583, epoch=1331/2001, vae_loss=453.4185]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1332/2000 [00:33<00:17, 38.86it/s, adv_loss=-1.5701, bio_penalty=0.0411, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.3583, epoch=1331/2001, vae_loss=453.4185]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1332/2000 [00:33<00:17, 38.86it/s, adv_loss=-1.5702, bio_penalty=0.0409, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.2993, epoch=1332/2001, vae_loss=458.3592]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1333/2000 [00:33<00:17, 38.86it/s, adv_loss=-1.5701, bio_penalty=0.0542, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.2752, epoch=1333/2001, vae_loss=455.3485]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1334/2000 [00:33<00:17, 38.86it/s, adv_loss=-1.5701, bio_penalty=0.0466, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.3358, epoch=1334/2001, vae_loss=456.4014]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1335/2000 [00:33<00:17, 38.86it/s, adv_loss=-1.5702, bio_penalty=0.1508, clustering_loss=0.0190, disc_loss=1.5702, elbo=465.4088, epoch=1335/2001, vae_loss=465.5787]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1336/2000 [00:33<00:17, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.1508, clustering_loss=0.0190, disc_loss=1.5702, elbo=465.4088, epoch=1335/2001, vae_loss=465.5787]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1336/2000 [00:33<00:17, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.0276, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.4062, epoch=1336/2001, vae_loss=458.4529]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1337/2000 [00:34<00:17, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.0305, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.1184, epoch=1337/2001, vae_loss=455.1679]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1338/2000 [00:34<00:16, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.0354, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.4412, epoch=1338/2001, vae_loss=454.4956]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1339/2000 [00:34<00:16, 38.96it/s, adv_loss=-1.5702, bio_penalty=0.0362, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.2477, epoch=1339/2001, vae_loss=454.3030]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1340/2000 [00:34<00:16, 39.09it/s, adv_loss=-1.5702, bio_penalty=0.0362, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.2477, epoch=1339/2001, vae_loss=454.3030]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1340/2000 [00:34<00:16, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0383, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.5796, epoch=1340/2001, vae_loss=454.6370]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1341/2000 [00:34<00:16, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0361, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.4273, epoch=1341/2001, vae_loss=453.4824]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1342/2000 [00:34<00:16, 39.09it/s, adv_loss=-1.5702, bio_penalty=0.0301, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.1494, epoch=1342/2001, vae_loss=454.1986]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1343/2000 [00:34<00:16, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0247, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.5410, epoch=1343/2001, vae_loss=452.5847]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1344/2000 [00:34<00:16, 39.12it/s, adv_loss=-1.5701, bio_penalty=0.0247, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.5410, epoch=1343/2001, vae_loss=452.5847]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1344/2000 [00:34<00:16, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0255, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.1299, epoch=1344/2001, vae_loss=452.1744]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1345/2000 [00:34<00:16, 39.12it/s, adv_loss=-1.5701, bio_penalty=0.0282, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.8476, epoch=1345/2001, vae_loss=458.8948]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1346/2000 [00:34<00:16, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0252, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.6720, epoch=1346/2001, vae_loss=452.7162]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1347/2000 [00:34<00:16, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0243, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.4789, epoch=1347/2001, vae_loss=453.5222]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1348/2000 [00:34<00:16, 38.93it/s, adv_loss=-1.5702, bio_penalty=0.0243, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.4789, epoch=1347/2001, vae_loss=453.5222]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1348/2000 [00:34<00:16, 38.93it/s, adv_loss=-1.5701, bio_penalty=0.0255, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.2455, epoch=1348/2001, vae_loss=450.2901]
Training: Embeddings batch effect correction using adversrial training:  67%|██████▋   | 1349/2000 [00:34<00:16, 38.93it/s, adv_loss=-1.5701, bio_penalty=0.0283, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.5437, epoch=1349/2001, vae_loss=451.5910]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1350/2000 [00:34<00:16, 38.93it/s, adv_loss=-1.5701, bio_penalty=0.0305, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.0081, epoch=1350/2001, vae_loss=451.0576]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1351/2000 [00:34<00:16, 38.93it/s, adv_loss=-1.5702, bio_penalty=0.0348, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3018, epoch=1351/2001, vae_loss=451.3556]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1352/2000 [00:34<00:16, 38.93it/s, adv_loss=-1.5701, bio_penalty=0.0414, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.8531, epoch=1352/2001, vae_loss=450.9135]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1353/2000 [00:34<00:16, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0414, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.8531, epoch=1352/2001, vae_loss=450.9135]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1353/2000 [00:34<00:16, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0472, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.0444, epoch=1353/2001, vae_loss=450.1107]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1354/2000 [00:34<00:16, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0452, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.7162, epoch=1354/2001, vae_loss=449.7805]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1355/2000 [00:34<00:16, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0446, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.7841, epoch=1355/2001, vae_loss=450.8477]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1356/2000 [00:34<00:16, 39.47it/s, adv_loss=-1.5701, bio_penalty=0.0465, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.6675, epoch=1356/2001, vae_loss=448.7331]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1357/2000 [00:34<00:16, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.0465, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.6675, epoch=1356/2001, vae_loss=448.7331]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1357/2000 [00:34<00:16, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.0487, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.3754, epoch=1357/2001, vae_loss=448.4432]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1358/2000 [00:34<00:16, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0497, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.6779, epoch=1358/2001, vae_loss=450.7466]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1359/2000 [00:34<00:16, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.0468, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.6740, epoch=1359/2001, vae_loss=448.7398]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1360/2000 [00:34<00:16, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.0430, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.3204, epoch=1360/2001, vae_loss=450.3824]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1361/2000 [00:34<00:16, 39.17it/s, adv_loss=-1.5701, bio_penalty=0.0370, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.1473, epoch=1361/2001, vae_loss=449.2034]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1362/2000 [00:34<00:16, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0370, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.1473, epoch=1361/2001, vae_loss=449.2034]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1362/2000 [00:34<00:16, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0325, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.2401, epoch=1362/2001, vae_loss=450.2916]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1363/2000 [00:34<00:16, 39.46it/s, adv_loss=-1.5702, bio_penalty=0.0292, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.9838, epoch=1363/2001, vae_loss=449.0321]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1364/2000 [00:34<00:16, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0271, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.4884, epoch=1364/2001, vae_loss=446.5345]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1365/2000 [00:34<00:16, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0241, clustering_loss=0.0190, disc_loss=1.5701, elbo=444.4547, epoch=1365/2001, vae_loss=444.4978]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1366/2000 [00:34<00:16, 39.49it/s, adv_loss=-1.5701, bio_penalty=0.0241, clustering_loss=0.0190, disc_loss=1.5701, elbo=444.4547, epoch=1365/2001, vae_loss=444.4978]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1366/2000 [00:34<00:16, 39.49it/s, adv_loss=-1.5701, bio_penalty=0.0219, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.7473, epoch=1366/2001, vae_loss=450.7882]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1367/2000 [00:34<00:16, 39.49it/s, adv_loss=-1.5701, bio_penalty=0.0222, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.0317, epoch=1367/2001, vae_loss=452.0730]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1368/2000 [00:34<00:16, 39.49it/s, adv_loss=-1.5701, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.9434, epoch=1368/2001, vae_loss=446.9836]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1369/2000 [00:34<00:15, 39.49it/s, adv_loss=-1.5701, bio_penalty=0.0214, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.6325, epoch=1369/2001, vae_loss=450.6729]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1370/2000 [00:34<00:15, 39.50it/s, adv_loss=-1.5701, bio_penalty=0.0214, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.6325, epoch=1369/2001, vae_loss=450.6729]
Training: Embeddings batch effect correction using adversrial training:  68%|██████▊   | 1370/2000 [00:34<00:15, 39.50it/s, adv_loss=-1.5702, bio_penalty=0.0199, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.9234, epoch=1370/2001, vae_loss=449.9623]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▊   | 1371/2000 [00:34<00:15, 39.50it/s, adv_loss=-1.5702, bio_penalty=0.0178, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.2389, epoch=1371/2001, vae_loss=447.2757]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▊   | 1372/2000 [00:34<00:15, 39.50it/s, adv_loss=-1.5701, bio_penalty=0.0178, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.8640, epoch=1372/2001, vae_loss=446.9009]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▊   | 1373/2000 [00:34<00:15, 39.50it/s, adv_loss=-1.5701, bio_penalty=0.0189, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.0606, epoch=1373/2001, vae_loss=447.0986]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▊   | 1374/2000 [00:34<00:15, 39.51it/s, adv_loss=-1.5701, bio_penalty=0.0189, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.0606, epoch=1373/2001, vae_loss=447.0986]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▊   | 1374/2000 [00:34<00:15, 39.51it/s, adv_loss=-1.5702, bio_penalty=0.0199, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.2767, epoch=1374/2001, vae_loss=448.3156]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1375/2000 [00:34<00:15, 39.51it/s, adv_loss=-1.5702, bio_penalty=0.0215, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.2775, epoch=1375/2001, vae_loss=451.3180]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1376/2000 [00:34<00:15, 39.51it/s, adv_loss=-1.5702, bio_penalty=0.0196, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.1014, epoch=1376/2001, vae_loss=448.1401]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1377/2000 [00:35<00:15, 39.51it/s, adv_loss=-1.5702, bio_penalty=0.0172, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3752, epoch=1377/2001, vae_loss=451.4114]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1378/2000 [00:35<00:15, 39.51it/s, adv_loss=-1.5701, bio_penalty=0.0149, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.5126, epoch=1378/2001, vae_loss=448.5465]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1379/2000 [00:35<00:15, 39.76it/s, adv_loss=-1.5701, bio_penalty=0.0149, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.5126, epoch=1378/2001, vae_loss=448.5465]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1379/2000 [00:35<00:15, 39.76it/s, adv_loss=-1.5701, bio_penalty=0.0128, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.4928, epoch=1379/2001, vae_loss=447.5246]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1380/2000 [00:35<00:15, 39.76it/s, adv_loss=-1.5701, bio_penalty=0.0110, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.1653, epoch=1380/2001, vae_loss=451.1954]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1381/2000 [00:35<00:15, 39.76it/s, adv_loss=-1.5701, bio_penalty=0.0103, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.7602, epoch=1381/2001, vae_loss=446.7896]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1382/2000 [00:35<00:15, 39.76it/s, adv_loss=-1.5702, bio_penalty=0.0106, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.7763, epoch=1382/2001, vae_loss=446.8060]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1383/2000 [00:35<00:15, 39.77it/s, adv_loss=-1.5702, bio_penalty=0.0106, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.7763, epoch=1382/2001, vae_loss=446.8060]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1383/2000 [00:35<00:15, 39.77it/s, adv_loss=-1.5701, bio_penalty=0.0114, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.2430, epoch=1383/2001, vae_loss=446.2734]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1384/2000 [00:35<00:15, 39.77it/s, adv_loss=-1.5702, bio_penalty=0.0123, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.3368, epoch=1384/2001, vae_loss=446.3681]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1385/2000 [00:35<00:15, 39.77it/s, adv_loss=-1.5701, bio_penalty=0.0121, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.6488, epoch=1385/2001, vae_loss=447.6799]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1386/2000 [00:35<00:15, 39.77it/s, adv_loss=-1.5701, bio_penalty=0.0112, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.6498, epoch=1386/2001, vae_loss=446.6801]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1387/2000 [00:35<00:15, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0112, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.6498, epoch=1386/2001, vae_loss=446.6801]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1387/2000 [00:35<00:15, 39.83it/s, adv_loss=-1.5702, bio_penalty=0.0115, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.1802, epoch=1387/2001, vae_loss=447.2108]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1388/2000 [00:35<00:15, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0128, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.6557, epoch=1388/2001, vae_loss=448.6876]
Training: Embeddings batch effect correction using adversrial training:  69%|██████▉   | 1389/2000 [00:35<00:15, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.5838, epoch=1389/2001, vae_loss=447.6140]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1390/2000 [00:35<00:15, 39.83it/s, adv_loss=-1.5700, bio_penalty=0.0113, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.7198, epoch=1390/2001, vae_loss=448.7502]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1391/2000 [00:35<00:15, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0118, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.4053, epoch=1391/2001, vae_loss=448.4362]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1392/2000 [00:35<00:15, 39.93it/s, adv_loss=-1.5701, bio_penalty=0.0118, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.4053, epoch=1391/2001, vae_loss=448.4362]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1392/2000 [00:35<00:15, 39.93it/s, adv_loss=-1.5701, bio_penalty=0.0131, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.1407, epoch=1392/2001, vae_loss=448.1728]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1393/2000 [00:35<00:15, 39.93it/s, adv_loss=-1.5701, bio_penalty=0.0133, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.0027, epoch=1393/2001, vae_loss=447.0350]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1394/2000 [00:35<00:15, 39.93it/s, adv_loss=-1.5702, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.0909, epoch=1394/2001, vae_loss=454.1227]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1395/2000 [00:35<00:15, 39.93it/s, adv_loss=-1.5701, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.0979, epoch=1395/2001, vae_loss=449.1294]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1396/2000 [00:35<00:15, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.0979, epoch=1395/2001, vae_loss=449.1294]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1396/2000 [00:35<00:15, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0130, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.5991, epoch=1396/2001, vae_loss=447.6311]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1397/2000 [00:35<00:15, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.6702, epoch=1397/2001, vae_loss=447.7019]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1398/2000 [00:35<00:15, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.9572, epoch=1398/2001, vae_loss=445.9886]
Training: Embeddings batch effect correction using adversrial training:  70%|██████▉   | 1399/2000 [00:35<00:15, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0129, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.4888, epoch=1399/2001, vae_loss=451.5208]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1400/2000 [00:35<00:15, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0113, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.0786, epoch=1400/2001, vae_loss=449.1090]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1401/2000 [00:35<00:14, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0113, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.0786, epoch=1400/2001, vae_loss=449.1090]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1401/2000 [00:35<00:14, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.1282, epoch=1401/2001, vae_loss=446.1600]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1402/2000 [00:35<00:14, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0165, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.1725, epoch=1402/2001, vae_loss=447.2080]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1403/2000 [00:35<00:14, 40.19it/s, adv_loss=-1.5700, bio_penalty=0.0211, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.2717, epoch=1403/2001, vae_loss=448.3119]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1404/2000 [00:35<00:14, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0230, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.8963, epoch=1404/2001, vae_loss=448.9384]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1405/2000 [00:35<00:14, 40.19it/s, adv_loss=-1.5700, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.3753, epoch=1405/2001, vae_loss=449.4125]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1406/2000 [00:35<00:14, 40.23it/s, adv_loss=-1.5700, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.3753, epoch=1405/2001, vae_loss=449.4125]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1406/2000 [00:35<00:14, 40.23it/s, adv_loss=-1.5700, bio_penalty=0.0144, clustering_loss=0.0190, disc_loss=1.5700, elbo=446.3217, epoch=1406/2001, vae_loss=446.3551]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1407/2000 [00:35<00:14, 40.23it/s, adv_loss=-1.5701, bio_penalty=0.0135, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.3149, epoch=1407/2001, vae_loss=447.3474]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1408/2000 [00:35<00:14, 40.23it/s, adv_loss=-1.5699, bio_penalty=0.0128, clustering_loss=0.0190, disc_loss=1.5699, elbo=446.6283, epoch=1408/2001, vae_loss=446.6602]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1409/2000 [00:35<00:14, 40.23it/s, adv_loss=-1.5700, bio_penalty=0.0139, clustering_loss=0.0190, disc_loss=1.5700, elbo=445.4043, epoch=1409/2001, vae_loss=445.4372]
Training: Embeddings batch effect correction using adversrial training:  70%|███████   | 1410/2000 [00:35<00:14, 40.23it/s, adv_loss=-1.5700, bio_penalty=0.0163, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.6654, epoch=1410/2001, vae_loss=447.7007]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1411/2000 [00:35<00:14, 40.05it/s, adv_loss=-1.5700, bio_penalty=0.0163, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.6654, epoch=1410/2001, vae_loss=447.7007]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1411/2000 [00:35<00:14, 40.05it/s, adv_loss=-1.5700, bio_penalty=0.0156, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.8257, epoch=1411/2001, vae_loss=448.8604]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1412/2000 [00:35<00:14, 40.05it/s, adv_loss=-1.5701, bio_penalty=0.0121, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.0492, epoch=1412/2001, vae_loss=455.0803]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1413/2000 [00:35<00:14, 40.05it/s, adv_loss=-1.5700, bio_penalty=0.0143, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.4254, epoch=1413/2001, vae_loss=449.4587]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1414/2000 [00:35<00:14, 40.05it/s, adv_loss=-1.5700, bio_penalty=0.0141, clustering_loss=0.0190, disc_loss=1.5700, elbo=452.7603, epoch=1414/2001, vae_loss=452.7934]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1415/2000 [00:35<00:14, 40.05it/s, adv_loss=-1.5700, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.7619, epoch=1415/2001, vae_loss=450.7921]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1416/2000 [00:35<00:14, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.7619, epoch=1415/2001, vae_loss=450.7921]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1416/2000 [00:35<00:14, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.8675, epoch=1416/2001, vae_loss=458.8951]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1417/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0106, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.1692, epoch=1417/2001, vae_loss=447.1988]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1418/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0142, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.1317, epoch=1418/2001, vae_loss=453.1649]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1419/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0150, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.3375, epoch=1419/2001, vae_loss=449.3715]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1420/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0119, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.3232, epoch=1420/2001, vae_loss=453.3542]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1421/2000 [00:36<00:14, 40.20it/s, adv_loss=-1.5701, bio_penalty=0.0119, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.3232, epoch=1420/2001, vae_loss=453.3542]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1421/2000 [00:36<00:14, 40.20it/s, adv_loss=-1.5700, bio_penalty=0.0114, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.8430, epoch=1421/2001, vae_loss=453.8734]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1422/2000 [00:36<00:14, 40.20it/s, adv_loss=-1.5700, bio_penalty=0.0138, clustering_loss=0.0190, disc_loss=1.5700, elbo=446.8472, epoch=1422/2001, vae_loss=446.8800]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1423/2000 [00:36<00:14, 40.20it/s, adv_loss=-1.5700, bio_penalty=0.0203, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.3282, epoch=1423/2001, vae_loss=453.3676]
Training: Embeddings batch effect correction using adversrial training:  71%|███████   | 1424/2000 [00:36<00:14, 40.20it/s, adv_loss=-1.5700, bio_penalty=0.0139, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.2514, epoch=1424/2001, vae_loss=448.2844]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 1425/2000 [00:36<00:14, 40.20it/s, adv_loss=-1.5701, bio_penalty=0.0129, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.2037, epoch=1425/2001, vae_loss=450.2357]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 1426/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0129, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.2037, epoch=1425/2001, vae_loss=450.2357]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 1426/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0150, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.3351, epoch=1426/2001, vae_loss=449.3692]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 1427/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0172, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.8270, epoch=1427/2001, vae_loss=451.8633]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 1428/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0157, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.6631, epoch=1428/2001, vae_loss=449.6978]
Training: Embeddings batch effect correction using adversrial training:  71%|███████▏  | 1429/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0152, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.7912, epoch=1429/2001, vae_loss=447.8254]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1430/2000 [00:36<00:14, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0144, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.7329, epoch=1430/2001, vae_loss=447.7664]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1431/2000 [00:36<00:14, 39.86it/s, adv_loss=-1.5700, bio_penalty=0.0144, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.7329, epoch=1430/2001, vae_loss=447.7664]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1431/2000 [00:36<00:14, 39.86it/s, adv_loss=-1.5701, bio_penalty=0.0137, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.1839, epoch=1431/2001, vae_loss=448.2166]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1432/2000 [00:36<00:14, 39.86it/s, adv_loss=-1.5701, bio_penalty=0.0139, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.1060, epoch=1432/2001, vae_loss=448.1389]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1433/2000 [00:36<00:14, 39.86it/s, adv_loss=-1.5701, bio_penalty=0.0148, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.5594, epoch=1433/2001, vae_loss=448.5932]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1434/2000 [00:36<00:14, 39.86it/s, adv_loss=-1.5702, bio_penalty=0.0155, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.2108, epoch=1434/2001, vae_loss=448.2454]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1435/2000 [00:36<00:14, 38.35it/s, adv_loss=-1.5702, bio_penalty=0.0155, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.2108, epoch=1434/2001, vae_loss=448.2454]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1435/2000 [00:36<00:14, 38.35it/s, adv_loss=-1.5701, bio_penalty=0.0174, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.1080, epoch=1435/2001, vae_loss=446.1444]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1436/2000 [00:36<00:14, 38.35it/s, adv_loss=-1.5702, bio_penalty=0.0187, clustering_loss=0.0190, disc_loss=1.5702, elbo=445.2571, epoch=1436/2001, vae_loss=445.2948]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1437/2000 [00:36<00:14, 38.35it/s, adv_loss=-1.5701, bio_penalty=0.0156, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.2210, epoch=1437/2001, vae_loss=448.2556]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1438/2000 [00:36<00:14, 38.35it/s, adv_loss=-1.5702, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5702, elbo=445.4651, epoch=1438/2001, vae_loss=445.4981]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1439/2000 [00:36<00:14, 38.62it/s, adv_loss=-1.5702, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5702, elbo=445.4651, epoch=1438/2001, vae_loss=445.4981]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1439/2000 [00:36<00:14, 38.62it/s, adv_loss=-1.5700, bio_penalty=0.0139, clustering_loss=0.0190, disc_loss=1.5700, elbo=446.3389, epoch=1439/2001, vae_loss=446.3718]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1440/2000 [00:36<00:14, 38.62it/s, adv_loss=-1.5702, bio_penalty=0.0130, clustering_loss=0.0190, disc_loss=1.5702, elbo=445.3007, epoch=1440/2001, vae_loss=445.3328]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1441/2000 [00:36<00:14, 38.62it/s, adv_loss=-1.5701, bio_penalty=0.0117, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.5713, epoch=1441/2001, vae_loss=450.6021]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1442/2000 [00:36<00:14, 38.62it/s, adv_loss=-1.5701, bio_penalty=0.0175, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.1701, epoch=1442/2001, vae_loss=447.2067]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1443/2000 [00:36<00:14, 38.68it/s, adv_loss=-1.5701, bio_penalty=0.0175, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.1701, epoch=1442/2001, vae_loss=447.2067]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1443/2000 [00:36<00:14, 38.68it/s, adv_loss=-1.5701, bio_penalty=0.0283, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.8292, epoch=1443/2001, vae_loss=445.8765]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1444/2000 [00:36<00:14, 38.68it/s, adv_loss=-1.5702, bio_penalty=0.0365, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.9829, epoch=1444/2001, vae_loss=448.0385]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1445/2000 [00:36<00:14, 38.68it/s, adv_loss=-1.5702, bio_penalty=0.0311, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.4472, epoch=1445/2001, vae_loss=447.4974]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1446/2000 [00:36<00:14, 38.68it/s, adv_loss=-1.5702, bio_penalty=0.0236, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.9639, epoch=1446/2001, vae_loss=449.0065]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1447/2000 [00:36<00:14, 38.68it/s, adv_loss=-1.5701, bio_penalty=0.0187, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.3044, epoch=1447/2001, vae_loss=447.3422]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1448/2000 [00:36<00:14, 39.22it/s, adv_loss=-1.5701, bio_penalty=0.0187, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.3044, epoch=1447/2001, vae_loss=447.3422]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1448/2000 [00:36<00:14, 39.22it/s, adv_loss=-1.5702, bio_penalty=0.0152, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.5590, epoch=1448/2001, vae_loss=449.5932]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▏  | 1449/2000 [00:36<00:14, 39.22it/s, adv_loss=-1.5701, bio_penalty=0.0116, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.7390, epoch=1449/2001, vae_loss=450.7696]
Training: Embeddings batch effect correction using adversrial training:  72%|███████▎  | 1450/2000 [00:36<00:14, 39.22it/s, adv_loss=-1.5701, bio_penalty=0.0128, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.2654, epoch=1450/2001, vae_loss=449.2972]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1451/2000 [00:36<00:13, 39.22it/s, adv_loss=-1.5702, bio_penalty=0.0181, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.4443, epoch=1451/2001, vae_loss=449.4814]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1452/2000 [00:36<00:13, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0181, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.4443, epoch=1451/2001, vae_loss=449.4814]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1452/2000 [00:36<00:13, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0195, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.9641, epoch=1452/2001, vae_loss=452.0027]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1453/2000 [00:36<00:13, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0228, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.7225, epoch=1453/2001, vae_loss=449.7643]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1454/2000 [00:36<00:13, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0218, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.6062, epoch=1454/2001, vae_loss=450.6470]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1455/2000 [00:36<00:13, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0189, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.3619, epoch=1455/2001, vae_loss=449.3999]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1456/2000 [00:37<00:13, 39.17it/s, adv_loss=-1.5702, bio_penalty=0.0157, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.1209, epoch=1456/2001, vae_loss=449.1557]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1457/2000 [00:37<00:13, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0157, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.1209, epoch=1456/2001, vae_loss=449.1557]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1457/2000 [00:37<00:13, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0116, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.9330, epoch=1457/2001, vae_loss=451.9636]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1458/2000 [00:37<00:13, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0093, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.3707, epoch=1458/2001, vae_loss=454.3990]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1459/2000 [00:37<00:13, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0102, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.2476, epoch=1459/2001, vae_loss=453.2769]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1460/2000 [00:37<00:13, 39.62it/s, adv_loss=-1.5701, bio_penalty=0.0110, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.9954, epoch=1460/2001, vae_loss=449.0255]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1461/2000 [00:37<00:13, 39.62it/s, adv_loss=-1.5701, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.5049, epoch=1461/2001, vae_loss=450.5350]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1462/2000 [00:37<00:13, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.5049, epoch=1461/2001, vae_loss=450.5350]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1462/2000 [00:37<00:13, 39.95it/s, adv_loss=-1.5702, bio_penalty=0.0108, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3500, epoch=1462/2001, vae_loss=451.3798]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1463/2000 [00:37<00:13, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0104, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.6337, epoch=1463/2001, vae_loss=453.6631]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1464/2000 [00:37<00:13, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0095, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.4800, epoch=1464/2001, vae_loss=451.5085]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1465/2000 [00:37<00:13, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.6849, epoch=1465/2001, vae_loss=450.7126]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1466/2000 [00:37<00:13, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.9998, epoch=1466/2001, vae_loss=452.0275]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1467/2000 [00:37<00:13, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.9998, epoch=1466/2001, vae_loss=452.0275]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1467/2000 [00:37<00:13, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0093, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.8182, epoch=1467/2001, vae_loss=448.8465]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1468/2000 [00:37<00:13, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.5580, epoch=1468/2001, vae_loss=452.5910]
Training: Embeddings batch effect correction using adversrial training:  73%|███████▎  | 1469/2000 [00:37<00:13, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0216, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.5693, epoch=1469/2001, vae_loss=449.6099]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 1470/2000 [00:37<00:13, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0223, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.6960, epoch=1470/2001, vae_loss=451.7373]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 1471/2000 [00:37<00:13, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.2949, epoch=1471/2001, vae_loss=448.3250]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 1472/2000 [00:37<00:13, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.2949, epoch=1471/2001, vae_loss=448.3250]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 1472/2000 [00:37<00:13, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0120, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.6008, epoch=1472/2001, vae_loss=448.6319]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 1473/2000 [00:37<00:13, 40.01it/s, adv_loss=-1.5700, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.7099, epoch=1473/2001, vae_loss=450.7398]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▎  | 1474/2000 [00:37<00:13, 40.01it/s, adv_loss=-1.5700, bio_penalty=0.0167, clustering_loss=0.0190, disc_loss=1.5700, elbo=446.8139, epoch=1474/2001, vae_loss=446.8496]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1475/2000 [00:37<00:13, 40.01it/s, adv_loss=-1.5701, bio_penalty=0.0268, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.5907, epoch=1475/2001, vae_loss=446.6365]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1476/2000 [00:37<00:13, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0268, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.5907, epoch=1475/2001, vae_loss=446.6365]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1476/2000 [00:37<00:13, 39.87it/s, adv_loss=-1.5700, bio_penalty=0.0307, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.4299, epoch=1476/2001, vae_loss=450.4797]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1477/2000 [00:37<00:13, 39.87it/s, adv_loss=-1.5700, bio_penalty=0.0277, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.4472, epoch=1477/2001, vae_loss=448.4939]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1478/2000 [00:37<00:13, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0209, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.3732, epoch=1478/2001, vae_loss=451.4132]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1479/2000 [00:37<00:13, 39.87it/s, adv_loss=-1.5700, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.0060, epoch=1479/2001, vae_loss=451.0410]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1480/2000 [00:37<00:13, 39.87it/s, adv_loss=-1.5700, bio_penalty=0.0138, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.5795, epoch=1480/2001, vae_loss=451.6124]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1481/2000 [00:37<00:12, 39.97it/s, adv_loss=-1.5700, bio_penalty=0.0138, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.5795, epoch=1480/2001, vae_loss=451.6124]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1481/2000 [00:37<00:12, 39.97it/s, adv_loss=-1.5701, bio_penalty=0.0118, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.5553, epoch=1481/2001, vae_loss=452.5862]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1482/2000 [00:37<00:12, 39.97it/s, adv_loss=-1.5701, bio_penalty=0.0118, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.3363, epoch=1482/2001, vae_loss=450.3672]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1483/2000 [00:37<00:12, 39.97it/s, adv_loss=-1.5701, bio_penalty=0.0125, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.7786, epoch=1483/2001, vae_loss=451.8101]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1484/2000 [00:37<00:12, 39.97it/s, adv_loss=-1.5701, bio_penalty=0.0129, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.3089, epoch=1484/2001, vae_loss=451.3409]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1485/2000 [00:37<00:12, 39.97it/s, adv_loss=-1.5702, bio_penalty=0.0167, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.5000, epoch=1485/2001, vae_loss=452.5358]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1486/2000 [00:37<00:12, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0167, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.5000, epoch=1485/2001, vae_loss=452.5358]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1486/2000 [00:37<00:12, 40.14it/s, adv_loss=-1.5701, bio_penalty=0.0139, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.9116, epoch=1486/2001, vae_loss=449.9445]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1487/2000 [00:37<00:12, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0158, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.7077, epoch=1487/2001, vae_loss=454.7426]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1488/2000 [00:37<00:12, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0165, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.8148, epoch=1488/2001, vae_loss=451.8503]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1489/2000 [00:37<00:12, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0165, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.5250, epoch=1489/2001, vae_loss=448.5605]
Training: Embeddings batch effect correction using adversrial training:  74%|███████▍  | 1490/2000 [00:37<00:12, 40.14it/s, adv_loss=-1.5702, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.0912, epoch=1490/2001, vae_loss=447.1262]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1491/2000 [00:37<00:12, 39.92it/s, adv_loss=-1.5702, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.0912, epoch=1490/2001, vae_loss=447.1262]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1491/2000 [00:37<00:12, 39.92it/s, adv_loss=-1.5702, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.5910, epoch=1491/2001, vae_loss=450.6260]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1492/2000 [00:37<00:12, 39.92it/s, adv_loss=-1.5703, bio_penalty=0.0168, clustering_loss=0.0190, disc_loss=1.5703, elbo=451.5492, epoch=1492/2001, vae_loss=451.5851]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1493/2000 [00:37<00:12, 39.92it/s, adv_loss=-1.5703, bio_penalty=0.0178, clustering_loss=0.0190, disc_loss=1.5703, elbo=450.7739, epoch=1493/2001, vae_loss=450.8107]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1494/2000 [00:37<00:12, 39.92it/s, adv_loss=-1.5703, bio_penalty=0.0195, clustering_loss=0.0190, disc_loss=1.5703, elbo=451.2937, epoch=1494/2001, vae_loss=451.3323]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1495/2000 [00:37<00:12, 39.92it/s, adv_loss=-1.5702, bio_penalty=0.0191, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.9501, epoch=1495/2001, vae_loss=457.9882]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1496/2000 [00:37<00:12, 39.94it/s, adv_loss=-1.5702, bio_penalty=0.0191, clustering_loss=0.0190, disc_loss=1.5702, elbo=457.9501, epoch=1495/2001, vae_loss=457.9882]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1496/2000 [00:38<00:12, 39.94it/s, adv_loss=-1.5703, bio_penalty=0.0303, clustering_loss=0.0190, disc_loss=1.5703, elbo=453.8824, epoch=1496/2001, vae_loss=453.9318]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1497/2000 [00:38<00:12, 39.94it/s, adv_loss=-1.5703, bio_penalty=0.0237, clustering_loss=0.0190, disc_loss=1.5703, elbo=451.6668, epoch=1497/2001, vae_loss=451.7095]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1498/2000 [00:38<00:12, 39.94it/s, adv_loss=-1.5702, bio_penalty=0.0177, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.1141, epoch=1498/2001, vae_loss=451.1508]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▍  | 1499/2000 [00:38<00:12, 39.94it/s, adv_loss=-1.5702, bio_penalty=0.0162, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.4591, epoch=1499/2001, vae_loss=449.4943]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1500/2000 [00:38<00:12, 39.94it/s, adv_loss=-1.5703, bio_penalty=0.0180, clustering_loss=0.0190, disc_loss=1.5703, elbo=451.5045, epoch=1500/2001, vae_loss=451.5415]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1501/2000 [00:38<00:12, 40.12it/s, adv_loss=-1.5703, bio_penalty=0.0180, clustering_loss=0.0190, disc_loss=1.5703, elbo=451.5045, epoch=1500/2001, vae_loss=451.5415]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1501/2000 [00:38<00:12, 40.12it/s, adv_loss=-1.5702, bio_penalty=0.0192, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.3546, epoch=1501/2001, vae_loss=452.3928]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1502/2000 [00:38<00:12, 40.12it/s, adv_loss=-1.5702, bio_penalty=0.0189, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.0401, epoch=1502/2001, vae_loss=452.0781]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1503/2000 [00:38<00:12, 40.12it/s, adv_loss=-1.5703, bio_penalty=0.0217, clustering_loss=0.0190, disc_loss=1.5703, elbo=450.6263, epoch=1503/2001, vae_loss=450.6669]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1504/2000 [00:38<00:12, 40.12it/s, adv_loss=-1.5702, bio_penalty=0.0244, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.0412, epoch=1504/2001, vae_loss=448.0847]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1505/2000 [00:38<00:12, 40.12it/s, adv_loss=-1.5703, bio_penalty=0.0236, clustering_loss=0.0190, disc_loss=1.5703, elbo=449.5533, epoch=1505/2001, vae_loss=449.5959]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1506/2000 [00:38<00:12, 39.90it/s, adv_loss=-1.5703, bio_penalty=0.0236, clustering_loss=0.0190, disc_loss=1.5703, elbo=449.5533, epoch=1505/2001, vae_loss=449.5959]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1506/2000 [00:38<00:12, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.0181, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.8538, epoch=1506/2001, vae_loss=453.8909]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1507/2000 [00:38<00:12, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.0173, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.6133, epoch=1507/2001, vae_loss=449.6496]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1508/2000 [00:38<00:12, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.0151, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.6741, epoch=1508/2001, vae_loss=458.7083]
Training: Embeddings batch effect correction using adversrial training:  75%|███████▌  | 1509/2000 [00:38<00:12, 39.90it/s, adv_loss=-1.5703, bio_penalty=0.0153, clustering_loss=0.0190, disc_loss=1.5703, elbo=477.5978, epoch=1509/2001, vae_loss=477.6322]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1510/2000 [00:38<00:12, 39.66it/s, adv_loss=-1.5703, bio_penalty=0.0153, clustering_loss=0.0190, disc_loss=1.5703, elbo=477.5978, epoch=1509/2001, vae_loss=477.6322]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1510/2000 [00:38<00:12, 39.66it/s, adv_loss=-1.5702, bio_penalty=0.0154, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.2487, epoch=1510/2001, vae_loss=455.2831]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1511/2000 [00:38<00:12, 39.66it/s, adv_loss=-1.5702, bio_penalty=0.0248, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.4820, epoch=1511/2001, vae_loss=459.5258]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1512/2000 [00:38<00:12, 39.66it/s, adv_loss=-1.5701, bio_penalty=0.0448, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.2174, epoch=1512/2001, vae_loss=461.2812]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1513/2000 [00:38<00:12, 39.66it/s, adv_loss=-1.5701, bio_penalty=0.0306, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.3607, epoch=1513/2001, vae_loss=454.4103]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1514/2000 [00:38<00:12, 39.64it/s, adv_loss=-1.5701, bio_penalty=0.0306, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.3607, epoch=1513/2001, vae_loss=454.4103]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1514/2000 [00:38<00:12, 39.64it/s, adv_loss=-1.5702, bio_penalty=0.0117, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.7995, epoch=1514/2001, vae_loss=453.8303]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1515/2000 [00:38<00:12, 39.64it/s, adv_loss=-1.5702, bio_penalty=0.0075, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.8340, epoch=1515/2001, vae_loss=458.8605]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1516/2000 [00:38<00:12, 39.64it/s, adv_loss=-1.5701, bio_penalty=0.0096, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.7785, epoch=1516/2001, vae_loss=455.8072]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1517/2000 [00:38<00:12, 39.64it/s, adv_loss=-1.5701, bio_penalty=0.0118, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.3641, epoch=1517/2001, vae_loss=456.3949]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1518/2000 [00:38<00:12, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0118, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.3641, epoch=1517/2001, vae_loss=456.3949]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1518/2000 [00:38<00:12, 39.24it/s, adv_loss=-1.5700, bio_penalty=0.0105, clustering_loss=0.0190, disc_loss=1.5700, elbo=452.3782, epoch=1518/2001, vae_loss=452.4078]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1519/2000 [00:38<00:12, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0097, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.7769, epoch=1519/2001, vae_loss=452.8056]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1520/2000 [00:38<00:12, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0091, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.6865, epoch=1520/2001, vae_loss=453.7146]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1521/2000 [00:38<00:12, 39.24it/s, adv_loss=-1.5702, bio_penalty=0.0095, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.8166, epoch=1521/2001, vae_loss=456.8452]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1522/2000 [00:38<00:12, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0095, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.8166, epoch=1521/2001, vae_loss=456.8452]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1522/2000 [00:38<00:12, 39.18it/s, adv_loss=-1.5701, bio_penalty=0.0087, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.7304, epoch=1522/2001, vae_loss=452.7582]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1523/2000 [00:38<00:12, 39.18it/s, adv_loss=-1.5700, bio_penalty=0.0092, clustering_loss=0.0190, disc_loss=1.5700, elbo=460.5370, epoch=1523/2001, vae_loss=460.5652]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▌  | 1524/2000 [00:38<00:12, 39.18it/s, adv_loss=-1.5700, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5700, elbo=458.1734, epoch=1524/2001, vae_loss=458.2011]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1525/2000 [00:38<00:12, 39.18it/s, adv_loss=-1.5701, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.1561, epoch=1525/2001, vae_loss=457.1837]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1526/2000 [00:38<00:12, 39.40it/s, adv_loss=-1.5701, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.1561, epoch=1525/2001, vae_loss=457.1837]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1526/2000 [00:38<00:12, 39.40it/s, adv_loss=-1.5701, bio_penalty=0.0105, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.4130, epoch=1526/2001, vae_loss=455.4425]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1527/2000 [00:38<00:12, 39.40it/s, adv_loss=-1.5702, bio_penalty=0.0089, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.2555, epoch=1527/2001, vae_loss=458.2834]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1528/2000 [00:38<00:11, 39.40it/s, adv_loss=-1.5701, bio_penalty=0.0079, clustering_loss=0.0190, disc_loss=1.5701, elbo=460.2846, epoch=1528/2001, vae_loss=460.3115]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1529/2000 [00:38<00:11, 39.40it/s, adv_loss=-1.5701, bio_penalty=0.0083, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.5243, epoch=1529/2001, vae_loss=457.5516]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1530/2000 [00:38<00:12, 39.08it/s, adv_loss=-1.5701, bio_penalty=0.0083, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.5243, epoch=1529/2001, vae_loss=457.5516]
Training: Embeddings batch effect correction using adversrial training:  76%|███████▋  | 1530/2000 [00:38<00:12, 39.08it/s, adv_loss=-1.5700, bio_penalty=0.0101, clustering_loss=0.0190, disc_loss=1.5700, elbo=472.7049, epoch=1530/2001, vae_loss=472.7341]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1531/2000 [00:38<00:11, 39.08it/s, adv_loss=-1.5701, bio_penalty=0.0086, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.2402, epoch=1531/2001, vae_loss=457.2678]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1532/2000 [00:38<00:11, 39.08it/s, adv_loss=-1.5702, bio_penalty=0.0097, clustering_loss=0.0190, disc_loss=1.5702, elbo=459.8145, epoch=1532/2001, vae_loss=459.8433]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1533/2000 [00:38<00:11, 39.08it/s, adv_loss=-1.5700, bio_penalty=0.0110, clustering_loss=0.0190, disc_loss=1.5700, elbo=459.1332, epoch=1533/2001, vae_loss=459.1633]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1534/2000 [00:38<00:11, 39.08it/s, adv_loss=-1.5701, bio_penalty=0.0131, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.2767, epoch=1534/2001, vae_loss=461.3089]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1535/2000 [00:38<00:11, 39.53it/s, adv_loss=-1.5701, bio_penalty=0.0131, clustering_loss=0.0190, disc_loss=1.5701, elbo=461.2767, epoch=1534/2001, vae_loss=461.3089]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1535/2000 [00:38<00:11, 39.53it/s, adv_loss=-1.5701, bio_penalty=0.0188, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.5246, epoch=1535/2001, vae_loss=455.5624]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1536/2000 [00:39<00:11, 39.53it/s, adv_loss=-1.5700, bio_penalty=0.0193, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.2551, epoch=1536/2001, vae_loss=454.2935]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1537/2000 [00:39<00:11, 39.53it/s, adv_loss=-1.5700, bio_penalty=0.0134, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.4049, epoch=1537/2001, vae_loss=455.4373]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1538/2000 [00:39<00:11, 39.53it/s, adv_loss=-1.5700, bio_penalty=0.0125, clustering_loss=0.0190, disc_loss=1.5700, elbo=457.6194, epoch=1538/2001, vae_loss=457.6510]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1539/2000 [00:39<00:11, 39.53it/s, adv_loss=-1.5701, bio_penalty=0.0123, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.6050, epoch=1539/2001, vae_loss=456.6363]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1540/2000 [00:39<00:11, 39.73it/s, adv_loss=-1.5701, bio_penalty=0.0123, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.6050, epoch=1539/2001, vae_loss=456.6363]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1540/2000 [00:39<00:11, 39.73it/s, adv_loss=-1.5702, bio_penalty=0.0117, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.7663, epoch=1540/2001, vae_loss=454.7970]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1541/2000 [00:39<00:11, 39.73it/s, adv_loss=-1.5701, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.7328, epoch=1541/2001, vae_loss=455.7645]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1542/2000 [00:39<00:11, 39.73it/s, adv_loss=-1.5702, bio_penalty=0.0156, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.5638, epoch=1542/2001, vae_loss=456.5984]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1543/2000 [00:39<00:11, 39.73it/s, adv_loss=-1.5701, bio_penalty=0.0410, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.0463, epoch=1543/2001, vae_loss=458.1064]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1544/2000 [00:39<00:11, 39.72it/s, adv_loss=-1.5701, bio_penalty=0.0410, clustering_loss=0.0190, disc_loss=1.5701, elbo=458.0463, epoch=1543/2001, vae_loss=458.1064]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1544/2000 [00:39<00:11, 39.72it/s, adv_loss=-1.5702, bio_penalty=0.0380, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.2520, epoch=1544/2001, vae_loss=454.3091]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1545/2000 [00:39<00:11, 39.72it/s, adv_loss=-1.5700, bio_penalty=0.0251, clustering_loss=0.0190, disc_loss=1.5700, elbo=455.8199, epoch=1545/2001, vae_loss=455.8641]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1546/2000 [00:39<00:11, 39.72it/s, adv_loss=-1.5701, bio_penalty=0.0231, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.2122, epoch=1546/2001, vae_loss=454.2543]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1547/2000 [00:39<00:11, 39.72it/s, adv_loss=-1.5702, bio_penalty=0.0232, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3824, epoch=1547/2001, vae_loss=451.4246]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1548/2000 [00:39<00:11, 39.72it/s, adv_loss=-1.5701, bio_penalty=0.0228, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.1205, epoch=1548/2001, vae_loss=453.1623]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1549/2000 [00:39<00:11, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0228, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.1205, epoch=1548/2001, vae_loss=453.1623]
Training: Embeddings batch effect correction using adversrial training:  77%|███████▋  | 1549/2000 [00:39<00:11, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0250, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.1610, epoch=1549/2001, vae_loss=456.2051]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1550/2000 [00:39<00:11, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0282, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.5239, epoch=1550/2001, vae_loss=453.5711]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1551/2000 [00:39<00:11, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0288, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.0684, epoch=1551/2001, vae_loss=451.1162]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1552/2000 [00:39<00:11, 39.89it/s, adv_loss=-1.5700, bio_penalty=0.0328, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.9415, epoch=1552/2001, vae_loss=448.9934]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1553/2000 [00:39<00:11, 39.70it/s, adv_loss=-1.5700, bio_penalty=0.0328, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.9415, epoch=1552/2001, vae_loss=448.9934]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1553/2000 [00:39<00:11, 39.70it/s, adv_loss=-1.5700, bio_penalty=0.0344, clustering_loss=0.0190, disc_loss=1.5700, elbo=457.4641, epoch=1553/2001, vae_loss=457.5176]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1554/2000 [00:39<00:11, 39.70it/s, adv_loss=-1.5701, bio_penalty=0.0396, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.7278, epoch=1554/2001, vae_loss=457.7864]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1555/2000 [00:39<00:11, 39.70it/s, adv_loss=-1.5700, bio_penalty=0.0497, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.1776, epoch=1555/2001, vae_loss=450.2464]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1556/2000 [00:39<00:11, 39.70it/s, adv_loss=-1.5700, bio_penalty=0.0536, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.1190, epoch=1556/2001, vae_loss=450.1916]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1557/2000 [00:39<00:11, 39.70it/s, adv_loss=-1.5700, bio_penalty=0.0476, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.9506, epoch=1557/2001, vae_loss=452.0173]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1558/2000 [00:39<00:11, 40.04it/s, adv_loss=-1.5700, bio_penalty=0.0476, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.9506, epoch=1557/2001, vae_loss=452.0173]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1558/2000 [00:39<00:11, 40.04it/s, adv_loss=-1.5700, bio_penalty=0.0388, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.4254, epoch=1558/2001, vae_loss=451.4832]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1559/2000 [00:39<00:11, 40.04it/s, adv_loss=-1.5701, bio_penalty=0.0335, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.7504, epoch=1559/2001, vae_loss=453.8029]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1560/2000 [00:39<00:10, 40.04it/s, adv_loss=-1.5701, bio_penalty=0.0457, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.0819, epoch=1560/2001, vae_loss=452.1467]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1561/2000 [00:39<00:10, 40.04it/s, adv_loss=-1.5701, bio_penalty=0.0565, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.4530, epoch=1561/2001, vae_loss=451.5285]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1562/2000 [00:39<00:10, 40.04it/s, adv_loss=-1.5700, bio_penalty=0.0647, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.3422, epoch=1562/2001, vae_loss=450.4259]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1563/2000 [00:39<00:10, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0647, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.3422, epoch=1562/2001, vae_loss=450.4259]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1563/2000 [00:39<00:10, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0628, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.5473, epoch=1563/2001, vae_loss=452.6291]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1564/2000 [00:39<00:10, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0307, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.4044, epoch=1564/2001, vae_loss=449.4543]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1565/2000 [00:39<00:10, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0193, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.1088, epoch=1565/2001, vae_loss=451.1471]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1566/2000 [00:39<00:10, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0162, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.4456, epoch=1566/2001, vae_loss=452.4808]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1567/2000 [00:39<00:10, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0257, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.9162, epoch=1567/2001, vae_loss=453.9610]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1568/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0257, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.9162, epoch=1567/2001, vae_loss=453.9610]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1568/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0249, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.2951, epoch=1568/2001, vae_loss=454.3391]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1569/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0206, clustering_loss=0.0190, disc_loss=1.5701, elbo=457.2675, epoch=1569/2001, vae_loss=457.3072]
Training: Embeddings batch effect correction using adversrial training:  78%|███████▊  | 1570/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5700, bio_penalty=0.0112, clustering_loss=0.0190, disc_loss=1.5700, elbo=452.0726, epoch=1570/2001, vae_loss=452.1028]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▊  | 1571/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0089, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.7147, epoch=1571/2001, vae_loss=447.7426]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▊  | 1572/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0089, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.7147, epoch=1571/2001, vae_loss=447.7426]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▊  | 1572/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0084, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.1395, epoch=1572/2001, vae_loss=448.1670]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▊  | 1573/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5701, bio_penalty=0.0088, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.7044, epoch=1573/2001, vae_loss=450.7323]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▊  | 1574/2000 [00:39<00:10, 39.87it/s, adv_loss=-1.5702, bio_penalty=0.0107, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.2437, epoch=1574/2001, vae_loss=448.2734]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1575/2000 [00:40<00:10, 39.87it/s, adv_loss=-1.5700, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.3883, epoch=1575/2001, vae_loss=449.4213]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1576/2000 [00:40<00:10, 39.90it/s, adv_loss=-1.5700, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.3883, epoch=1575/2001, vae_loss=449.4213]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1576/2000 [00:40<00:10, 39.90it/s, adv_loss=-1.5700, bio_penalty=0.0193, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.2762, epoch=1576/2001, vae_loss=449.3146]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1577/2000 [00:40<00:10, 39.90it/s, adv_loss=-1.5701, bio_penalty=0.0257, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.8943, epoch=1577/2001, vae_loss=449.9391]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1578/2000 [00:40<00:10, 39.90it/s, adv_loss=-1.5700, bio_penalty=0.0294, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.4781, epoch=1578/2001, vae_loss=450.5265]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1579/2000 [00:40<00:10, 39.90it/s, adv_loss=-1.5700, bio_penalty=0.0240, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.9827, epoch=1579/2001, vae_loss=450.0257]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1580/2000 [00:40<00:10, 39.90it/s, adv_loss=-1.5700, bio_penalty=0.0174, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.8398, epoch=1580/2001, vae_loss=447.8763]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1581/2000 [00:40<00:10, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0174, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.8398, epoch=1580/2001, vae_loss=447.8763]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1581/2000 [00:40<00:10, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0119, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.9521, epoch=1581/2001, vae_loss=447.9831]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1582/2000 [00:40<00:10, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0169, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.8517, epoch=1582/2001, vae_loss=446.8876]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1583/2000 [00:40<00:10, 40.06it/s, adv_loss=-1.5700, bio_penalty=0.0145, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.2534, epoch=1583/2001, vae_loss=448.2870]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1584/2000 [00:40<00:10, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0131, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.2619, epoch=1584/2001, vae_loss=450.2940]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1585/2000 [00:40<00:10, 40.06it/s, adv_loss=-1.5702, bio_penalty=0.0183, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.8216, epoch=1585/2001, vae_loss=448.8589]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1586/2000 [00:40<00:10, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0183, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.8216, epoch=1585/2001, vae_loss=448.8589]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1586/2000 [00:40<00:10, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0162, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.9604, epoch=1586/2001, vae_loss=447.9956]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1587/2000 [00:40<00:10, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0165, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.9129, epoch=1587/2001, vae_loss=449.9485]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1588/2000 [00:40<00:10, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0238, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.8245, epoch=1588/2001, vae_loss=448.8673]
Training: Embeddings batch effect correction using adversrial training:  79%|███████▉  | 1589/2000 [00:40<00:10, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0311, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.0987, epoch=1589/2001, vae_loss=447.1488]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1590/2000 [00:40<00:10, 39.68it/s, adv_loss=-1.5702, bio_penalty=0.0311, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.0987, epoch=1589/2001, vae_loss=447.1488]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1590/2000 [00:40<00:10, 39.68it/s, adv_loss=-1.5702, bio_penalty=0.0304, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.0716, epoch=1590/2001, vae_loss=449.1211]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1591/2000 [00:40<00:10, 39.68it/s, adv_loss=-1.5702, bio_penalty=0.0235, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.0135, epoch=1591/2001, vae_loss=449.0561]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1592/2000 [00:40<00:10, 39.68it/s, adv_loss=-1.5701, bio_penalty=0.0264, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.2125, epoch=1592/2001, vae_loss=448.2580]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1593/2000 [00:40<00:10, 39.68it/s, adv_loss=-1.5702, bio_penalty=0.0429, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.1554, epoch=1593/2001, vae_loss=446.2173]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1594/2000 [00:40<00:10, 39.44it/s, adv_loss=-1.5702, bio_penalty=0.0429, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.1554, epoch=1593/2001, vae_loss=446.2173]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1594/2000 [00:40<00:10, 39.44it/s, adv_loss=-1.5700, bio_penalty=0.0534, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.8909, epoch=1594/2001, vae_loss=447.9634]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1595/2000 [00:40<00:10, 39.44it/s, adv_loss=-1.5701, bio_penalty=0.0528, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.8615, epoch=1595/2001, vae_loss=451.9333]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1596/2000 [00:40<00:10, 39.44it/s, adv_loss=-1.5702, bio_penalty=0.0519, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.5983, epoch=1596/2001, vae_loss=447.6692]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1597/2000 [00:40<00:10, 39.44it/s, adv_loss=-1.5703, bio_penalty=0.0418, clustering_loss=0.0190, disc_loss=1.5703, elbo=448.0427, epoch=1597/2001, vae_loss=448.1035]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1598/2000 [00:40<00:10, 39.12it/s, adv_loss=-1.5703, bio_penalty=0.0418, clustering_loss=0.0190, disc_loss=1.5703, elbo=448.0427, epoch=1597/2001, vae_loss=448.1035]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1598/2000 [00:40<00:10, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0367, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.1892, epoch=1598/2001, vae_loss=450.2450]
Training: Embeddings batch effect correction using adversrial training:  80%|███████▉  | 1599/2000 [00:40<00:10, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0385, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.2740, epoch=1599/2001, vae_loss=448.3316]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1600/2000 [00:40<00:10, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0389, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.7277, epoch=1600/2001, vae_loss=447.7856]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1601/2000 [00:40<00:10, 39.12it/s, adv_loss=-1.5701, bio_penalty=0.0357, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.2391, epoch=1601/2001, vae_loss=447.2938]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1602/2000 [00:40<00:10, 39.02it/s, adv_loss=-1.5701, bio_penalty=0.0357, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.2391, epoch=1601/2001, vae_loss=447.2938]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1602/2000 [00:40<00:10, 39.02it/s, adv_loss=-1.5700, bio_penalty=0.0279, clustering_loss=0.0190, disc_loss=1.5700, elbo=450.4423, epoch=1602/2001, vae_loss=450.4893]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1603/2000 [00:40<00:10, 39.02it/s, adv_loss=-1.5702, bio_penalty=0.0208, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.2770, epoch=1603/2001, vae_loss=449.3168]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1604/2000 [00:40<00:10, 39.02it/s, adv_loss=-1.5702, bio_penalty=0.0369, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.2126, epoch=1604/2001, vae_loss=455.2685]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1605/2000 [00:40<00:10, 39.02it/s, adv_loss=-1.5702, bio_penalty=0.0135, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.2622, epoch=1605/2001, vae_loss=447.2947]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1606/2000 [00:40<00:10, 39.24it/s, adv_loss=-1.5702, bio_penalty=0.0135, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.2622, epoch=1605/2001, vae_loss=447.2947]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1606/2000 [00:40<00:10, 39.24it/s, adv_loss=-1.5702, bio_penalty=0.0051, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.7288, epoch=1606/2001, vae_loss=448.7530]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1607/2000 [00:40<00:10, 39.24it/s, adv_loss=-1.5701, bio_penalty=0.0041, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.7432, epoch=1607/2001, vae_loss=449.7664]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1608/2000 [00:40<00:09, 39.24it/s, adv_loss=-1.5703, bio_penalty=0.0045, clustering_loss=0.0190, disc_loss=1.5703, elbo=450.3733, epoch=1608/2001, vae_loss=450.3969]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1609/2000 [00:40<00:09, 39.24it/s, adv_loss=-1.5702, bio_penalty=0.0059, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3703, epoch=1609/2001, vae_loss=451.3952]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1610/2000 [00:40<00:10, 38.71it/s, adv_loss=-1.5702, bio_penalty=0.0059, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3703, epoch=1609/2001, vae_loss=451.3952]
Training: Embeddings batch effect correction using adversrial training:  80%|████████  | 1610/2000 [00:40<00:10, 38.71it/s, adv_loss=-1.5702, bio_penalty=0.0052, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.0326, epoch=1610/2001, vae_loss=450.0569]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1611/2000 [00:40<00:10, 38.71it/s, adv_loss=-1.5702, bio_penalty=0.0036, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3533, epoch=1611/2001, vae_loss=451.3759]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1612/2000 [00:40<00:10, 38.71it/s, adv_loss=-1.5702, bio_penalty=0.0036, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.5877, epoch=1612/2001, vae_loss=450.6104]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1613/2000 [00:40<00:09, 38.71it/s, adv_loss=-1.5702, bio_penalty=0.0033, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.1514, epoch=1613/2001, vae_loss=449.1738]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1614/2000 [00:40<00:09, 38.71it/s, adv_loss=-1.5701, bio_penalty=0.0037, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.9312, epoch=1614/2001, vae_loss=452.9539]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1615/2000 [00:40<00:09, 39.16it/s, adv_loss=-1.5701, bio_penalty=0.0037, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.9312, epoch=1614/2001, vae_loss=452.9539]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1615/2000 [00:41<00:09, 39.16it/s, adv_loss=-1.5702, bio_penalty=0.0045, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.1295, epoch=1615/2001, vae_loss=452.1530]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1616/2000 [00:41<00:09, 39.16it/s, adv_loss=-1.5702, bio_penalty=0.0043, clustering_loss=0.0190, disc_loss=1.5702, elbo=453.1598, epoch=1616/2001, vae_loss=453.1831]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1617/2000 [00:41<00:09, 39.16it/s, adv_loss=-1.5702, bio_penalty=0.0044, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.7838, epoch=1617/2001, vae_loss=452.8072]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1618/2000 [00:41<00:09, 39.16it/s, adv_loss=-1.5702, bio_penalty=0.0063, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.1119, epoch=1618/2001, vae_loss=454.1373]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1619/2000 [00:41<00:09, 39.16it/s, adv_loss=-1.5702, bio_penalty=0.0098, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.1780, epoch=1619/2001, vae_loss=454.2069]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1620/2000 [00:41<00:09, 39.52it/s, adv_loss=-1.5702, bio_penalty=0.0098, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.1780, epoch=1619/2001, vae_loss=454.2069]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1620/2000 [00:41<00:09, 39.52it/s, adv_loss=-1.5702, bio_penalty=0.0167, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.4560, epoch=1620/2001, vae_loss=451.4918]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1621/2000 [00:41<00:09, 39.52it/s, adv_loss=-1.5701, bio_penalty=0.0139, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.0761, epoch=1621/2001, vae_loss=452.1091]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1622/2000 [00:41<00:09, 39.52it/s, adv_loss=-1.5702, bio_penalty=0.0116, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.3817, epoch=1622/2001, vae_loss=456.4124]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1623/2000 [00:41<00:09, 39.52it/s, adv_loss=-1.5702, bio_penalty=0.0282, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.0519, epoch=1623/2001, vae_loss=452.0992]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1624/2000 [00:41<00:09, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0282, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.0519, epoch=1623/2001, vae_loss=452.0992]
Training: Embeddings batch effect correction using adversrial training:  81%|████████  | 1624/2000 [00:41<00:09, 39.62it/s, adv_loss=-1.5703, bio_penalty=0.0519, clustering_loss=0.0190, disc_loss=1.5703, elbo=457.2691, epoch=1624/2001, vae_loss=457.3401]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 1625/2000 [00:41<00:09, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0624, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.1495, epoch=1625/2001, vae_loss=458.2310]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 1626/2000 [00:41<00:09, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0523, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.2632, epoch=1626/2001, vae_loss=454.3345]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 1627/2000 [00:41<00:09, 39.62it/s, adv_loss=-1.5702, bio_penalty=0.0298, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.9490, epoch=1627/2001, vae_loss=452.9979]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 1628/2000 [00:41<00:09, 39.71it/s, adv_loss=-1.5702, bio_penalty=0.0298, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.9490, epoch=1627/2001, vae_loss=452.9979]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 1628/2000 [00:41<00:09, 39.71it/s, adv_loss=-1.5702, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5702, elbo=455.1095, epoch=1628/2001, vae_loss=455.1467]
Training: Embeddings batch effect correction using adversrial training:  81%|████████▏ | 1629/2000 [00:41<00:09, 39.71it/s, adv_loss=-1.5702, bio_penalty=0.0122, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.7445, epoch=1629/2001, vae_loss=451.7757]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1630/2000 [00:41<00:09, 39.71it/s, adv_loss=-1.5701, bio_penalty=0.0104, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.6645, epoch=1630/2001, vae_loss=454.6939]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1631/2000 [00:41<00:09, 39.71it/s, adv_loss=-1.5702, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3744, epoch=1631/2001, vae_loss=451.4061]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1632/2000 [00:41<00:09, 39.53it/s, adv_loss=-1.5702, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.3744, epoch=1631/2001, vae_loss=451.4061]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1632/2000 [00:41<00:09, 39.53it/s, adv_loss=-1.5702, bio_penalty=0.0183, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.2717, epoch=1632/2001, vae_loss=450.3090]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1633/2000 [00:41<00:09, 39.53it/s, adv_loss=-1.5701, bio_penalty=0.0163, clustering_loss=0.0190, disc_loss=1.5701, elbo=455.2213, epoch=1633/2001, vae_loss=455.2566]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1634/2000 [00:41<00:09, 39.53it/s, adv_loss=-1.5702, bio_penalty=0.0170, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.8090, epoch=1634/2001, vae_loss=449.8450]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1635/2000 [00:41<00:09, 39.53it/s, adv_loss=-1.5702, bio_penalty=0.0222, clustering_loss=0.0190, disc_loss=1.5702, elbo=456.0763, epoch=1635/2001, vae_loss=456.1175]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1636/2000 [00:41<00:09, 39.53it/s, adv_loss=-1.5701, bio_penalty=0.0333, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.3127, epoch=1636/2001, vae_loss=449.3651]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1637/2000 [00:41<00:09, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0333, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.3127, epoch=1636/2001, vae_loss=449.3651]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1637/2000 [00:41<00:09, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0264, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.1980, epoch=1637/2001, vae_loss=449.2434]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1638/2000 [00:41<00:09, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0189, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.0436, epoch=1638/2001, vae_loss=451.0815]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1639/2000 [00:41<00:09, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0205, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.6806, epoch=1639/2001, vae_loss=448.7201]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1640/2000 [00:41<00:09, 39.80it/s, adv_loss=-1.5701, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.3424, epoch=1640/2001, vae_loss=452.3836]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1641/2000 [00:41<00:09, 39.80it/s, adv_loss=-1.5702, bio_penalty=0.0236, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.7455, epoch=1641/2001, vae_loss=450.7881]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1642/2000 [00:41<00:08, 40.05it/s, adv_loss=-1.5702, bio_penalty=0.0236, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.7455, epoch=1641/2001, vae_loss=450.7881]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1642/2000 [00:41<00:08, 40.05it/s, adv_loss=-1.5701, bio_penalty=0.0224, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.4274, epoch=1642/2001, vae_loss=448.4688]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1643/2000 [00:41<00:08, 40.05it/s, adv_loss=-1.5702, bio_penalty=0.0222, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.8330, epoch=1643/2001, vae_loss=448.8742]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1644/2000 [00:41<00:08, 40.05it/s, adv_loss=-1.5700, bio_penalty=0.0224, clustering_loss=0.0190, disc_loss=1.5700, elbo=449.3944, epoch=1644/2001, vae_loss=449.4359]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1645/2000 [00:41<00:08, 40.05it/s, adv_loss=-1.5701, bio_penalty=0.0199, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.6387, epoch=1645/2001, vae_loss=448.6776]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1646/2000 [00:41<00:08, 40.05it/s, adv_loss=-1.5702, bio_penalty=0.0168, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.3709, epoch=1646/2001, vae_loss=449.4068]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1647/2000 [00:41<00:08, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.0168, clustering_loss=0.0190, disc_loss=1.5702, elbo=449.3709, epoch=1646/2001, vae_loss=449.4068]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1647/2000 [00:41<00:08, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.0136, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.3716, epoch=1647/2001, vae_loss=448.4043]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1648/2000 [00:41<00:08, 39.90it/s, adv_loss=-1.5701, bio_penalty=0.0121, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.3661, epoch=1648/2001, vae_loss=447.3973]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▏ | 1649/2000 [00:41<00:08, 39.90it/s, adv_loss=-1.5700, bio_penalty=0.0116, clustering_loss=0.0190, disc_loss=1.5700, elbo=446.0528, epoch=1649/2001, vae_loss=446.0834]
Training: Embeddings batch effect correction using adversrial training:  82%|████████▎ | 1650/2000 [00:41<00:08, 39.90it/s, adv_loss=-1.5702, bio_penalty=0.0108, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.5642, epoch=1650/2001, vae_loss=450.5940]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1651/2000 [00:41<00:08, 39.83it/s, adv_loss=-1.5702, bio_penalty=0.0108, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.5642, epoch=1650/2001, vae_loss=450.5940]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1651/2000 [00:41<00:08, 39.83it/s, adv_loss=-1.5702, bio_penalty=0.0097, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.2597, epoch=1651/2001, vae_loss=448.2885]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1652/2000 [00:41<00:08, 39.83it/s, adv_loss=-1.5702, bio_penalty=0.0094, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.9873, epoch=1652/2001, vae_loss=447.0157]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1653/2000 [00:41<00:08, 39.83it/s, adv_loss=-1.5701, bio_penalty=0.0096, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.2627, epoch=1653/2001, vae_loss=447.2914]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1654/2000 [00:41<00:08, 39.83it/s, adv_loss=-1.5702, bio_penalty=0.0102, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.1884, epoch=1654/2001, vae_loss=447.2177]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1655/2000 [00:41<00:08, 39.85it/s, adv_loss=-1.5702, bio_penalty=0.0102, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.1884, epoch=1654/2001, vae_loss=447.2177]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1655/2000 [00:42<00:08, 39.85it/s, adv_loss=-1.5701, bio_penalty=0.0129, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.6598, epoch=1655/2001, vae_loss=447.6917]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1656/2000 [00:42<00:08, 39.85it/s, adv_loss=-1.5701, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.1872, epoch=1656/2001, vae_loss=448.2172]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1657/2000 [00:42<00:08, 39.85it/s, adv_loss=-1.5701, bio_penalty=0.0101, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.3639, epoch=1657/2001, vae_loss=448.3931]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1658/2000 [00:42<00:08, 39.85it/s, adv_loss=-1.5702, bio_penalty=0.0101, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.1673, epoch=1658/2001, vae_loss=447.1965]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1659/2000 [00:42<00:08, 39.72it/s, adv_loss=-1.5702, bio_penalty=0.0101, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.1673, epoch=1658/2001, vae_loss=447.1965]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1659/2000 [00:42<00:08, 39.72it/s, adv_loss=-1.5701, bio_penalty=0.0104, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.2110, epoch=1659/2001, vae_loss=445.2404]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1660/2000 [00:42<00:08, 39.72it/s, adv_loss=-1.5701, bio_penalty=0.0112, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.3846, epoch=1660/2001, vae_loss=448.4148]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1661/2000 [00:42<00:08, 39.72it/s, adv_loss=-1.5701, bio_penalty=0.0089, clustering_loss=0.0190, disc_loss=1.5701, elbo=444.9454, epoch=1661/2001, vae_loss=444.9734]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1662/2000 [00:42<00:08, 39.72it/s, adv_loss=-1.5702, bio_penalty=0.0085, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.8261, epoch=1662/2001, vae_loss=446.8537]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1663/2000 [00:42<00:08, 39.46it/s, adv_loss=-1.5702, bio_penalty=0.0085, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.8261, epoch=1662/2001, vae_loss=446.8537]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1663/2000 [00:42<00:08, 39.46it/s, adv_loss=-1.5701, bio_penalty=0.0084, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.3026, epoch=1663/2001, vae_loss=446.3301]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1664/2000 [00:42<00:08, 39.46it/s, adv_loss=-1.5702, bio_penalty=0.0069, clustering_loss=0.0190, disc_loss=1.5702, elbo=445.6796, epoch=1664/2001, vae_loss=445.7055]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1665/2000 [00:42<00:08, 39.46it/s, adv_loss=-1.5700, bio_penalty=0.0074, clustering_loss=0.0190, disc_loss=1.5700, elbo=445.0127, epoch=1665/2001, vae_loss=445.0391]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1666/2000 [00:42<00:08, 39.46it/s, adv_loss=-1.5702, bio_penalty=0.0105, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.4755, epoch=1666/2001, vae_loss=446.5051]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1667/2000 [00:42<00:08, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0105, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.4755, epoch=1666/2001, vae_loss=446.5051]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1667/2000 [00:42<00:08, 39.18it/s, adv_loss=-1.5701, bio_penalty=0.0163, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.9576, epoch=1667/2001, vae_loss=446.9930]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1668/2000 [00:42<00:08, 39.18it/s, adv_loss=-1.5701, bio_penalty=0.0196, clustering_loss=0.0190, disc_loss=1.5701, elbo=446.2337, epoch=1668/2001, vae_loss=446.2723]
Training: Embeddings batch effect correction using adversrial training:  83%|████████▎ | 1669/2000 [00:42<00:08, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0244, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.1450, epoch=1669/2001, vae_loss=448.1884]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 1670/2000 [00:42<00:08, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.0322, epoch=1670/2001, vae_loss=452.0766]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 1671/2000 [00:42<00:08, 39.39it/s, adv_loss=-1.5702, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.0322, epoch=1670/2001, vae_loss=452.0766]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 1671/2000 [00:42<00:08, 39.39it/s, adv_loss=-1.5701, bio_penalty=0.0205, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.2461, epoch=1671/2001, vae_loss=449.2857]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 1672/2000 [00:42<00:08, 39.39it/s, adv_loss=-1.5701, bio_penalty=0.0136, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.3913, epoch=1672/2001, vae_loss=452.4240]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 1673/2000 [00:42<00:08, 39.39it/s, adv_loss=-1.5701, bio_penalty=0.0112, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.5806, epoch=1673/2001, vae_loss=450.6107]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▎ | 1674/2000 [00:42<00:08, 39.39it/s, adv_loss=-1.5701, bio_penalty=0.0108, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.1097, epoch=1674/2001, vae_loss=449.1395]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1675/2000 [00:42<00:08, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0108, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.1097, epoch=1674/2001, vae_loss=449.1395]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1675/2000 [00:42<00:08, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0181, clustering_loss=0.0190, disc_loss=1.5701, elbo=459.7029, epoch=1675/2001, vae_loss=459.7401]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1676/2000 [00:42<00:08, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0190, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.8157, epoch=1676/2001, vae_loss=449.8537]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1677/2000 [00:42<00:08, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0136, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.5298, epoch=1677/2001, vae_loss=448.5625]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1678/2000 [00:42<00:08, 39.09it/s, adv_loss=-1.5701, bio_penalty=0.0106, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.0064, epoch=1678/2001, vae_loss=450.0360]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1679/2000 [00:42<00:08, 39.12it/s, adv_loss=-1.5701, bio_penalty=0.0106, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.0064, epoch=1678/2001, vae_loss=450.0360]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1679/2000 [00:42<00:08, 39.12it/s, adv_loss=-1.5701, bio_penalty=0.0091, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.0302, epoch=1679/2001, vae_loss=450.0584]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1680/2000 [00:42<00:08, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0121, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.2502, epoch=1680/2001, vae_loss=451.2813]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1681/2000 [00:42<00:08, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0115, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.2599, epoch=1681/2001, vae_loss=447.2904]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1682/2000 [00:42<00:08, 39.12it/s, adv_loss=-1.5702, bio_penalty=0.0091, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.0587, epoch=1682/2001, vae_loss=448.0869]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1683/2000 [00:42<00:08, 39.30it/s, adv_loss=-1.5702, bio_penalty=0.0091, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.0587, epoch=1682/2001, vae_loss=448.0869]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1683/2000 [00:42<00:08, 39.30it/s, adv_loss=-1.5701, bio_penalty=0.0115, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.1816, epoch=1683/2001, vae_loss=447.2122]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1684/2000 [00:42<00:08, 39.30it/s, adv_loss=-1.5701, bio_penalty=0.0160, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.6270, epoch=1684/2001, vae_loss=451.6620]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1685/2000 [00:42<00:08, 39.30it/s, adv_loss=-1.5701, bio_penalty=0.0287, clustering_loss=0.0190, disc_loss=1.5701, elbo=456.3808, epoch=1685/2001, vae_loss=456.4286]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1686/2000 [00:42<00:07, 39.30it/s, adv_loss=-1.5701, bio_penalty=0.0147, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.2885, epoch=1686/2001, vae_loss=450.3222]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1687/2000 [00:42<00:07, 39.18it/s, adv_loss=-1.5701, bio_penalty=0.0147, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.2885, epoch=1686/2001, vae_loss=450.3222]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1687/2000 [00:42<00:07, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5702, elbo=454.8484, epoch=1687/2001, vae_loss=454.8833]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1688/2000 [00:42<00:07, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0153, clustering_loss=0.0190, disc_loss=1.5702, elbo=458.2059, epoch=1688/2001, vae_loss=458.2403]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1689/2000 [00:42<00:07, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.4152, epoch=1689/2001, vae_loss=451.4482]
Training: Embeddings batch effect correction using adversrial training:  84%|████████▍ | 1690/2000 [00:42<00:07, 39.18it/s, adv_loss=-1.5702, bio_penalty=0.0114, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.9872, epoch=1690/2001, vae_loss=462.0177]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1691/2000 [00:42<00:07, 39.19it/s, adv_loss=-1.5702, bio_penalty=0.0114, clustering_loss=0.0190, disc_loss=1.5702, elbo=461.9872, epoch=1690/2001, vae_loss=462.0177]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1691/2000 [00:42<00:07, 39.19it/s, adv_loss=-1.5701, bio_penalty=0.0316, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.0307, epoch=1691/2001, vae_loss=451.0814]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1692/2000 [00:42<00:07, 39.19it/s, adv_loss=-1.5701, bio_penalty=0.0341, clustering_loss=0.0190, disc_loss=1.5701, elbo=454.8542, epoch=1692/2001, vae_loss=454.9074]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1693/2000 [00:42<00:07, 39.19it/s, adv_loss=-1.5702, bio_penalty=0.0054, clustering_loss=0.0190, disc_loss=1.5702, elbo=452.1433, epoch=1693/2001, vae_loss=452.1677]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1694/2000 [00:43<00:07, 39.19it/s, adv_loss=-1.5702, bio_penalty=0.0035, clustering_loss=0.0190, disc_loss=1.5702, elbo=451.8532, epoch=1694/2001, vae_loss=451.8758]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1695/2000 [00:43<00:07, 39.19it/s, adv_loss=-1.5701, bio_penalty=0.0033, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.8401, epoch=1695/2001, vae_loss=449.8625]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1696/2000 [00:43<00:07, 39.79it/s, adv_loss=-1.5701, bio_penalty=0.0033, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.8401, epoch=1695/2001, vae_loss=449.8625]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1696/2000 [00:43<00:07, 39.79it/s, adv_loss=-1.5701, bio_penalty=0.0042, clustering_loss=0.0190, disc_loss=1.5701, elbo=452.3933, epoch=1696/2001, vae_loss=452.4165]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1697/2000 [00:43<00:07, 39.79it/s, adv_loss=-1.5701, bio_penalty=0.0066, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.4668, epoch=1697/2001, vae_loss=449.4925]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1698/2000 [00:43<00:07, 39.79it/s, adv_loss=-1.5700, bio_penalty=0.0067, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.8569, epoch=1698/2001, vae_loss=453.8826]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▍ | 1699/2000 [00:43<00:07, 39.79it/s, adv_loss=-1.5701, bio_penalty=0.0073, clustering_loss=0.0190, disc_loss=1.5701, elbo=450.1155, epoch=1699/2001, vae_loss=450.1418]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1700/2000 [00:43<00:07, 39.79it/s, adv_loss=-1.5701, bio_penalty=0.0072, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.8009, epoch=1700/2001, vae_loss=448.8271]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1701/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0072, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.8009, epoch=1700/2001, vae_loss=448.8271]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1701/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0077, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.9856, epoch=1701/2001, vae_loss=449.0124]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1702/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0094, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.9078, epoch=1702/2001, vae_loss=449.9363]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1703/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5702, bio_penalty=0.0101, clustering_loss=0.0190, disc_loss=1.5702, elbo=450.1624, epoch=1703/2001, vae_loss=450.1915]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1704/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0097, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.6814, epoch=1704/2001, vae_loss=447.7101]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1705/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0097, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.6814, epoch=1704/2001, vae_loss=447.7101]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1705/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5702, bio_penalty=0.0091, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.5175, epoch=1705/2001, vae_loss=446.5457]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1706/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0096, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.6254, epoch=1706/2001, vae_loss=449.6541]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1707/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0111, clustering_loss=0.0190, disc_loss=1.5701, elbo=449.1713, epoch=1707/2001, vae_loss=449.2014]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1708/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5702, bio_penalty=0.0136, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.1024, epoch=1708/2001, vae_loss=446.1350]
Training: Embeddings batch effect correction using adversrial training:  85%|████████▌ | 1709/2000 [00:43<00:07, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0154, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.4759, epoch=1709/2001, vae_loss=453.5103]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1710/2000 [00:43<00:07, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0154, clustering_loss=0.0190, disc_loss=1.5701, elbo=453.4759, epoch=1709/2001, vae_loss=453.5103]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1710/2000 [00:43<00:07, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0134, clustering_loss=0.0190, disc_loss=1.5701, elbo=448.5993, epoch=1710/2001, vae_loss=448.6317]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1711/2000 [00:43<00:07, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5701, elbo=447.3481, epoch=1711/2001, vae_loss=447.3798]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1712/2000 [00:43<00:07, 40.06it/s, adv_loss=-1.5702, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5702, elbo=447.1517, epoch=1712/2001, vae_loss=447.1832]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1713/2000 [00:43<00:07, 40.06it/s, adv_loss=-1.5702, bio_penalty=0.0137, clustering_loss=0.0190, disc_loss=1.5702, elbo=448.9648, epoch=1713/2001, vae_loss=448.9976]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1714/2000 [00:43<00:07, 40.06it/s, adv_loss=-1.5701, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.6126, epoch=1714/2001, vae_loss=451.6476]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1715/2000 [00:43<00:07, 39.96it/s, adv_loss=-1.5701, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5701, elbo=451.6126, epoch=1714/2001, vae_loss=451.6476]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1715/2000 [00:43<00:07, 39.96it/s, adv_loss=-1.5702, bio_penalty=0.0148, clustering_loss=0.0190, disc_loss=1.5702, elbo=446.4946, epoch=1715/2001, vae_loss=446.5285]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1716/2000 [00:43<00:07, 39.96it/s, adv_loss=-1.5700, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5700, elbo=447.4101, epoch=1716/2001, vae_loss=447.4417]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1717/2000 [00:43<00:07, 39.96it/s, adv_loss=-1.5701, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5701, elbo=444.8514, epoch=1717/2001, vae_loss=444.8831]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1718/2000 [00:43<00:07, 39.96it/s, adv_loss=-1.5701, bio_penalty=0.0130, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.7131, epoch=1718/2001, vae_loss=445.7451]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1719/2000 [00:43<00:07, 39.96it/s, adv_loss=-1.5700, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5700, elbo=442.7071, epoch=1719/2001, vae_loss=442.7388]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1720/2000 [00:43<00:06, 40.19it/s, adv_loss=-1.5700, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5700, elbo=442.7071, epoch=1719/2001, vae_loss=442.7388]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1720/2000 [00:43<00:06, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.1931, epoch=1720/2001, vae_loss=445.2246]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1721/2000 [00:43<00:06, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0120, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.1583, epoch=1721/2001, vae_loss=445.1894]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1722/2000 [00:43<00:06, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5701, elbo=442.7729, epoch=1722/2001, vae_loss=442.8044]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1723/2000 [00:43<00:06, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5701, elbo=443.4211, epoch=1723/2001, vae_loss=443.4526]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▌ | 1724/2000 [00:43<00:06, 40.19it/s, adv_loss=-1.5701, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5701, elbo=442.9655, epoch=1724/2001, vae_loss=442.9971]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1725/2000 [00:43<00:06, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5701, elbo=442.9655, epoch=1724/2001, vae_loss=442.9971]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1725/2000 [00:43<00:06, 39.95it/s, adv_loss=-1.5700, bio_penalty=0.0123, clustering_loss=0.0190, disc_loss=1.5700, elbo=443.1888, epoch=1725/2001, vae_loss=443.2202]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1726/2000 [00:43<00:06, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5701, elbo=442.8606, epoch=1726/2001, vae_loss=442.8921]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1727/2000 [00:43<00:06, 39.95it/s, adv_loss=-1.5701, bio_penalty=0.0201, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.2264, epoch=1727/2001, vae_loss=445.2656]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1728/2000 [00:43<00:06, 39.95it/s, adv_loss=-1.5700, bio_penalty=0.0239, clustering_loss=0.0190, disc_loss=1.5700, elbo=445.7393, epoch=1728/2001, vae_loss=445.7823]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1729/2000 [00:43<00:06, 39.67it/s, adv_loss=-1.5700, bio_penalty=0.0239, clustering_loss=0.0190, disc_loss=1.5700, elbo=445.7393, epoch=1728/2001, vae_loss=445.7823]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1729/2000 [00:43<00:06, 39.67it/s, adv_loss=-1.5699, bio_penalty=0.0122, clustering_loss=0.0190, disc_loss=1.5699, elbo=444.6542, epoch=1729/2001, vae_loss=444.6855]
Training: Embeddings batch effect correction using adversrial training:  86%|████████▋ | 1730/2000 [00:43<00:06, 39.67it/s, adv_loss=-1.5700, bio_penalty=0.0112, clustering_loss=0.0190, disc_loss=1.5700, elbo=444.7373, epoch=1730/2001, vae_loss=444.7675]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1731/2000 [00:43<00:06, 39.67it/s, adv_loss=-1.5700, bio_penalty=0.0131, clustering_loss=0.0190, disc_loss=1.5700, elbo=446.8083, epoch=1731/2001, vae_loss=446.8405]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1732/2000 [00:43<00:06, 39.67it/s, adv_loss=-1.5701, bio_penalty=0.0129, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.1374, epoch=1732/2001, vae_loss=445.1693]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1733/2000 [00:43<00:06, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0129, clustering_loss=0.0190, disc_loss=1.5701, elbo=445.1374, epoch=1732/2001, vae_loss=445.1693]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1733/2000 [00:43<00:06, 39.75it/s, adv_loss=-1.5701, bio_penalty=0.0120, clustering_loss=0.0190, disc_loss=1.5701, elbo=442.3768, epoch=1733/2001, vae_loss=442.4078]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1734/2000 [00:44<00:06, 39.75it/s, adv_loss=-1.5700, bio_penalty=0.0130, clustering_loss=0.0190, disc_loss=1.5700, elbo=448.6782, epoch=1734/2001, vae_loss=448.7102]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1735/2000 [00:44<00:06, 39.75it/s, adv_loss=-1.5699, bio_penalty=0.0140, clustering_loss=0.0190, disc_loss=1.5699, elbo=441.7463, epoch=1735/2001, vae_loss=441.7794]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1736/2000 [00:44<00:06, 39.75it/s, adv_loss=-1.5700, bio_penalty=0.0158, clustering_loss=0.0190, disc_loss=1.5700, elbo=445.8264, epoch=1736/2001, vae_loss=445.8612]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1737/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5700, bio_penalty=0.0158, clustering_loss=0.0190, disc_loss=1.5700, elbo=445.8264, epoch=1736/2001, vae_loss=445.8612]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1737/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5700, bio_penalty=0.0161, clustering_loss=0.0190, disc_loss=1.5700, elbo=444.6727, epoch=1737/2001, vae_loss=444.7078]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1738/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5700, bio_penalty=0.0151, clustering_loss=0.0190, disc_loss=1.5700, elbo=453.4946, epoch=1738/2001, vae_loss=453.5288]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1739/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5699, bio_penalty=0.0156, clustering_loss=0.0190, disc_loss=1.5699, elbo=441.8405, epoch=1739/2001, vae_loss=441.8752]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1740/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5699, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5699, elbo=441.5133, epoch=1740/2001, vae_loss=441.5505]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1741/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5699, bio_penalty=0.0206, clustering_loss=0.0190, disc_loss=1.5699, elbo=442.4521, epoch=1741/2001, vae_loss=442.4917]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1742/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5699, bio_penalty=0.0206, clustering_loss=0.0190, disc_loss=1.5699, elbo=442.4521, epoch=1741/2001, vae_loss=442.4917]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1742/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5699, bio_penalty=0.0161, clustering_loss=0.0190, disc_loss=1.5699, elbo=443.8576, epoch=1742/2001, vae_loss=443.8928]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1743/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5700, bio_penalty=0.0126, clustering_loss=0.0190, disc_loss=1.5700, elbo=442.6599, epoch=1743/2001, vae_loss=442.6915]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1744/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5700, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5700, elbo=441.6407, epoch=1744/2001, vae_loss=441.6706]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1745/2000 [00:44<00:06, 39.82it/s, adv_loss=-1.5700, bio_penalty=0.0100, clustering_loss=0.0190, disc_loss=1.5700, elbo=442.6630, epoch=1745/2001, vae_loss=442.6920]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1746/2000 [00:44<00:06, 39.59it/s, adv_loss=-1.5700, bio_penalty=0.0100, clustering_loss=0.0190, disc_loss=1.5700, elbo=442.6630, epoch=1745/2001, vae_loss=442.6920]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1746/2000 [00:44<00:06, 39.59it/s, adv_loss=-1.5700, bio_penalty=0.0103, clustering_loss=0.0190, disc_loss=1.5700, elbo=442.9050, epoch=1746/2001, vae_loss=442.9343]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1747/2000 [00:44<00:06, 39.59it/s, adv_loss=-1.5699, bio_penalty=0.0102, clustering_loss=0.0190, disc_loss=1.5699, elbo=444.5394, epoch=1747/2001, vae_loss=444.5686]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1748/2000 [00:44<00:06, 39.59it/s, adv_loss=-1.5700, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5700, elbo=443.5354, epoch=1748/2001, vae_loss=443.5653]
Training: Embeddings batch effect correction using adversrial training:  87%|████████▋ | 1749/2000 [00:44<00:06, 39.59it/s, adv_loss=-1.5699, bio_penalty=0.0110, clustering_loss=0.0190, disc_loss=1.5699, elbo=442.9083, epoch=1749/2001, vae_loss=442.9384]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1750/2000 [00:44<00:06, 39.59it/s, adv_loss=-1.5700, bio_penalty=0.0132, clustering_loss=0.0190, disc_loss=1.5700, elbo=441.7283, epoch=1750/2001, vae_loss=441.7606]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1751/2000 [00:44<00:06, 39.74it/s, adv_loss=-1.5700, bio_penalty=0.0132, clustering_loss=0.0190, disc_loss=1.5700, elbo=441.7283, epoch=1750/2001, vae_loss=441.7606]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1751/2000 [00:44<00:06, 39.74it/s, adv_loss=-1.5699, bio_penalty=0.0214, clustering_loss=0.0190, disc_loss=1.5699, elbo=448.1792, epoch=1751/2001, vae_loss=448.2196]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1752/2000 [00:44<00:06, 39.74it/s, adv_loss=-1.5699, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5699, elbo=443.8235, epoch=1752/2001, vae_loss=443.8552]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1753/2000 [00:44<00:06, 39.74it/s, adv_loss=-1.5699, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5699, elbo=446.7675, epoch=1753/2001, vae_loss=446.7990]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1754/2000 [00:44<00:06, 39.74it/s, adv_loss=-1.5699, bio_penalty=0.0130, clustering_loss=0.0190, disc_loss=1.5699, elbo=445.8761, epoch=1754/2001, vae_loss=445.9081]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1755/2000 [00:44<00:06, 39.28it/s, adv_loss=-1.5699, bio_penalty=0.0130, clustering_loss=0.0190, disc_loss=1.5699, elbo=445.8761, epoch=1754/2001, vae_loss=445.9081]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1755/2000 [00:44<00:06, 39.28it/s, adv_loss=-1.5698, bio_penalty=0.0163, clustering_loss=0.0190, disc_loss=1.5698, elbo=442.7877, epoch=1755/2001, vae_loss=442.8230]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1756/2000 [00:44<00:06, 39.28it/s, adv_loss=-1.5699, bio_penalty=0.0190, clustering_loss=0.0190, disc_loss=1.5699, elbo=444.7270, epoch=1756/2001, vae_loss=444.7650]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1757/2000 [00:44<00:06, 39.28it/s, adv_loss=-1.5699, bio_penalty=0.0201, clustering_loss=0.0190, disc_loss=1.5699, elbo=444.5496, epoch=1757/2001, vae_loss=444.5887]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1758/2000 [00:44<00:06, 39.28it/s, adv_loss=-1.5698, bio_penalty=0.0204, clustering_loss=0.0190, disc_loss=1.5698, elbo=444.5452, epoch=1758/2001, vae_loss=444.5847]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1759/2000 [00:44<00:06, 39.42it/s, adv_loss=-1.5698, bio_penalty=0.0204, clustering_loss=0.0190, disc_loss=1.5698, elbo=444.5452, epoch=1758/2001, vae_loss=444.5847]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1759/2000 [00:44<00:06, 39.42it/s, adv_loss=-1.5698, bio_penalty=0.0215, clustering_loss=0.0190, disc_loss=1.5698, elbo=452.5164, epoch=1759/2001, vae_loss=452.5569]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1760/2000 [00:44<00:06, 39.42it/s, adv_loss=-1.5698, bio_penalty=0.0223, clustering_loss=0.0190, disc_loss=1.5698, elbo=445.5339, epoch=1760/2001, vae_loss=445.5753]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1761/2000 [00:44<00:06, 39.42it/s, adv_loss=-1.5697, bio_penalty=0.0212, clustering_loss=0.0190, disc_loss=1.5697, elbo=446.8889, epoch=1761/2001, vae_loss=446.9291]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1762/2000 [00:44<00:06, 39.42it/s, adv_loss=-1.5698, bio_penalty=0.0255, clustering_loss=0.0190, disc_loss=1.5698, elbo=444.2438, epoch=1762/2001, vae_loss=444.2883]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1763/2000 [00:44<00:06, 39.16it/s, adv_loss=-1.5698, bio_penalty=0.0255, clustering_loss=0.0190, disc_loss=1.5698, elbo=444.2438, epoch=1762/2001, vae_loss=444.2883]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1763/2000 [00:44<00:06, 39.16it/s, adv_loss=-1.5698, bio_penalty=0.0293, clustering_loss=0.0190, disc_loss=1.5698, elbo=449.9212, epoch=1763/2001, vae_loss=449.9695]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1764/2000 [00:44<00:06, 39.16it/s, adv_loss=-1.5700, bio_penalty=0.0260, clustering_loss=0.0190, disc_loss=1.5700, elbo=451.4403, epoch=1764/2001, vae_loss=451.4853]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1765/2000 [00:44<00:06, 39.16it/s, adv_loss=-1.5700, bio_penalty=0.0252, clustering_loss=0.0190, disc_loss=1.5700, elbo=454.1988, epoch=1765/2001, vae_loss=454.2431]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1766/2000 [00:44<00:05, 39.16it/s, adv_loss=-1.5698, bio_penalty=0.0241, clustering_loss=0.0190, disc_loss=1.5698, elbo=450.2657, epoch=1766/2001, vae_loss=450.3089]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1767/2000 [00:44<00:05, 39.09it/s, adv_loss=-1.5698, bio_penalty=0.0241, clustering_loss=0.0190, disc_loss=1.5698, elbo=450.2657, epoch=1766/2001, vae_loss=450.3089]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1767/2000 [00:44<00:05, 39.09it/s, adv_loss=-1.5698, bio_penalty=0.0259, clustering_loss=0.0190, disc_loss=1.5698, elbo=453.5210, epoch=1767/2001, vae_loss=453.5659]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1768/2000 [00:44<00:05, 39.09it/s, adv_loss=-1.5697, bio_penalty=0.0330, clustering_loss=0.0190, disc_loss=1.5697, elbo=448.5368, epoch=1768/2001, vae_loss=448.5889]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1769/2000 [00:44<00:05, 39.09it/s, adv_loss=-1.5698, bio_penalty=0.0421, clustering_loss=0.0190, disc_loss=1.5698, elbo=452.7993, epoch=1769/2001, vae_loss=452.8604]
Training: Embeddings batch effect correction using adversrial training:  88%|████████▊ | 1770/2000 [00:44<00:05, 39.09it/s, adv_loss=-1.5699, bio_penalty=0.0688, clustering_loss=0.0190, disc_loss=1.5699, elbo=474.0240, epoch=1770/2001, vae_loss=474.1119]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▊ | 1771/2000 [00:44<00:05, 39.15it/s, adv_loss=-1.5699, bio_penalty=0.0688, clustering_loss=0.0190, disc_loss=1.5699, elbo=474.0240, epoch=1770/2001, vae_loss=474.1119]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▊ | 1771/2000 [00:44<00:05, 39.15it/s, adv_loss=-1.5698, bio_penalty=0.0479, clustering_loss=0.0190, disc_loss=1.5698, elbo=455.0497, epoch=1771/2001, vae_loss=455.1167]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▊ | 1772/2000 [00:44<00:05, 39.15it/s, adv_loss=-1.5697, bio_penalty=0.0437, clustering_loss=0.0190, disc_loss=1.5697, elbo=455.3499, epoch=1772/2001, vae_loss=455.4127]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▊ | 1773/2000 [00:45<00:05, 39.15it/s, adv_loss=-1.5697, bio_penalty=0.0463, clustering_loss=0.0190, disc_loss=1.5697, elbo=479.0637, epoch=1773/2001, vae_loss=479.1291]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▊ | 1774/2000 [00:45<00:05, 39.15it/s, adv_loss=-1.5698, bio_penalty=0.0687, clustering_loss=0.0190, disc_loss=1.5698, elbo=484.0783, epoch=1774/2001, vae_loss=484.1661]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1775/2000 [00:45<00:05, 39.15it/s, adv_loss=-1.5700, bio_penalty=0.1089, clustering_loss=0.0190, disc_loss=1.5700, elbo=517.6694, epoch=1775/2001, vae_loss=517.7972]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1776/2000 [00:45<00:05, 39.55it/s, adv_loss=-1.5700, bio_penalty=0.1089, clustering_loss=0.0190, disc_loss=1.5700, elbo=517.6694, epoch=1775/2001, vae_loss=517.7972]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1776/2000 [00:45<00:05, 39.55it/s, adv_loss=-1.5699, bio_penalty=0.0802, clustering_loss=0.0190, disc_loss=1.5699, elbo=490.6657, epoch=1776/2001, vae_loss=490.7650]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1777/2000 [00:45<00:05, 39.55it/s, adv_loss=-1.5697, bio_penalty=0.0387, clustering_loss=0.0190, disc_loss=1.5697, elbo=484.1750, epoch=1777/2001, vae_loss=484.2327]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1778/2000 [00:45<00:05, 39.55it/s, adv_loss=-1.5696, bio_penalty=0.0303, clustering_loss=0.0190, disc_loss=1.5696, elbo=478.4713, epoch=1778/2001, vae_loss=478.5206]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1779/2000 [00:45<00:05, 39.55it/s, adv_loss=-1.5697, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5697, elbo=485.2906, epoch=1779/2001, vae_loss=485.3318]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1780/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5697, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5697, elbo=485.2906, epoch=1779/2001, vae_loss=485.3318]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1780/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5698, bio_penalty=0.0180, clustering_loss=0.0190, disc_loss=1.5698, elbo=483.1672, epoch=1780/2001, vae_loss=483.2043]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1781/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0199, clustering_loss=0.0190, disc_loss=1.5699, elbo=478.8458, epoch=1781/2001, vae_loss=478.8847]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1782/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5698, bio_penalty=0.0230, clustering_loss=0.0190, disc_loss=1.5698, elbo=477.3571, epoch=1782/2001, vae_loss=477.3990]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1783/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5698, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5698, elbo=478.3881, epoch=1783/2001, vae_loss=478.4292]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1784/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5698, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5698, elbo=478.3881, epoch=1783/2001, vae_loss=478.4292]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1784/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5698, bio_penalty=0.0182, clustering_loss=0.0190, disc_loss=1.5698, elbo=484.0105, epoch=1784/2001, vae_loss=484.0477]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1785/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0169, clustering_loss=0.0190, disc_loss=1.5699, elbo=468.5998, epoch=1785/2001, vae_loss=468.6358]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1786/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0159, clustering_loss=0.0190, disc_loss=1.5699, elbo=473.7690, epoch=1786/2001, vae_loss=473.8039]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1787/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5699, elbo=477.0856, epoch=1787/2001, vae_loss=477.1173]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1788/2000 [00:45<00:05, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0102, clustering_loss=0.0190, disc_loss=1.5699, elbo=467.1476, epoch=1788/2001, vae_loss=467.1768]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1789/2000 [00:45<00:05, 39.68it/s, adv_loss=-1.5699, bio_penalty=0.0102, clustering_loss=0.0190, disc_loss=1.5699, elbo=467.1476, epoch=1788/2001, vae_loss=467.1768]
Training: Embeddings batch effect correction using adversrial training:  89%|████████▉ | 1789/2000 [00:45<00:05, 39.68it/s, adv_loss=-1.5698, bio_penalty=0.0127, clustering_loss=0.0190, disc_loss=1.5698, elbo=462.0850, epoch=1789/2001, vae_loss=462.1167]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1790/2000 [00:45<00:05, 39.68it/s, adv_loss=-1.5698, bio_penalty=0.0158, clustering_loss=0.0190, disc_loss=1.5698, elbo=474.6003, epoch=1790/2001, vae_loss=474.6351]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1791/2000 [00:45<00:05, 39.68it/s, adv_loss=-1.5700, bio_penalty=0.0131, clustering_loss=0.0190, disc_loss=1.5700, elbo=472.0746, epoch=1791/2001, vae_loss=472.1068]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1792/2000 [00:45<00:05, 39.68it/s, adv_loss=-1.5699, bio_penalty=0.0123, clustering_loss=0.0190, disc_loss=1.5699, elbo=471.8955, epoch=1792/2001, vae_loss=471.9268]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1793/2000 [00:45<00:05, 39.54it/s, adv_loss=-1.5699, bio_penalty=0.0123, clustering_loss=0.0190, disc_loss=1.5699, elbo=471.8955, epoch=1792/2001, vae_loss=471.9268]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1793/2000 [00:45<00:05, 39.54it/s, adv_loss=-1.5700, bio_penalty=0.0152, clustering_loss=0.0190, disc_loss=1.5700, elbo=474.3735, epoch=1793/2001, vae_loss=474.4077]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1794/2000 [00:45<00:05, 39.54it/s, adv_loss=-1.5700, bio_penalty=0.0298, clustering_loss=0.0190, disc_loss=1.5700, elbo=476.8613, epoch=1794/2001, vae_loss=476.9101]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1795/2000 [00:45<00:05, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.0244, clustering_loss=0.0190, disc_loss=1.5701, elbo=476.7081, epoch=1795/2001, vae_loss=476.7516]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1796/2000 [00:45<00:05, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.0220, clustering_loss=0.0190, disc_loss=1.5701, elbo=476.6550, epoch=1796/2001, vae_loss=476.6960]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1797/2000 [00:45<00:05, 39.54it/s, adv_loss=-1.5701, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5701, elbo=475.5729, epoch=1797/2001, vae_loss=475.6173]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1798/2000 [00:45<00:05, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0253, clustering_loss=0.0190, disc_loss=1.5701, elbo=475.5729, epoch=1797/2001, vae_loss=475.6173]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1798/2000 [00:45<00:05, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0135, clustering_loss=0.0190, disc_loss=1.5701, elbo=470.5401, epoch=1798/2001, vae_loss=470.5727]
Training: Embeddings batch effect correction using adversrial training:  90%|████████▉ | 1799/2000 [00:45<00:05, 39.99it/s, adv_loss=-1.5700, bio_penalty=0.0125, clustering_loss=0.0190, disc_loss=1.5700, elbo=470.1997, epoch=1799/2001, vae_loss=470.2313]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1800/2000 [00:45<00:05, 39.99it/s, adv_loss=-1.5701, bio_penalty=0.0114, clustering_loss=0.0190, disc_loss=1.5701, elbo=471.0515, epoch=1800/2001, vae_loss=471.0820]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1801/2000 [00:45<00:04, 39.99it/s, adv_loss=-1.5700, bio_penalty=0.0092, clustering_loss=0.0190, disc_loss=1.5700, elbo=465.7554, epoch=1801/2001, vae_loss=465.7837]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1802/2000 [00:45<00:04, 39.99it/s, adv_loss=-1.5699, bio_penalty=0.0077, clustering_loss=0.0190, disc_loss=1.5699, elbo=466.1081, epoch=1802/2001, vae_loss=466.1349]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1803/2000 [00:45<00:04, 40.22it/s, adv_loss=-1.5699, bio_penalty=0.0077, clustering_loss=0.0190, disc_loss=1.5699, elbo=466.1081, epoch=1802/2001, vae_loss=466.1349]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1803/2000 [00:45<00:04, 40.22it/s, adv_loss=-1.5701, bio_penalty=0.0059, clustering_loss=0.0190, disc_loss=1.5701, elbo=467.5048, epoch=1803/2001, vae_loss=467.5298]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1804/2000 [00:45<00:04, 40.22it/s, adv_loss=-1.5700, bio_penalty=0.0043, clustering_loss=0.0190, disc_loss=1.5700, elbo=463.5140, epoch=1804/2001, vae_loss=463.5374]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1805/2000 [00:45<00:04, 40.22it/s, adv_loss=-1.5701, bio_penalty=0.0045, clustering_loss=0.0190, disc_loss=1.5701, elbo=466.2391, epoch=1805/2001, vae_loss=466.2627]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1806/2000 [00:45<00:04, 40.22it/s, adv_loss=-1.5701, bio_penalty=0.0035, clustering_loss=0.0190, disc_loss=1.5701, elbo=465.2974, epoch=1806/2001, vae_loss=465.3200]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1807/2000 [00:45<00:04, 40.22it/s, adv_loss=-1.5700, bio_penalty=0.0028, clustering_loss=0.0190, disc_loss=1.5700, elbo=465.3481, epoch=1807/2001, vae_loss=465.3700]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1808/2000 [00:45<00:04, 40.03it/s, adv_loss=-1.5700, bio_penalty=0.0028, clustering_loss=0.0190, disc_loss=1.5700, elbo=465.3481, epoch=1807/2001, vae_loss=465.3700]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1808/2000 [00:45<00:04, 40.03it/s, adv_loss=-1.5701, bio_penalty=0.0026, clustering_loss=0.0190, disc_loss=1.5701, elbo=466.0396, epoch=1808/2001, vae_loss=466.0613]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1809/2000 [00:45<00:04, 40.03it/s, adv_loss=-1.5699, bio_penalty=0.0030, clustering_loss=0.0190, disc_loss=1.5699, elbo=464.1053, epoch=1809/2001, vae_loss=464.1273]
Training: Embeddings batch effect correction using adversrial training:  90%|█████████ | 1810/2000 [00:45<00:04, 40.03it/s, adv_loss=-1.5700, bio_penalty=0.0036, clustering_loss=0.0190, disc_loss=1.5700, elbo=465.9557, epoch=1810/2001, vae_loss=465.9783]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1811/2000 [00:45<00:04, 40.03it/s, adv_loss=-1.5699, bio_penalty=0.0038, clustering_loss=0.0190, disc_loss=1.5699, elbo=467.2945, epoch=1811/2001, vae_loss=467.3173]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1812/2000 [00:45<00:04, 40.03it/s, adv_loss=-1.5699, bio_penalty=0.0034, clustering_loss=0.0190, disc_loss=1.5699, elbo=472.1842, epoch=1812/2001, vae_loss=472.2066]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1813/2000 [00:45<00:04, 39.84it/s, adv_loss=-1.5699, bio_penalty=0.0034, clustering_loss=0.0190, disc_loss=1.5699, elbo=472.1842, epoch=1812/2001, vae_loss=472.2066]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1813/2000 [00:46<00:04, 39.84it/s, adv_loss=-1.5700, bio_penalty=0.0027, clustering_loss=0.0190, disc_loss=1.5700, elbo=463.4991, epoch=1813/2001, vae_loss=463.5208]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1814/2000 [00:46<00:04, 39.84it/s, adv_loss=-1.5699, bio_penalty=0.0024, clustering_loss=0.0190, disc_loss=1.5699, elbo=466.7797, epoch=1814/2001, vae_loss=466.8012]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1815/2000 [00:46<00:04, 39.84it/s, adv_loss=-1.5697, bio_penalty=0.0027, clustering_loss=0.0190, disc_loss=1.5697, elbo=466.5150, epoch=1815/2001, vae_loss=466.5368]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1816/2000 [00:46<00:04, 39.84it/s, adv_loss=-1.5698, bio_penalty=0.0034, clustering_loss=0.0190, disc_loss=1.5698, elbo=471.2801, epoch=1816/2001, vae_loss=471.3026]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1817/2000 [00:46<00:04, 39.84it/s, adv_loss=-1.5698, bio_penalty=0.0032, clustering_loss=0.0190, disc_loss=1.5698, elbo=464.4262, epoch=1817/2001, vae_loss=464.4484]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1818/2000 [00:46<00:04, 39.95it/s, adv_loss=-1.5698, bio_penalty=0.0032, clustering_loss=0.0190, disc_loss=1.5698, elbo=464.4262, epoch=1817/2001, vae_loss=464.4484]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1818/2000 [00:46<00:04, 39.95it/s, adv_loss=-1.5699, bio_penalty=0.0033, clustering_loss=0.0190, disc_loss=1.5699, elbo=467.2202, epoch=1818/2001, vae_loss=467.2425]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1819/2000 [00:46<00:04, 39.95it/s, adv_loss=-1.5699, bio_penalty=0.0023, clustering_loss=0.0190, disc_loss=1.5699, elbo=466.0056, epoch=1819/2001, vae_loss=466.0269]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1820/2000 [00:46<00:04, 39.95it/s, adv_loss=-1.5698, bio_penalty=0.0022, clustering_loss=0.0190, disc_loss=1.5698, elbo=463.4622, epoch=1820/2001, vae_loss=463.4834]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1821/2000 [00:46<00:04, 39.95it/s, adv_loss=-1.5698, bio_penalty=0.0042, clustering_loss=0.0190, disc_loss=1.5698, elbo=468.6991, epoch=1821/2001, vae_loss=468.7224]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1822/2000 [00:46<00:04, 39.85it/s, adv_loss=-1.5698, bio_penalty=0.0042, clustering_loss=0.0190, disc_loss=1.5698, elbo=468.6991, epoch=1821/2001, vae_loss=468.7224]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1822/2000 [00:46<00:04, 39.85it/s, adv_loss=-1.5698, bio_penalty=0.0104, clustering_loss=0.0190, disc_loss=1.5698, elbo=486.6752, epoch=1822/2001, vae_loss=486.7046]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1823/2000 [00:46<00:04, 39.85it/s, adv_loss=-1.5698, bio_penalty=0.0593, clustering_loss=0.0190, disc_loss=1.5698, elbo=472.1761, epoch=1823/2001, vae_loss=472.2544]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████ | 1824/2000 [00:46<00:04, 39.85it/s, adv_loss=-1.5698, bio_penalty=0.0779, clustering_loss=0.0190, disc_loss=1.5698, elbo=473.9504, epoch=1824/2001, vae_loss=474.0473]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 1825/2000 [00:46<00:04, 39.85it/s, adv_loss=-1.5699, bio_penalty=0.0585, clustering_loss=0.0190, disc_loss=1.5699, elbo=467.8355, epoch=1825/2001, vae_loss=467.9131]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 1826/2000 [00:46<00:04, 39.67it/s, adv_loss=-1.5699, bio_penalty=0.0585, clustering_loss=0.0190, disc_loss=1.5699, elbo=467.8355, epoch=1825/2001, vae_loss=467.9131]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 1826/2000 [00:46<00:04, 39.67it/s, adv_loss=-1.5699, bio_penalty=0.0420, clustering_loss=0.0190, disc_loss=1.5699, elbo=469.3305, epoch=1826/2001, vae_loss=469.3915]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 1827/2000 [00:46<00:04, 39.67it/s, adv_loss=-1.5699, bio_penalty=0.0296, clustering_loss=0.0190, disc_loss=1.5699, elbo=467.7194, epoch=1827/2001, vae_loss=467.7681]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 1828/2000 [00:46<00:04, 39.67it/s, adv_loss=-1.5700, bio_penalty=0.0177, clustering_loss=0.0190, disc_loss=1.5700, elbo=469.0886, epoch=1828/2001, vae_loss=469.1253]
Training: Embeddings batch effect correction using adversrial training:  91%|█████████▏| 1829/2000 [00:46<00:04, 39.67it/s, adv_loss=-1.5698, bio_penalty=0.0079, clustering_loss=0.0190, disc_loss=1.5698, elbo=464.6229, epoch=1829/2001, vae_loss=464.6497]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1830/2000 [00:46<00:04, 39.60it/s, adv_loss=-1.5698, bio_penalty=0.0079, clustering_loss=0.0190, disc_loss=1.5698, elbo=464.6229, epoch=1829/2001, vae_loss=464.6497]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1830/2000 [00:46<00:04, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0058, clustering_loss=0.0190, disc_loss=1.5699, elbo=465.5073, epoch=1830/2001, vae_loss=465.5321]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1831/2000 [00:46<00:04, 39.60it/s, adv_loss=-1.5698, bio_penalty=0.0067, clustering_loss=0.0190, disc_loss=1.5698, elbo=469.3065, epoch=1831/2001, vae_loss=469.3322]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1832/2000 [00:46<00:04, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0034, clustering_loss=0.0190, disc_loss=1.5699, elbo=462.9329, epoch=1832/2001, vae_loss=462.9554]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1833/2000 [00:46<00:04, 39.60it/s, adv_loss=-1.5699, bio_penalty=0.0029, clustering_loss=0.0190, disc_loss=1.5699, elbo=464.4199, epoch=1833/2001, vae_loss=464.4419]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1834/2000 [00:46<00:04, 39.30it/s, adv_loss=-1.5699, bio_penalty=0.0029, clustering_loss=0.0190, disc_loss=1.5699, elbo=464.4199, epoch=1833/2001, vae_loss=464.4419]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1834/2000 [00:46<00:04, 39.30it/s, adv_loss=-1.5700, bio_penalty=0.0026, clustering_loss=0.0190, disc_loss=1.5700, elbo=461.5148, epoch=1834/2001, vae_loss=461.5364]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1835/2000 [00:46<00:04, 39.30it/s, adv_loss=-1.5699, bio_penalty=0.0040, clustering_loss=0.0190, disc_loss=1.5699, elbo=464.8194, epoch=1835/2001, vae_loss=464.8424]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1836/2000 [00:46<00:04, 39.30it/s, adv_loss=-1.5699, bio_penalty=0.0048, clustering_loss=0.0190, disc_loss=1.5699, elbo=460.8358, epoch=1836/2001, vae_loss=460.8596]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1837/2000 [00:46<00:04, 39.30it/s, adv_loss=-1.5698, bio_penalty=0.0060, clustering_loss=0.0190, disc_loss=1.5698, elbo=464.1280, epoch=1837/2001, vae_loss=464.1530]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1838/2000 [00:46<00:04, 39.33it/s, adv_loss=-1.5698, bio_penalty=0.0060, clustering_loss=0.0190, disc_loss=1.5698, elbo=464.1280, epoch=1837/2001, vae_loss=464.1530]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1838/2000 [00:46<00:04, 39.33it/s, adv_loss=-1.5699, bio_penalty=0.0112, clustering_loss=0.0190, disc_loss=1.5699, elbo=472.2918, epoch=1838/2001, vae_loss=472.3221]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1839/2000 [00:46<00:04, 39.33it/s, adv_loss=-1.5699, bio_penalty=0.0037, clustering_loss=0.0190, disc_loss=1.5699, elbo=469.0128, epoch=1839/2001, vae_loss=469.0355]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1840/2000 [00:46<00:04, 39.33it/s, adv_loss=-1.5698, bio_penalty=0.0036, clustering_loss=0.0190, disc_loss=1.5698, elbo=468.1425, epoch=1840/2001, vae_loss=468.1651]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1841/2000 [00:46<00:04, 39.33it/s, adv_loss=-1.5698, bio_penalty=0.0042, clustering_loss=0.0190, disc_loss=1.5698, elbo=467.0340, epoch=1841/2001, vae_loss=467.0573]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1842/2000 [00:46<00:04, 39.23it/s, adv_loss=-1.5698, bio_penalty=0.0042, clustering_loss=0.0190, disc_loss=1.5698, elbo=467.0340, epoch=1841/2001, vae_loss=467.0573]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1842/2000 [00:46<00:04, 39.23it/s, adv_loss=-1.5699, bio_penalty=0.0051, clustering_loss=0.0190, disc_loss=1.5699, elbo=462.5699, epoch=1842/2001, vae_loss=462.5941]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1843/2000 [00:46<00:04, 39.23it/s, adv_loss=-1.5699, bio_penalty=0.0064, clustering_loss=0.0190, disc_loss=1.5699, elbo=466.7943, epoch=1843/2001, vae_loss=466.8197]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1844/2000 [00:46<00:03, 39.23it/s, adv_loss=-1.5699, bio_penalty=0.0092, clustering_loss=0.0190, disc_loss=1.5699, elbo=464.1892, epoch=1844/2001, vae_loss=464.2174]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1845/2000 [00:46<00:03, 39.23it/s, adv_loss=-1.5700, bio_penalty=0.0114, clustering_loss=0.0190, disc_loss=1.5700, elbo=462.2812, epoch=1845/2001, vae_loss=462.3116]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1846/2000 [00:46<00:03, 39.39it/s, adv_loss=-1.5700, bio_penalty=0.0114, clustering_loss=0.0190, disc_loss=1.5700, elbo=462.2812, epoch=1845/2001, vae_loss=462.3116]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1846/2000 [00:46<00:03, 39.39it/s, adv_loss=-1.5697, bio_penalty=0.0102, clustering_loss=0.0190, disc_loss=1.5697, elbo=471.7368, epoch=1846/2001, vae_loss=471.7661]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1847/2000 [00:46<00:03, 39.39it/s, adv_loss=-1.5697, bio_penalty=0.0079, clustering_loss=0.0190, disc_loss=1.5697, elbo=461.3042, epoch=1847/2001, vae_loss=461.3312]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1848/2000 [00:46<00:03, 39.39it/s, adv_loss=-1.5696, bio_penalty=0.0076, clustering_loss=0.0190, disc_loss=1.5696, elbo=478.5620, epoch=1848/2001, vae_loss=478.5887]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▏| 1849/2000 [00:46<00:03, 39.39it/s, adv_loss=-1.5699, bio_penalty=0.0081, clustering_loss=0.0190, disc_loss=1.5699, elbo=463.0340, epoch=1849/2001, vae_loss=463.0611]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▎| 1850/2000 [00:46<00:03, 39.42it/s, adv_loss=-1.5699, bio_penalty=0.0081, clustering_loss=0.0190, disc_loss=1.5699, elbo=463.0340, epoch=1849/2001, vae_loss=463.0611]
Training: Embeddings batch effect correction using adversrial training:  92%|█████████▎| 1850/2000 [00:46<00:03, 39.42it/s, adv_loss=-1.5700, bio_penalty=0.0110, clustering_loss=0.0190, disc_loss=1.5700, elbo=463.5884, epoch=1850/2001, vae_loss=463.6184]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1851/2000 [00:46<00:03, 39.42it/s, adv_loss=-1.5698, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5698, elbo=467.7456, epoch=1851/2001, vae_loss=467.7756]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1852/2000 [00:46<00:03, 39.42it/s, adv_loss=-1.5698, bio_penalty=0.0113, clustering_loss=0.0190, disc_loss=1.5698, elbo=461.6192, epoch=1852/2001, vae_loss=461.6496]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1853/2000 [00:47<00:03, 39.42it/s, adv_loss=-1.5700, bio_penalty=0.0132, clustering_loss=0.0190, disc_loss=1.5700, elbo=461.9200, epoch=1853/2001, vae_loss=461.9523]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1854/2000 [00:47<00:03, 39.42it/s, adv_loss=-1.5700, bio_penalty=0.0076, clustering_loss=0.0190, disc_loss=1.5700, elbo=462.9177, epoch=1854/2001, vae_loss=462.9443]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1855/2000 [00:47<00:03, 39.89it/s, adv_loss=-1.5700, bio_penalty=0.0076, clustering_loss=0.0190, disc_loss=1.5700, elbo=462.9177, epoch=1854/2001, vae_loss=462.9443]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1855/2000 [00:47<00:03, 39.89it/s, adv_loss=-1.5700, bio_penalty=0.0047, clustering_loss=0.0190, disc_loss=1.5700, elbo=463.3371, epoch=1855/2001, vae_loss=463.3608]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1856/2000 [00:47<00:03, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0036, clustering_loss=0.0190, disc_loss=1.5701, elbo=468.2364, epoch=1856/2001, vae_loss=468.2590]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1857/2000 [00:47<00:03, 39.89it/s, adv_loss=-1.5700, bio_penalty=0.0030, clustering_loss=0.0190, disc_loss=1.5700, elbo=465.8497, epoch=1857/2001, vae_loss=465.8718]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1858/2000 [00:47<00:03, 39.89it/s, adv_loss=-1.5700, bio_penalty=0.0032, clustering_loss=0.0190, disc_loss=1.5700, elbo=466.4555, epoch=1858/2001, vae_loss=466.4778]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1859/2000 [00:47<00:03, 39.89it/s, adv_loss=-1.5701, bio_penalty=0.0034, clustering_loss=0.0190, disc_loss=1.5701, elbo=467.4298, epoch=1859/2001, vae_loss=467.4523]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1860/2000 [00:47<00:03, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0034, clustering_loss=0.0190, disc_loss=1.5701, elbo=467.4298, epoch=1859/2001, vae_loss=467.4523]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1860/2000 [00:47<00:03, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0034, clustering_loss=0.0190, disc_loss=1.5702, elbo=475.4104, epoch=1860/2001, vae_loss=475.4329]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1861/2000 [00:47<00:03, 39.91it/s, adv_loss=-1.5701, bio_penalty=0.0027, clustering_loss=0.0190, disc_loss=1.5701, elbo=473.6667, epoch=1861/2001, vae_loss=473.6885]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1862/2000 [00:47<00:03, 39.91it/s, adv_loss=-1.5704, bio_penalty=0.0025, clustering_loss=0.0190, disc_loss=1.5704, elbo=496.3468, epoch=1862/2001, vae_loss=496.3683]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1863/2000 [00:47<00:03, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0075, clustering_loss=0.0190, disc_loss=1.5702, elbo=478.3245, epoch=1863/2001, vae_loss=478.3510]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1864/2000 [00:47<00:03, 39.91it/s, adv_loss=-1.5702, bio_penalty=0.0084, clustering_loss=0.0190, disc_loss=1.5702, elbo=492.9044, epoch=1864/2001, vae_loss=492.9318]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1865/2000 [00:47<00:03, 39.98it/s, adv_loss=-1.5702, bio_penalty=0.0084, clustering_loss=0.0190, disc_loss=1.5702, elbo=492.9044, epoch=1864/2001, vae_loss=492.9318]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1865/2000 [00:47<00:03, 39.98it/s, adv_loss=-1.5701, bio_penalty=0.0093, clustering_loss=0.0190, disc_loss=1.5701, elbo=490.6468, epoch=1865/2001, vae_loss=490.6751]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1866/2000 [00:47<00:03, 39.98it/s, adv_loss=-1.5701, bio_penalty=0.0103, clustering_loss=0.0190, disc_loss=1.5701, elbo=479.3876, epoch=1866/2001, vae_loss=479.4169]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1867/2000 [00:47<00:03, 39.98it/s, adv_loss=-1.5699, bio_penalty=0.0119, clustering_loss=0.0190, disc_loss=1.5699, elbo=489.3519, epoch=1867/2001, vae_loss=489.3828]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1868/2000 [00:47<00:03, 39.98it/s, adv_loss=-1.5697, bio_penalty=0.0080, clustering_loss=0.0190, disc_loss=1.5697, elbo=477.6411, epoch=1868/2001, vae_loss=477.6682]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1869/2000 [00:47<00:03, 39.96it/s, adv_loss=-1.5697, bio_penalty=0.0080, clustering_loss=0.0190, disc_loss=1.5697, elbo=477.6411, epoch=1868/2001, vae_loss=477.6682]
Training: Embeddings batch effect correction using adversrial training:  93%|█████████▎| 1869/2000 [00:47<00:03, 39.96it/s, adv_loss=-1.5697, bio_penalty=0.0067, clustering_loss=0.0190, disc_loss=1.5697, elbo=479.7256, epoch=1869/2001, vae_loss=479.7513]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 1870/2000 [00:47<00:03, 39.96it/s, adv_loss=-1.5697, bio_penalty=0.0069, clustering_loss=0.0190, disc_loss=1.5697, elbo=478.5971, epoch=1870/2001, vae_loss=478.6231]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 1871/2000 [00:47<00:03, 39.96it/s, adv_loss=-1.5697, bio_penalty=0.0049, clustering_loss=0.0190, disc_loss=1.5697, elbo=470.9699, epoch=1871/2001, vae_loss=470.9938]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 1872/2000 [00:47<00:03, 39.96it/s, adv_loss=-1.5697, bio_penalty=0.0032, clustering_loss=0.0190, disc_loss=1.5697, elbo=470.8090, epoch=1872/2001, vae_loss=470.8312]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 1873/2000 [00:47<00:03, 39.87it/s, adv_loss=-1.5697, bio_penalty=0.0032, clustering_loss=0.0190, disc_loss=1.5697, elbo=470.8090, epoch=1872/2001, vae_loss=470.8312]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 1873/2000 [00:47<00:03, 39.87it/s, adv_loss=-1.5693, bio_penalty=0.0044, clustering_loss=0.0190, disc_loss=1.5693, elbo=482.1983, epoch=1873/2001, vae_loss=482.2218]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▎| 1874/2000 [00:47<00:03, 39.87it/s, adv_loss=-1.5696, bio_penalty=0.0063, clustering_loss=0.0190, disc_loss=1.5696, elbo=483.9572, epoch=1874/2001, vae_loss=483.9825]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1875/2000 [00:47<00:03, 39.87it/s, adv_loss=-1.5695, bio_penalty=0.0071, clustering_loss=0.0190, disc_loss=1.5695, elbo=475.6299, epoch=1875/2001, vae_loss=475.6561]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1876/2000 [00:47<00:03, 39.87it/s, adv_loss=-1.5695, bio_penalty=0.0069, clustering_loss=0.0190, disc_loss=1.5695, elbo=485.9016, epoch=1876/2001, vae_loss=485.9276]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1877/2000 [00:47<00:03, 39.87it/s, adv_loss=-1.5695, bio_penalty=0.0069, clustering_loss=0.0190, disc_loss=1.5695, elbo=473.4416, epoch=1877/2001, vae_loss=473.4675]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1878/2000 [00:47<00:03, 40.11it/s, adv_loss=-1.5695, bio_penalty=0.0069, clustering_loss=0.0190, disc_loss=1.5695, elbo=473.4416, epoch=1877/2001, vae_loss=473.4675]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1878/2000 [00:47<00:03, 40.11it/s, adv_loss=-1.5694, bio_penalty=0.0061, clustering_loss=0.0190, disc_loss=1.5694, elbo=469.5353, epoch=1878/2001, vae_loss=469.5604]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1879/2000 [00:47<00:03, 40.11it/s, adv_loss=-1.5696, bio_penalty=0.0060, clustering_loss=0.0190, disc_loss=1.5696, elbo=472.1946, epoch=1879/2001, vae_loss=472.2197]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1880/2000 [00:47<00:02, 40.11it/s, adv_loss=-1.5696, bio_penalty=0.0065, clustering_loss=0.0190, disc_loss=1.5696, elbo=469.8825, epoch=1880/2001, vae_loss=469.9081]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1881/2000 [00:47<00:02, 40.11it/s, adv_loss=-1.5696, bio_penalty=0.0074, clustering_loss=0.0190, disc_loss=1.5696, elbo=472.6473, epoch=1881/2001, vae_loss=472.6737]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1882/2000 [00:47<00:02, 40.11it/s, adv_loss=-1.5695, bio_penalty=0.0077, clustering_loss=0.0190, disc_loss=1.5695, elbo=464.8141, epoch=1882/2001, vae_loss=464.8409]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1883/2000 [00:47<00:02, 40.24it/s, adv_loss=-1.5695, bio_penalty=0.0077, clustering_loss=0.0190, disc_loss=1.5695, elbo=464.8141, epoch=1882/2001, vae_loss=464.8409]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1883/2000 [00:47<00:02, 40.24it/s, adv_loss=-1.5694, bio_penalty=0.0077, clustering_loss=0.0190, disc_loss=1.5694, elbo=463.4838, epoch=1883/2001, vae_loss=463.5106]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1884/2000 [00:47<00:02, 40.24it/s, adv_loss=-1.5695, bio_penalty=0.0075, clustering_loss=0.0190, disc_loss=1.5695, elbo=463.1662, epoch=1884/2001, vae_loss=463.1928]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1885/2000 [00:47<00:02, 40.24it/s, adv_loss=-1.5695, bio_penalty=0.0082, clustering_loss=0.0190, disc_loss=1.5695, elbo=464.2618, epoch=1885/2001, vae_loss=464.2890]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1886/2000 [00:47<00:02, 40.24it/s, adv_loss=-1.5696, bio_penalty=0.0079, clustering_loss=0.0190, disc_loss=1.5696, elbo=466.2461, epoch=1886/2001, vae_loss=466.2730]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1887/2000 [00:47<00:02, 40.24it/s, adv_loss=-1.5693, bio_penalty=0.0057, clustering_loss=0.0190, disc_loss=1.5693, elbo=461.1914, epoch=1887/2001, vae_loss=461.2162]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1888/2000 [00:47<00:02, 39.96it/s, adv_loss=-1.5693, bio_penalty=0.0057, clustering_loss=0.0190, disc_loss=1.5693, elbo=461.1914, epoch=1887/2001, vae_loss=461.2162]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1888/2000 [00:47<00:02, 39.96it/s, adv_loss=-1.5695, bio_penalty=0.0040, clustering_loss=0.0190, disc_loss=1.5695, elbo=460.3268, epoch=1888/2001, vae_loss=460.3498]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1889/2000 [00:47<00:02, 39.96it/s, adv_loss=-1.5693, bio_penalty=0.0031, clustering_loss=0.0190, disc_loss=1.5693, elbo=459.8886, epoch=1889/2001, vae_loss=459.9108]
Training: Embeddings batch effect correction using adversrial training:  94%|█████████▍| 1890/2000 [00:47<00:02, 39.96it/s, adv_loss=-1.5694, bio_penalty=0.0027, clustering_loss=0.0190, disc_loss=1.5694, elbo=463.7186, epoch=1890/2001, vae_loss=463.7404]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1891/2000 [00:47<00:02, 39.96it/s, adv_loss=-1.5693, bio_penalty=0.0025, clustering_loss=0.0190, disc_loss=1.5693, elbo=463.5518, epoch=1891/2001, vae_loss=463.5734]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1892/2000 [00:47<00:02, 39.92it/s, adv_loss=-1.5693, bio_penalty=0.0025, clustering_loss=0.0190, disc_loss=1.5693, elbo=463.5518, epoch=1891/2001, vae_loss=463.5734]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1892/2000 [00:47<00:02, 39.92it/s, adv_loss=-1.5692, bio_penalty=0.0024, clustering_loss=0.0190, disc_loss=1.5692, elbo=464.4906, epoch=1892/2001, vae_loss=464.5120]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1893/2000 [00:48<00:02, 39.92it/s, adv_loss=-1.5693, bio_penalty=0.0021, clustering_loss=0.0190, disc_loss=1.5693, elbo=457.8359, epoch=1893/2001, vae_loss=457.8570]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1894/2000 [00:48<00:02, 39.92it/s, adv_loss=-1.5693, bio_penalty=0.0022, clustering_loss=0.0190, disc_loss=1.5693, elbo=459.4624, epoch=1894/2001, vae_loss=459.4837]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1895/2000 [00:48<00:02, 39.92it/s, adv_loss=-1.5692, bio_penalty=0.0023, clustering_loss=0.0190, disc_loss=1.5692, elbo=459.1601, epoch=1895/2001, vae_loss=459.1814]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1896/2000 [00:48<00:02, 39.84it/s, adv_loss=-1.5692, bio_penalty=0.0023, clustering_loss=0.0190, disc_loss=1.5692, elbo=459.1601, epoch=1895/2001, vae_loss=459.1814]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1896/2000 [00:48<00:02, 39.84it/s, adv_loss=-1.5689, bio_penalty=0.0025, clustering_loss=0.0190, disc_loss=1.5689, elbo=461.0849, epoch=1896/2001, vae_loss=461.1064]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1897/2000 [00:48<00:02, 39.84it/s, adv_loss=-1.5691, bio_penalty=0.0026, clustering_loss=0.0190, disc_loss=1.5691, elbo=459.9122, epoch=1897/2001, vae_loss=459.9339]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1898/2000 [00:48<00:02, 39.84it/s, adv_loss=-1.5690, bio_penalty=0.0032, clustering_loss=0.0190, disc_loss=1.5690, elbo=463.0631, epoch=1898/2001, vae_loss=463.0853]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▍| 1899/2000 [00:48<00:02, 39.84it/s, adv_loss=-1.5691, bio_penalty=0.0043, clustering_loss=0.0190, disc_loss=1.5691, elbo=461.0568, epoch=1899/2001, vae_loss=461.0802]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1900/2000 [00:48<00:02, 39.58it/s, adv_loss=-1.5691, bio_penalty=0.0043, clustering_loss=0.0190, disc_loss=1.5691, elbo=461.0568, epoch=1899/2001, vae_loss=461.0802]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1900/2000 [00:48<00:02, 39.58it/s, adv_loss=-1.5688, bio_penalty=0.0069, clustering_loss=0.0190, disc_loss=1.5688, elbo=458.6634, epoch=1900/2001, vae_loss=458.6894]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1901/2000 [00:48<00:02, 39.58it/s, adv_loss=-1.5689, bio_penalty=0.0101, clustering_loss=0.0190, disc_loss=1.5689, elbo=470.3224, epoch=1901/2001, vae_loss=470.3515]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1902/2000 [00:48<00:02, 39.58it/s, adv_loss=-1.5688, bio_penalty=0.0130, clustering_loss=0.0190, disc_loss=1.5688, elbo=457.7673, epoch=1902/2001, vae_loss=457.7993]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1903/2000 [00:48<00:02, 39.58it/s, adv_loss=-1.5690, bio_penalty=0.0186, clustering_loss=0.0190, disc_loss=1.5690, elbo=462.9133, epoch=1903/2001, vae_loss=462.9510]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1904/2000 [00:48<00:02, 39.06it/s, adv_loss=-1.5690, bio_penalty=0.0186, clustering_loss=0.0190, disc_loss=1.5690, elbo=462.9133, epoch=1903/2001, vae_loss=462.9510]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1904/2000 [00:48<00:02, 39.06it/s, adv_loss=-1.5688, bio_penalty=0.0175, clustering_loss=0.0190, disc_loss=1.5688, elbo=462.3580, epoch=1904/2001, vae_loss=462.3946]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1905/2000 [00:48<00:02, 39.06it/s, adv_loss=-1.5690, bio_penalty=0.0244, clustering_loss=0.0190, disc_loss=1.5690, elbo=469.8689, epoch=1905/2001, vae_loss=469.9123]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1906/2000 [00:48<00:02, 39.06it/s, adv_loss=-1.5690, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5690, elbo=469.1327, epoch=1906/2001, vae_loss=469.1738]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1907/2000 [00:48<00:02, 39.06it/s, adv_loss=-1.5688, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5688, elbo=470.5613, epoch=1907/2001, vae_loss=470.5928]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1908/2000 [00:48<00:02, 38.67it/s, adv_loss=-1.5688, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5688, elbo=470.5613, epoch=1907/2001, vae_loss=470.5928]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1908/2000 [00:48<00:02, 38.67it/s, adv_loss=-1.5689, bio_penalty=0.0068, clustering_loss=0.0190, disc_loss=1.5689, elbo=476.1006, epoch=1908/2001, vae_loss=476.1264]
Training: Embeddings batch effect correction using adversrial training:  95%|█████████▌| 1909/2000 [00:48<00:02, 38.67it/s, adv_loss=-1.5690, bio_penalty=0.0063, clustering_loss=0.0190, disc_loss=1.5690, elbo=469.6186, epoch=1909/2001, vae_loss=469.6440]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1910/2000 [00:48<00:02, 38.67it/s, adv_loss=-1.5692, bio_penalty=0.0105, clustering_loss=0.0190, disc_loss=1.5692, elbo=470.8684, epoch=1910/2001, vae_loss=470.8979]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1911/2000 [00:48<00:02, 38.67it/s, adv_loss=-1.5690, bio_penalty=0.0137, clustering_loss=0.0190, disc_loss=1.5690, elbo=472.8244, epoch=1911/2001, vae_loss=472.8571]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1912/2000 [00:48<00:02, 38.18it/s, adv_loss=-1.5690, bio_penalty=0.0137, clustering_loss=0.0190, disc_loss=1.5690, elbo=472.8244, epoch=1911/2001, vae_loss=472.8571]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1912/2000 [00:48<00:02, 38.18it/s, adv_loss=-1.5692, bio_penalty=0.0209, clustering_loss=0.0190, disc_loss=1.5692, elbo=485.5669, epoch=1912/2001, vae_loss=485.6069]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1913/2000 [00:48<00:02, 38.18it/s, adv_loss=-1.5692, bio_penalty=0.0190, clustering_loss=0.0190, disc_loss=1.5692, elbo=485.0365, epoch=1913/2001, vae_loss=485.0746]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1914/2000 [00:48<00:02, 38.18it/s, adv_loss=-1.5693, bio_penalty=0.0145, clustering_loss=0.0190, disc_loss=1.5693, elbo=488.7529, epoch=1914/2001, vae_loss=488.7865]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1915/2000 [00:48<00:02, 38.18it/s, adv_loss=-1.5692, bio_penalty=0.0075, clustering_loss=0.0190, disc_loss=1.5692, elbo=485.8831, epoch=1915/2001, vae_loss=485.9096]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1916/2000 [00:48<00:02, 38.39it/s, adv_loss=-1.5692, bio_penalty=0.0075, clustering_loss=0.0190, disc_loss=1.5692, elbo=485.8831, epoch=1915/2001, vae_loss=485.9096]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1916/2000 [00:48<00:02, 38.39it/s, adv_loss=-1.5692, bio_penalty=0.0078, clustering_loss=0.0190, disc_loss=1.5692, elbo=492.0764, epoch=1916/2001, vae_loss=492.1032]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1917/2000 [00:48<00:02, 38.39it/s, adv_loss=-1.5692, bio_penalty=0.0104, clustering_loss=0.0190, disc_loss=1.5692, elbo=488.7846, epoch=1917/2001, vae_loss=488.8141]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1918/2000 [00:48<00:02, 38.39it/s, adv_loss=-1.5692, bio_penalty=0.0148, clustering_loss=0.0190, disc_loss=1.5692, elbo=490.3207, epoch=1918/2001, vae_loss=490.3545]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1919/2000 [00:48<00:02, 38.39it/s, adv_loss=-1.5692, bio_penalty=0.0186, clustering_loss=0.0190, disc_loss=1.5692, elbo=486.7781, epoch=1919/2001, vae_loss=486.8158]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1920/2000 [00:48<00:02, 38.70it/s, adv_loss=-1.5692, bio_penalty=0.0186, clustering_loss=0.0190, disc_loss=1.5692, elbo=486.7781, epoch=1919/2001, vae_loss=486.8158]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1920/2000 [00:48<00:02, 38.70it/s, adv_loss=-1.5690, bio_penalty=0.0160, clustering_loss=0.0190, disc_loss=1.5690, elbo=487.5024, epoch=1920/2001, vae_loss=487.5375]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1921/2000 [00:48<00:02, 38.70it/s, adv_loss=-1.5691, bio_penalty=0.0156, clustering_loss=0.0190, disc_loss=1.5691, elbo=487.1299, epoch=1921/2001, vae_loss=487.1645]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1922/2000 [00:48<00:02, 38.70it/s, adv_loss=-1.5694, bio_penalty=0.0223, clustering_loss=0.0190, disc_loss=1.5694, elbo=493.3739, epoch=1922/2001, vae_loss=493.4153]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1923/2000 [00:48<00:01, 38.70it/s, adv_loss=-1.5690, bio_penalty=0.0280, clustering_loss=0.0190, disc_loss=1.5690, elbo=491.0053, epoch=1923/2001, vae_loss=491.0524]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1924/2000 [00:48<00:01, 38.89it/s, adv_loss=-1.5690, bio_penalty=0.0280, clustering_loss=0.0190, disc_loss=1.5690, elbo=491.0053, epoch=1923/2001, vae_loss=491.0524]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▌| 1924/2000 [00:48<00:01, 38.89it/s, adv_loss=-1.5689, bio_penalty=0.0288, clustering_loss=0.0190, disc_loss=1.5689, elbo=486.7190, epoch=1924/2001, vae_loss=486.7669]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 1925/2000 [00:48<00:01, 38.89it/s, adv_loss=-1.5691, bio_penalty=0.0301, clustering_loss=0.0190, disc_loss=1.5691, elbo=486.6750, epoch=1925/2001, vae_loss=486.7242]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 1926/2000 [00:48<00:01, 38.89it/s, adv_loss=-1.5689, bio_penalty=0.0294, clustering_loss=0.0190, disc_loss=1.5689, elbo=494.5482, epoch=1926/2001, vae_loss=494.5966]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 1927/2000 [00:48<00:01, 38.89it/s, adv_loss=-1.5691, bio_penalty=0.0249, clustering_loss=0.0190, disc_loss=1.5691, elbo=492.2013, epoch=1927/2001, vae_loss=492.2453]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 1928/2000 [00:48<00:01, 38.84it/s, adv_loss=-1.5691, bio_penalty=0.0249, clustering_loss=0.0190, disc_loss=1.5691, elbo=492.2013, epoch=1927/2001, vae_loss=492.2453]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 1928/2000 [00:48<00:01, 38.84it/s, adv_loss=-1.5691, bio_penalty=0.0239, clustering_loss=0.0190, disc_loss=1.5691, elbo=486.8480, epoch=1928/2001, vae_loss=486.8909]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 1929/2000 [00:48<00:01, 38.84it/s, adv_loss=-1.5691, bio_penalty=0.0124, clustering_loss=0.0190, disc_loss=1.5691, elbo=491.2024, epoch=1929/2001, vae_loss=491.2338]
Training: Embeddings batch effect correction using adversrial training:  96%|█████████▋| 1930/2000 [00:48<00:01, 38.84it/s, adv_loss=-1.5690, bio_penalty=0.0084, clustering_loss=0.0190, disc_loss=1.5690, elbo=487.6862, epoch=1930/2001, vae_loss=487.7137]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1931/2000 [00:49<00:01, 38.84it/s, adv_loss=-1.5690, bio_penalty=0.0147, clustering_loss=0.0190, disc_loss=1.5690, elbo=517.1789, epoch=1931/2001, vae_loss=517.2126]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1932/2000 [00:49<00:01, 38.84it/s, adv_loss=-1.5687, bio_penalty=0.0183, clustering_loss=0.0190, disc_loss=1.5687, elbo=507.2463, epoch=1932/2001, vae_loss=507.2837]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1933/2000 [00:49<00:01, 39.34it/s, adv_loss=-1.5687, bio_penalty=0.0183, clustering_loss=0.0190, disc_loss=1.5687, elbo=507.2463, epoch=1932/2001, vae_loss=507.2837]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1933/2000 [00:49<00:01, 39.34it/s, adv_loss=-1.5682, bio_penalty=0.0186, clustering_loss=0.0190, disc_loss=1.5682, elbo=495.5983, epoch=1933/2001, vae_loss=495.6360]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1934/2000 [00:49<00:01, 39.34it/s, adv_loss=-1.5680, bio_penalty=0.0199, clustering_loss=0.0190, disc_loss=1.5680, elbo=500.6964, epoch=1934/2001, vae_loss=500.7354]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1935/2000 [00:49<00:01, 39.34it/s, adv_loss=-1.5684, bio_penalty=0.0204, clustering_loss=0.0190, disc_loss=1.5684, elbo=504.3179, epoch=1935/2001, vae_loss=504.3574]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1936/2000 [00:49<00:01, 39.34it/s, adv_loss=-1.5683, bio_penalty=0.0179, clustering_loss=0.0190, disc_loss=1.5683, elbo=489.1241, epoch=1936/2001, vae_loss=489.1610]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1937/2000 [00:49<00:01, 39.34it/s, adv_loss=-1.5686, bio_penalty=0.0170, clustering_loss=0.0190, disc_loss=1.5686, elbo=493.2213, epoch=1937/2001, vae_loss=493.2574]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1938/2000 [00:49<00:01, 39.69it/s, adv_loss=-1.5686, bio_penalty=0.0170, clustering_loss=0.0190, disc_loss=1.5686, elbo=493.2213, epoch=1937/2001, vae_loss=493.2574]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1938/2000 [00:49<00:01, 39.69it/s, adv_loss=-1.5683, bio_penalty=0.0133, clustering_loss=0.0190, disc_loss=1.5683, elbo=482.1843, epoch=1938/2001, vae_loss=482.2166]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1939/2000 [00:49<00:01, 39.69it/s, adv_loss=-1.5685, bio_penalty=0.0100, clustering_loss=0.0190, disc_loss=1.5685, elbo=498.4818, epoch=1939/2001, vae_loss=498.5109]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1940/2000 [00:49<00:01, 39.69it/s, adv_loss=-1.5691, bio_penalty=0.0089, clustering_loss=0.0190, disc_loss=1.5691, elbo=490.3035, epoch=1940/2001, vae_loss=490.3314]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1941/2000 [00:49<00:01, 39.69it/s, adv_loss=-1.5692, bio_penalty=0.0080, clustering_loss=0.0190, disc_loss=1.5692, elbo=498.9718, epoch=1941/2001, vae_loss=498.9988]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1942/2000 [00:49<00:01, 39.73it/s, adv_loss=-1.5692, bio_penalty=0.0080, clustering_loss=0.0190, disc_loss=1.5692, elbo=498.9718, epoch=1941/2001, vae_loss=498.9988]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1942/2000 [00:49<00:01, 39.73it/s, adv_loss=-1.5691, bio_penalty=0.0064, clustering_loss=0.0190, disc_loss=1.5691, elbo=504.7262, epoch=1942/2001, vae_loss=504.7516]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1943/2000 [00:49<00:01, 39.73it/s, adv_loss=-1.5691, bio_penalty=0.0053, clustering_loss=0.0190, disc_loss=1.5691, elbo=495.3264, epoch=1943/2001, vae_loss=495.3507]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1944/2000 [00:49<00:01, 39.73it/s, adv_loss=-1.5690, bio_penalty=0.0036, clustering_loss=0.0190, disc_loss=1.5690, elbo=498.1791, epoch=1944/2001, vae_loss=498.2017]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1945/2000 [00:49<00:01, 39.73it/s, adv_loss=-1.5693, bio_penalty=0.0037, clustering_loss=0.0190, disc_loss=1.5693, elbo=494.8302, epoch=1945/2001, vae_loss=494.8529]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1946/2000 [00:49<00:01, 39.73it/s, adv_loss=-1.5694, bio_penalty=0.0060, clustering_loss=0.0190, disc_loss=1.5694, elbo=531.2944, epoch=1946/2001, vae_loss=531.3195]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1947/2000 [00:49<00:01, 39.93it/s, adv_loss=-1.5694, bio_penalty=0.0060, clustering_loss=0.0190, disc_loss=1.5694, elbo=531.2944, epoch=1946/2001, vae_loss=531.3195]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1947/2000 [00:49<00:01, 39.93it/s, adv_loss=-1.5692, bio_penalty=0.0033, clustering_loss=0.0190, disc_loss=1.5692, elbo=511.3176, epoch=1947/2001, vae_loss=511.3399]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1948/2000 [00:49<00:01, 39.93it/s, adv_loss=-1.5695, bio_penalty=0.0036, clustering_loss=0.0190, disc_loss=1.5695, elbo=508.9133, epoch=1948/2001, vae_loss=508.9359]
Training: Embeddings batch effect correction using adversrial training:  97%|█████████▋| 1949/2000 [00:49<00:01, 39.93it/s, adv_loss=-1.5694, bio_penalty=0.0068, clustering_loss=0.0190, disc_loss=1.5694, elbo=518.4432, epoch=1949/2001, vae_loss=518.4691]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1950/2000 [00:49<00:01, 39.93it/s, adv_loss=-1.5694, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5694, elbo=524.4913, epoch=1950/2001, vae_loss=524.5212]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1951/2000 [00:49<00:01, 39.23it/s, adv_loss=-1.5694, bio_penalty=0.0109, clustering_loss=0.0190, disc_loss=1.5694, elbo=524.4913, epoch=1950/2001, vae_loss=524.5212]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1951/2000 [00:49<00:01, 39.23it/s, adv_loss=-1.5699, bio_penalty=0.0099, clustering_loss=0.0190, disc_loss=1.5699, elbo=530.5802, epoch=1951/2001, vae_loss=530.6092]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1952/2000 [00:49<00:01, 39.23it/s, adv_loss=-1.5699, bio_penalty=0.0082, clustering_loss=0.0190, disc_loss=1.5699, elbo=540.7341, epoch=1952/2001, vae_loss=540.7614]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1953/2000 [00:49<00:01, 39.23it/s, adv_loss=-1.5702, bio_penalty=0.0077, clustering_loss=0.0190, disc_loss=1.5702, elbo=536.5490, epoch=1953/2001, vae_loss=536.5758]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1954/2000 [00:49<00:01, 39.23it/s, adv_loss=-1.5703, bio_penalty=0.0092, clustering_loss=0.0190, disc_loss=1.5703, elbo=542.5934, epoch=1954/2001, vae_loss=542.6217]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1955/2000 [00:49<00:01, 38.91it/s, adv_loss=-1.5703, bio_penalty=0.0092, clustering_loss=0.0190, disc_loss=1.5703, elbo=542.5934, epoch=1954/2001, vae_loss=542.6217]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1955/2000 [00:49<00:01, 38.91it/s, adv_loss=-1.5702, bio_penalty=0.0123, clustering_loss=0.0190, disc_loss=1.5702, elbo=564.0149, epoch=1955/2001, vae_loss=564.0462]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1956/2000 [00:49<00:01, 38.91it/s, adv_loss=-1.5696, bio_penalty=0.0199, clustering_loss=0.0190, disc_loss=1.5696, elbo=567.1041, epoch=1956/2001, vae_loss=567.1429]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1957/2000 [00:49<00:01, 38.91it/s, adv_loss=-1.5697, bio_penalty=0.0222, clustering_loss=0.0190, disc_loss=1.5697, elbo=584.2585, epoch=1957/2001, vae_loss=584.2997]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1958/2000 [00:49<00:01, 38.91it/s, adv_loss=-1.5695, bio_penalty=0.0251, clustering_loss=0.0190, disc_loss=1.5695, elbo=585.5175, epoch=1958/2001, vae_loss=585.5616]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1959/2000 [00:49<00:01, 39.02it/s, adv_loss=-1.5695, bio_penalty=0.0251, clustering_loss=0.0190, disc_loss=1.5695, elbo=585.5175, epoch=1958/2001, vae_loss=585.5616]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1959/2000 [00:49<00:01, 39.02it/s, adv_loss=-1.5694, bio_penalty=0.0221, clustering_loss=0.0190, disc_loss=1.5694, elbo=578.4235, epoch=1959/2001, vae_loss=578.4645]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1960/2000 [00:49<00:01, 39.02it/s, adv_loss=-1.5691, bio_penalty=0.0224, clustering_loss=0.0190, disc_loss=1.5691, elbo=587.0529, epoch=1960/2001, vae_loss=587.0942]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1961/2000 [00:49<00:00, 39.02it/s, adv_loss=-1.5689, bio_penalty=0.0220, clustering_loss=0.0190, disc_loss=1.5689, elbo=570.5377, epoch=1961/2001, vae_loss=570.5787]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1962/2000 [00:49<00:00, 39.02it/s, adv_loss=-1.5683, bio_penalty=0.0306, clustering_loss=0.0190, disc_loss=1.5683, elbo=575.2949, epoch=1962/2001, vae_loss=575.3445]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1963/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5683, bio_penalty=0.0306, clustering_loss=0.0190, disc_loss=1.5683, elbo=575.2949, epoch=1962/2001, vae_loss=575.3445]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1963/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5686, bio_penalty=0.0413, clustering_loss=0.0190, disc_loss=1.5686, elbo=564.1851, epoch=1963/2001, vae_loss=564.2454]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1964/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5681, bio_penalty=0.0428, clustering_loss=0.0190, disc_loss=1.5681, elbo=602.8716, epoch=1964/2001, vae_loss=602.9334]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1965/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5680, bio_penalty=0.0397, clustering_loss=0.0190, disc_loss=1.5680, elbo=569.3505, epoch=1965/2001, vae_loss=569.4093]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1966/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5678, bio_penalty=0.0435, clustering_loss=0.0190, disc_loss=1.5678, elbo=572.4923, epoch=1966/2001, vae_loss=572.5549]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1967/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5678, bio_penalty=0.0435, clustering_loss=0.0190, disc_loss=1.5678, elbo=572.4923, epoch=1966/2001, vae_loss=572.5549]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1967/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5684, bio_penalty=0.0509, clustering_loss=0.0190, disc_loss=1.5684, elbo=578.8223, epoch=1967/2001, vae_loss=578.8922]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1968/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5678, bio_penalty=0.0664, clustering_loss=0.0190, disc_loss=1.5678, elbo=574.5596, epoch=1968/2001, vae_loss=574.6450]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1969/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5682, bio_penalty=0.0904, clustering_loss=0.0190, disc_loss=1.5682, elbo=564.6724, epoch=1969/2001, vae_loss=564.7819]
Training: Embeddings batch effect correction using adversrial training:  98%|█████████▊| 1970/2000 [00:49<00:00, 38.90it/s, adv_loss=-1.5684, bio_penalty=0.0848, clustering_loss=0.0190, disc_loss=1.5684, elbo=571.8978, epoch=1970/2001, vae_loss=572.0016]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▊| 1971/2000 [00:49<00:00, 38.88it/s, adv_loss=-1.5684, bio_penalty=0.0848, clustering_loss=0.0190, disc_loss=1.5684, elbo=571.8978, epoch=1970/2001, vae_loss=572.0016]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▊| 1971/2000 [00:50<00:00, 38.88it/s, adv_loss=-1.5679, bio_penalty=0.0824, clustering_loss=0.0190, disc_loss=1.5679, elbo=570.8210, epoch=1971/2001, vae_loss=570.9225]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▊| 1972/2000 [00:50<00:00, 38.88it/s, adv_loss=-1.5677, bio_penalty=0.0788, clustering_loss=0.0190, disc_loss=1.5677, elbo=567.4038, epoch=1972/2001, vae_loss=567.5016]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▊| 1973/2000 [00:50<00:00, 38.88it/s, adv_loss=-1.5678, bio_penalty=0.1015, clustering_loss=0.0190, disc_loss=1.5678, elbo=604.5458, epoch=1973/2001, vae_loss=604.6663]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▊| 1974/2000 [00:50<00:00, 38.88it/s, adv_loss=-1.5683, bio_penalty=0.0749, clustering_loss=0.0190, disc_loss=1.5683, elbo=616.5999, epoch=1974/2001, vae_loss=616.6939]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1975/2000 [00:50<00:00, 38.86it/s, adv_loss=-1.5683, bio_penalty=0.0749, clustering_loss=0.0190, disc_loss=1.5683, elbo=616.5999, epoch=1974/2001, vae_loss=616.6939]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1975/2000 [00:50<00:00, 38.86it/s, adv_loss=-1.5685, bio_penalty=0.0764, clustering_loss=0.0190, disc_loss=1.5685, elbo=621.8033, epoch=1975/2001, vae_loss=621.8987]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1976/2000 [00:50<00:00, 38.86it/s, adv_loss=-1.5699, bio_penalty=0.0702, clustering_loss=0.0190, disc_loss=1.5699, elbo=579.0579, epoch=1976/2001, vae_loss=579.1472]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1977/2000 [00:50<00:00, 38.86it/s, adv_loss=-1.5701, bio_penalty=0.0662, clustering_loss=0.0190, disc_loss=1.5701, elbo=586.1035, epoch=1977/2001, vae_loss=586.1888]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1978/2000 [00:50<00:00, 38.86it/s, adv_loss=-1.5703, bio_penalty=0.0631, clustering_loss=0.0190, disc_loss=1.5703, elbo=596.8218, epoch=1978/2001, vae_loss=596.9041]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1979/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5703, bio_penalty=0.0631, clustering_loss=0.0190, disc_loss=1.5703, elbo=596.8218, epoch=1978/2001, vae_loss=596.9041]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1979/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5707, bio_penalty=0.0566, clustering_loss=0.0190, disc_loss=1.5707, elbo=589.7833, epoch=1979/2001, vae_loss=589.8589]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1980/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5711, bio_penalty=0.0431, clustering_loss=0.0190, disc_loss=1.5711, elbo=589.4059, epoch=1980/2001, vae_loss=589.4681]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1981/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5713, bio_penalty=0.0286, clustering_loss=0.0190, disc_loss=1.5713, elbo=624.0930, epoch=1981/2001, vae_loss=624.1406]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1982/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5714, bio_penalty=0.0184, clustering_loss=0.0190, disc_loss=1.5714, elbo=633.8497, epoch=1982/2001, vae_loss=633.8871]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1983/2000 [00:50<00:00, 38.59it/s, adv_loss=-1.5714, bio_penalty=0.0184, clustering_loss=0.0190, disc_loss=1.5714, elbo=633.8497, epoch=1982/2001, vae_loss=633.8871]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1983/2000 [00:50<00:00, 38.59it/s, adv_loss=-1.5726, bio_penalty=0.0146, clustering_loss=0.0190, disc_loss=1.5726, elbo=630.5885, epoch=1983/2001, vae_loss=630.6221]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1984/2000 [00:50<00:00, 38.59it/s, adv_loss=-1.5732, bio_penalty=0.0157, clustering_loss=0.0190, disc_loss=1.5732, elbo=620.0808, epoch=1984/2001, vae_loss=620.1155]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1985/2000 [00:50<00:00, 38.59it/s, adv_loss=-1.5728, bio_penalty=0.0132, clustering_loss=0.0190, disc_loss=1.5728, elbo=629.9182, epoch=1985/2001, vae_loss=629.9504]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1986/2000 [00:50<00:00, 38.59it/s, adv_loss=-1.5727, bio_penalty=0.0083, clustering_loss=0.0190, disc_loss=1.5727, elbo=625.0677, epoch=1986/2001, vae_loss=625.0950]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1987/2000 [00:50<00:00, 38.89it/s, adv_loss=-1.5727, bio_penalty=0.0083, clustering_loss=0.0190, disc_loss=1.5727, elbo=625.0677, epoch=1986/2001, vae_loss=625.0950]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1987/2000 [00:50<00:00, 38.89it/s, adv_loss=-1.5717, bio_penalty=0.0070, clustering_loss=0.0190, disc_loss=1.5717, elbo=664.8699, epoch=1987/2001, vae_loss=664.8960]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1988/2000 [00:50<00:00, 38.89it/s, adv_loss=-1.5711, bio_penalty=0.0097, clustering_loss=0.0190, disc_loss=1.5711, elbo=679.1472, epoch=1988/2001, vae_loss=679.1758]
Training: Embeddings batch effect correction using adversrial training:  99%|█████████▉| 1989/2000 [00:50<00:00, 38.89it/s, adv_loss=-1.5718, bio_penalty=0.0190, clustering_loss=0.0190, disc_loss=1.5718, elbo=692.8378, epoch=1989/2001, vae_loss=692.8759]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1990/2000 [00:50<00:00, 38.89it/s, adv_loss=-1.5705, bio_penalty=0.0972, clustering_loss=0.0190, disc_loss=1.5705, elbo=700.8930, epoch=1990/2001, vae_loss=701.0092]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1991/2000 [00:50<00:00, 38.57it/s, adv_loss=-1.5705, bio_penalty=0.0972, clustering_loss=0.0190, disc_loss=1.5705, elbo=700.8930, epoch=1990/2001, vae_loss=701.0092]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1991/2000 [00:50<00:00, 38.57it/s, adv_loss=-1.5699, bio_penalty=0.1248, clustering_loss=0.0190, disc_loss=1.5699, elbo=703.9291, epoch=1991/2001, vae_loss=704.0729]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1992/2000 [00:50<00:00, 38.57it/s, adv_loss=-1.5696, bio_penalty=0.1121, clustering_loss=0.0190, disc_loss=1.5696, elbo=683.0659, epoch=1992/2001, vae_loss=683.1971]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1993/2000 [00:50<00:00, 38.57it/s, adv_loss=-1.5694, bio_penalty=0.0682, clustering_loss=0.0190, disc_loss=1.5694, elbo=679.6224, epoch=1993/2001, vae_loss=679.7097]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1994/2000 [00:50<00:00, 38.57it/s, adv_loss=-1.5690, bio_penalty=0.1066, clustering_loss=0.0190, disc_loss=1.5690, elbo=677.9979, epoch=1994/2001, vae_loss=678.1235]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1995/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5690, bio_penalty=0.1066, clustering_loss=0.0190, disc_loss=1.5690, elbo=677.9979, epoch=1994/2001, vae_loss=678.1235]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1995/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5699, bio_penalty=0.1353, clustering_loss=0.0190, disc_loss=1.5699, elbo=660.6157, epoch=1995/2001, vae_loss=660.7701]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1996/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5704, bio_penalty=0.1314, clustering_loss=0.0190, disc_loss=1.5704, elbo=687.1036, epoch=1996/2001, vae_loss=687.2540]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1997/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5720, bio_penalty=0.1078, clustering_loss=0.0190, disc_loss=1.5720, elbo=682.9849, epoch=1997/2001, vae_loss=683.1117]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1998/2000 [00:50<00:00, 38.66it/s, adv_loss=-1.5712, bio_penalty=0.1278, clustering_loss=0.0190, disc_loss=1.5712, elbo=653.7457, epoch=1998/2001, vae_loss=653.8926]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1999/2000 [00:50<00:00, 38.99it/s, adv_loss=-1.5712, bio_penalty=0.1278, clustering_loss=0.0190, disc_loss=1.5712, elbo=653.7457, epoch=1998/2001, vae_loss=653.8926]
Training: Embeddings batch effect correction using adversrial training: 100%|█████████▉| 1999/2000 [00:50<00:00, 38.99it/s, adv_loss=-1.5712, bio_penalty=0.0886, clustering_loss=0.0190, disc_loss=1.5712, elbo=639.3208, epoch=1999/2001, vae_loss=639.4285]
Training: Embeddings batch effect correction using adversrial training: 100%|██████████| 2000/2000 [00:50<00:00, 39.41it/s, adv_loss=-1.5712, bio_penalty=0.0886, clustering_loss=0.0190, disc_loss=1.5712, elbo=639.3208, epoch=1999/2001, vae_loss=639.4285]
Training: VAE decoder with masked batch labels:   0%|          | 0/2000 [00:00<?, ?it/s]
Training: VAE decoder with masked batch labels:   0%|          | 0/2000 [00:00<?, ?it/s, cycle_loss=0.0000, epoch=1/2000, vae_loss=587.1802]
Training: VAE decoder with masked batch labels:   0%|          | 1/2000 [00:00<01:00, 33.02it/s, cycle_loss=0.0000, epoch=2/2000, vae_loss=590.1368]
Training: VAE decoder with masked batch labels:   0%|          | 2/2000 [00:00<00:44, 44.52it/s, cycle_loss=0.0000, epoch=3/2000, vae_loss=611.8304]
Training: VAE decoder with masked batch labels:   0%|          | 3/2000 [00:00<00:40, 48.96it/s, cycle_loss=0.0000, epoch=4/2000, vae_loss=587.8291]
Training: VAE decoder with masked batch labels:   0%|          | 4/2000 [00:00<00:37, 52.55it/s, cycle_loss=0.0000, epoch=5/2000, vae_loss=595.0993]
Training: VAE decoder with masked batch labels:   0%|          | 5/2000 [00:00<00:36, 54.77it/s, cycle_loss=0.0000, epoch=6/2000, vae_loss=596.8240]
Training: VAE decoder with masked batch labels:   0%|          | 6/2000 [00:00<00:35, 56.11it/s, cycle_loss=0.0000, epoch=7/2000, vae_loss=571.2627]
Training: VAE decoder with masked batch labels:   0%|          | 7/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=7/2000, vae_loss=571.2627]
Training: VAE decoder with masked batch labels:   0%|          | 7/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=8/2000, vae_loss=575.7454]
Training: VAE decoder with masked batch labels:   0%|          | 8/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=9/2000, vae_loss=596.6799]
Training: VAE decoder with masked batch labels:   0%|          | 9/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=10/2000, vae_loss=597.4100]
Training: VAE decoder with masked batch labels:   0%|          | 10/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=11/2000, vae_loss=596.8395]
Training: VAE decoder with masked batch labels:   1%|          | 11/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=12/2000, vae_loss=596.4869]
Training: VAE decoder with masked batch labels:   1%|          | 12/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=13/2000, vae_loss=575.5046]
Training: VAE decoder with masked batch labels:   1%|          | 13/2000 [00:00<00:30, 64.96it/s, cycle_loss=0.0000, epoch=14/2000, vae_loss=596.3048]
Training: VAE decoder with masked batch labels:   1%|          | 14/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=14/2000, vae_loss=596.3048]
Training: VAE decoder with masked batch labels:   1%|          | 14/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=15/2000, vae_loss=586.0878]
Training: VAE decoder with masked batch labels:   1%|          | 15/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=16/2000, vae_loss=584.2656]
Training: VAE decoder with masked batch labels:   1%|          | 16/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=17/2000, vae_loss=603.6359]
Training: VAE decoder with masked batch labels:   1%|          | 17/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=18/2000, vae_loss=580.1261]
Training: VAE decoder with masked batch labels:   1%|          | 18/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=19/2000, vae_loss=589.9918]
Training: VAE decoder with masked batch labels:   1%|          | 19/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=20/2000, vae_loss=600.5211]
Training: VAE decoder with masked batch labels:   1%|          | 20/2000 [00:00<00:29, 67.11it/s, cycle_loss=0.0000, epoch=21/2000, vae_loss=595.9935]
Training: VAE decoder with masked batch labels:   1%|          | 21/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=21/2000, vae_loss=595.9935]
Training: VAE decoder with masked batch labels:   1%|          | 21/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=22/2000, vae_loss=591.7430]
Training: VAE decoder with masked batch labels:   1%|          | 22/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=23/2000, vae_loss=575.9803]
Training: VAE decoder with masked batch labels:   1%|          | 23/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=24/2000, vae_loss=623.0230]
Training: VAE decoder with masked batch labels:   1%|          | 24/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=25/2000, vae_loss=595.4547]
Training: VAE decoder with masked batch labels:   1%|▏         | 25/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=26/2000, vae_loss=594.3548]
Training: VAE decoder with masked batch labels:   1%|▏         | 26/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=27/2000, vae_loss=592.1573]
Training: VAE decoder with masked batch labels:   1%|▏         | 27/2000 [00:00<00:28, 68.25it/s, cycle_loss=0.0000, epoch=28/2000, vae_loss=586.3952]
Training: VAE decoder with masked batch labels:   1%|▏         | 28/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=28/2000, vae_loss=586.3952]
Training: VAE decoder with masked batch labels:   1%|▏         | 28/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=29/2000, vae_loss=581.8828]
Training: VAE decoder with masked batch labels:   1%|▏         | 29/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=30/2000, vae_loss=603.2472]
Training: VAE decoder with masked batch labels:   2%|▏         | 30/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=31/2000, vae_loss=597.7164]
Training: VAE decoder with masked batch labels:   2%|▏         | 31/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=32/2000, vae_loss=580.5575]
Training: VAE decoder with masked batch labels:   2%|▏         | 32/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=33/2000, vae_loss=586.7726]
Training: VAE decoder with masked batch labels:   2%|▏         | 33/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=34/2000, vae_loss=587.3498]
Training: VAE decoder with masked batch labels:   2%|▏         | 34/2000 [00:00<00:28, 68.84it/s, cycle_loss=0.0000, epoch=35/2000, vae_loss=582.4753]
Training: VAE decoder with masked batch labels:   2%|▏         | 35/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=35/2000, vae_loss=582.4753]
Training: VAE decoder with masked batch labels:   2%|▏         | 35/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=36/2000, vae_loss=580.8362]
Training: VAE decoder with masked batch labels:   2%|▏         | 36/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=37/2000, vae_loss=582.7676]
Training: VAE decoder with masked batch labels:   2%|▏         | 37/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=38/2000, vae_loss=602.9996]
Training: VAE decoder with masked batch labels:   2%|▏         | 38/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=39/2000, vae_loss=571.8683]
Training: VAE decoder with masked batch labels:   2%|▏         | 39/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=40/2000, vae_loss=597.6998]
Training: VAE decoder with masked batch labels:   2%|▏         | 40/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=41/2000, vae_loss=574.4460]
Training: VAE decoder with masked batch labels:   2%|▏         | 41/2000 [00:00<00:28, 68.53it/s, cycle_loss=0.0000, epoch=42/2000, vae_loss=583.4367]
Training: VAE decoder with masked batch labels:   2%|▏         | 42/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=42/2000, vae_loss=583.4367]
Training: VAE decoder with masked batch labels:   2%|▏         | 42/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=43/2000, vae_loss=585.3843]
Training: VAE decoder with masked batch labels:   2%|▏         | 43/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=44/2000, vae_loss=589.5524]
Training: VAE decoder with masked batch labels:   2%|▏         | 44/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=45/2000, vae_loss=598.0471]
Training: VAE decoder with masked batch labels:   2%|▏         | 45/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=46/2000, vae_loss=586.6050]
Training: VAE decoder with masked batch labels:   2%|▏         | 46/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=47/2000, vae_loss=579.1801]
Training: VAE decoder with masked batch labels:   2%|▏         | 47/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=48/2000, vae_loss=582.7441]
Training: VAE decoder with masked batch labels:   2%|▏         | 48/2000 [00:00<00:30, 64.38it/s, cycle_loss=0.0000, epoch=49/2000, vae_loss=577.3979]
Training: VAE decoder with masked batch labels:   2%|▏         | 49/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=49/2000, vae_loss=577.3979]
Training: VAE decoder with masked batch labels:   2%|▏         | 49/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=50/2000, vae_loss=594.5358]
Training: VAE decoder with masked batch labels:   2%|▎         | 50/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=51/2000, vae_loss=592.0807]
Training: VAE decoder with masked batch labels:   3%|▎         | 51/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=52/2000, vae_loss=582.6557]
Training: VAE decoder with masked batch labels:   3%|▎         | 52/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=53/2000, vae_loss=612.9881]
Training: VAE decoder with masked batch labels:   3%|▎         | 53/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=54/2000, vae_loss=614.4469]
Training: VAE decoder with masked batch labels:   3%|▎         | 54/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=55/2000, vae_loss=586.6276]
Training: VAE decoder with masked batch labels:   3%|▎         | 55/2000 [00:00<00:31, 62.55it/s, cycle_loss=0.0000, epoch=56/2000, vae_loss=591.4393]
Training: VAE decoder with masked batch labels:   3%|▎         | 56/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=56/2000, vae_loss=591.4393]
Training: VAE decoder with masked batch labels:   3%|▎         | 56/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=57/2000, vae_loss=577.3510]
Training: VAE decoder with masked batch labels:   3%|▎         | 57/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=58/2000, vae_loss=597.7356]
Training: VAE decoder with masked batch labels:   3%|▎         | 58/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=59/2000, vae_loss=589.8137]
Training: VAE decoder with masked batch labels:   3%|▎         | 59/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=60/2000, vae_loss=602.8526]
Training: VAE decoder with masked batch labels:   3%|▎         | 60/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=61/2000, vae_loss=589.8156]
Training: VAE decoder with masked batch labels:   3%|▎         | 61/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=62/2000, vae_loss=583.3926]
Training: VAE decoder with masked batch labels:   3%|▎         | 62/2000 [00:00<00:30, 63.70it/s, cycle_loss=0.0000, epoch=63/2000, vae_loss=586.4263]
Training: VAE decoder with masked batch labels:   3%|▎         | 63/2000 [00:00<00:30, 64.39it/s, cycle_loss=0.0000, epoch=63/2000, vae_loss=586.4263]
Training: VAE decoder with masked batch labels:   3%|▎         | 63/2000 [00:00<00:30, 64.39it/s, cycle_loss=0.0000, epoch=64/2000, vae_loss=590.5657]
Training: VAE decoder with masked batch labels:   3%|▎         | 64/2000 [00:00<00:30, 64.39it/s, cycle_loss=0.0000, epoch=65/2000, vae_loss=588.9785]
Training: VAE decoder with masked batch labels:   3%|▎         | 65/2000 [00:01<00:30, 64.39it/s, cycle_loss=0.0000, epoch=66/2000, vae_loss=587.7372]
Training: VAE decoder with masked batch labels:   3%|▎         | 66/2000 [00:01<00:30, 64.39it/s, cycle_loss=0.0000, epoch=67/2000, vae_loss=618.2912]
Training: VAE decoder with masked batch labels:   3%|▎         | 67/2000 [00:01<00:30, 64.39it/s, cycle_loss=0.0000, epoch=68/2000, vae_loss=576.1149]
Training: VAE decoder with masked batch labels:   3%|▎         | 68/2000 [00:01<00:30, 64.39it/s, cycle_loss=0.0000, epoch=69/2000, vae_loss=577.5784]
Training: VAE decoder with masked batch labels:   3%|▎         | 69/2000 [00:01<00:29, 64.39it/s, cycle_loss=0.0000, epoch=70/2000, vae_loss=578.9099]
Training: VAE decoder with masked batch labels:   4%|▎         | 70/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=70/2000, vae_loss=578.9099]
Training: VAE decoder with masked batch labels:   4%|▎         | 70/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=71/2000, vae_loss=565.9149]
Training: VAE decoder with masked batch labels:   4%|▎         | 71/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=72/2000, vae_loss=611.1799]
Training: VAE decoder with masked batch labels:   4%|▎         | 72/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=73/2000, vae_loss=567.0285]
Training: VAE decoder with masked batch labels:   4%|▎         | 73/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=74/2000, vae_loss=569.8567]
Training: VAE decoder with masked batch labels:   4%|▎         | 74/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=75/2000, vae_loss=590.3768]
Training: VAE decoder with masked batch labels:   4%|▍         | 75/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=76/2000, vae_loss=582.2139]
Training: VAE decoder with masked batch labels:   4%|▍         | 76/2000 [00:01<00:29, 65.12it/s, cycle_loss=0.0000, epoch=77/2000, vae_loss=572.8926]
Training: VAE decoder with masked batch labels:   4%|▍         | 77/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=77/2000, vae_loss=572.8926]
Training: VAE decoder with masked batch labels:   4%|▍         | 77/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=78/2000, vae_loss=597.5609]
Training: VAE decoder with masked batch labels:   4%|▍         | 78/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=79/2000, vae_loss=602.3986]
Training: VAE decoder with masked batch labels:   4%|▍         | 79/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=80/2000, vae_loss=591.0039]
Training: VAE decoder with masked batch labels:   4%|▍         | 80/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=81/2000, vae_loss=598.3167]
Training: VAE decoder with masked batch labels:   4%|▍         | 81/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=82/2000, vae_loss=587.1738]
Training: VAE decoder with masked batch labels:   4%|▍         | 82/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=83/2000, vae_loss=583.1903]
Training: VAE decoder with masked batch labels:   4%|▍         | 83/2000 [00:01<00:29, 65.48it/s, cycle_loss=0.0000, epoch=84/2000, vae_loss=585.3629]
Training: VAE decoder with masked batch labels:   4%|▍         | 84/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=84/2000, vae_loss=585.3629]
Training: VAE decoder with masked batch labels:   4%|▍         | 84/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=85/2000, vae_loss=575.7615]
Training: VAE decoder with masked batch labels:   4%|▍         | 85/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=86/2000, vae_loss=594.8017]
Training: VAE decoder with masked batch labels:   4%|▍         | 86/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=87/2000, vae_loss=575.3160]
Training: VAE decoder with masked batch labels:   4%|▍         | 87/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=88/2000, vae_loss=575.4119]
Training: VAE decoder with masked batch labels:   4%|▍         | 88/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=89/2000, vae_loss=570.2286]
Training: VAE decoder with masked batch labels:   4%|▍         | 89/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=90/2000, vae_loss=577.4947]
Training: VAE decoder with masked batch labels:   4%|▍         | 90/2000 [00:01<00:29, 65.73it/s, cycle_loss=0.0000, epoch=91/2000, vae_loss=585.3008]
Training: VAE decoder with masked batch labels:   5%|▍         | 91/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=91/2000, vae_loss=585.3008]
Training: VAE decoder with masked batch labels:   5%|▍         | 91/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=92/2000, vae_loss=579.7611]
Training: VAE decoder with masked batch labels:   5%|▍         | 92/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=93/2000, vae_loss=593.9219]
Training: VAE decoder with masked batch labels:   5%|▍         | 93/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=94/2000, vae_loss=607.1207]
Training: VAE decoder with masked batch labels:   5%|▍         | 94/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=95/2000, vae_loss=573.4469]
Training: VAE decoder with masked batch labels:   5%|▍         | 95/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=96/2000, vae_loss=581.5031]
Training: VAE decoder with masked batch labels:   5%|▍         | 96/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=97/2000, vae_loss=576.7754]
Training: VAE decoder with masked batch labels:   5%|▍         | 97/2000 [00:01<00:28, 66.13it/s, cycle_loss=0.0000, epoch=98/2000, vae_loss=578.2012]
Training: VAE decoder with masked batch labels:   5%|▍         | 98/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=98/2000, vae_loss=578.2012]
Training: VAE decoder with masked batch labels:   5%|▍         | 98/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=99/2000, vae_loss=580.2480]
Training: VAE decoder with masked batch labels:   5%|▍         | 99/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=100/2000, vae_loss=580.1443]
Training: VAE decoder with masked batch labels:   5%|▌         | 100/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=101/2000, vae_loss=566.5275]
Training: VAE decoder with masked batch labels:   5%|▌         | 101/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=102/2000, vae_loss=582.5353]
Training: VAE decoder with masked batch labels:   5%|▌         | 102/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=103/2000, vae_loss=574.8898]
Training: VAE decoder with masked batch labels:   5%|▌         | 103/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=104/2000, vae_loss=570.9982]
Training: VAE decoder with masked batch labels:   5%|▌         | 104/2000 [00:01<00:28, 66.19it/s, cycle_loss=0.0000, epoch=105/2000, vae_loss=574.4133]
Training: VAE decoder with masked batch labels:   5%|▌         | 105/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=105/2000, vae_loss=574.4133]
Training: VAE decoder with masked batch labels:   5%|▌         | 105/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=106/2000, vae_loss=571.1447]
Training: VAE decoder with masked batch labels:   5%|▌         | 106/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=107/2000, vae_loss=588.0964]
Training: VAE decoder with masked batch labels:   5%|▌         | 107/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=108/2000, vae_loss=585.5685]
Training: VAE decoder with masked batch labels:   5%|▌         | 108/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=109/2000, vae_loss=599.3292]
Training: VAE decoder with masked batch labels:   5%|▌         | 109/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=110/2000, vae_loss=593.6312]
Training: VAE decoder with masked batch labels:   6%|▌         | 110/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=111/2000, vae_loss=575.8390]
Training: VAE decoder with masked batch labels:   6%|▌         | 111/2000 [00:01<00:28, 66.20it/s, cycle_loss=0.0000, epoch=112/2000, vae_loss=571.3149]
Training: VAE decoder with masked batch labels:   6%|▌         | 112/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=112/2000, vae_loss=571.3149]
Training: VAE decoder with masked batch labels:   6%|▌         | 112/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=113/2000, vae_loss=581.9847]
Training: VAE decoder with masked batch labels:   6%|▌         | 113/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=114/2000, vae_loss=586.0021]
Training: VAE decoder with masked batch labels:   6%|▌         | 114/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=115/2000, vae_loss=601.0497]
Training: VAE decoder with masked batch labels:   6%|▌         | 115/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=116/2000, vae_loss=579.8135]
Training: VAE decoder with masked batch labels:   6%|▌         | 116/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=117/2000, vae_loss=572.1774]
Training: VAE decoder with masked batch labels:   6%|▌         | 117/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=118/2000, vae_loss=586.4309]
Training: VAE decoder with masked batch labels:   6%|▌         | 118/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=119/2000, vae_loss=564.5489]
Training: VAE decoder with masked batch labels:   6%|▌         | 119/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=119/2000, vae_loss=564.5489]
Training: VAE decoder with masked batch labels:   6%|▌         | 119/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=120/2000, vae_loss=583.7122]
Training: VAE decoder with masked batch labels:   6%|▌         | 120/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=121/2000, vae_loss=578.0364]
Training: VAE decoder with masked batch labels:   6%|▌         | 121/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=122/2000, vae_loss=563.9039]
Training: VAE decoder with masked batch labels:   6%|▌         | 122/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=123/2000, vae_loss=575.6432]
Training: VAE decoder with masked batch labels:   6%|▌         | 123/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=124/2000, vae_loss=605.6910]
Training: VAE decoder with masked batch labels:   6%|▌         | 124/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=125/2000, vae_loss=568.7150]
Training: VAE decoder with masked batch labels:   6%|▋         | 125/2000 [00:01<00:28, 66.29it/s, cycle_loss=0.0000, epoch=126/2000, vae_loss=588.1562]
Training: VAE decoder with masked batch labels:   6%|▋         | 126/2000 [00:01<00:28, 66.39it/s, cycle_loss=0.0000, epoch=126/2000, vae_loss=588.1562]
Training: VAE decoder with masked batch labels:   6%|▋         | 126/2000 [00:01<00:28, 66.39it/s, cycle_loss=0.0000, epoch=127/2000, vae_loss=600.6156]
Training: VAE decoder with masked batch labels:   6%|▋         | 127/2000 [00:01<00:28, 66.39it/s, cycle_loss=0.0000, epoch=128/2000, vae_loss=568.3360]
Training: VAE decoder with masked batch labels:   6%|▋         | 128/2000 [00:01<00:28, 66.39it/s, cycle_loss=0.0000, epoch=129/2000, vae_loss=581.3663]
Training: VAE decoder with masked batch labels:   6%|▋         | 129/2000 [00:01<00:28, 66.39it/s, cycle_loss=0.0000, epoch=130/2000, vae_loss=567.4913]
Training: VAE decoder with masked batch labels:   6%|▋         | 130/2000 [00:01<00:28, 66.39it/s, cycle_loss=0.0000, epoch=131/2000, vae_loss=582.2173]
Training: VAE decoder with masked batch labels:   7%|▋         | 131/2000 [00:02<00:28, 66.39it/s, cycle_loss=0.0000, epoch=132/2000, vae_loss=584.0946]
Training: VAE decoder with masked batch labels:   7%|▋         | 132/2000 [00:02<00:28, 66.39it/s, cycle_loss=0.0000, epoch=133/2000, vae_loss=570.8793]
Training: VAE decoder with masked batch labels:   7%|▋         | 133/2000 [00:02<00:28, 66.57it/s, cycle_loss=0.0000, epoch=133/2000, vae_loss=570.8793]
Training: VAE decoder with masked batch labels:   7%|▋         | 133/2000 [00:02<00:28, 66.57it/s, cycle_loss=0.0000, epoch=134/2000, vae_loss=574.7513]
Training: VAE decoder with masked batch labels:   7%|▋         | 134/2000 [00:02<00:28, 66.57it/s, cycle_loss=0.0000, epoch=135/2000, vae_loss=578.8246]
Training: VAE decoder with masked batch labels:   7%|▋         | 135/2000 [00:02<00:28, 66.57it/s, cycle_loss=0.0000, epoch=136/2000, vae_loss=598.1420]
Training: VAE decoder with masked batch labels:   7%|▋         | 136/2000 [00:02<00:28, 66.57it/s, cycle_loss=0.0000, epoch=137/2000, vae_loss=575.6231]
Training: VAE decoder with masked batch labels:   7%|▋         | 137/2000 [00:02<00:27, 66.57it/s, cycle_loss=0.0000, epoch=138/2000, vae_loss=574.6005]
Training: VAE decoder with masked batch labels:   7%|▋         | 138/2000 [00:02<00:27, 66.57it/s, cycle_loss=0.0000, epoch=139/2000, vae_loss=572.4977]
Training: VAE decoder with masked batch labels:   7%|▋         | 139/2000 [00:02<00:27, 66.57it/s, cycle_loss=0.0000, epoch=140/2000, vae_loss=580.1145]
Training: VAE decoder with masked batch labels:   7%|▋         | 140/2000 [00:02<00:28, 66.22it/s, cycle_loss=0.0000, epoch=140/2000, vae_loss=580.1145]
Training: VAE decoder with masked batch labels:   7%|▋         | 140/2000 [00:02<00:28, 66.22it/s, cycle_loss=0.0000, epoch=141/2000, vae_loss=587.2798]
Training: VAE decoder with masked batch labels:   7%|▋         | 141/2000 [00:02<00:28, 66.22it/s, cycle_loss=0.0000, epoch=142/2000, vae_loss=571.3608]
Training: VAE decoder with masked batch labels:   7%|▋         | 142/2000 [00:02<00:28, 66.22it/s, cycle_loss=0.0000, epoch=143/2000, vae_loss=569.0585]
Training: VAE decoder with masked batch labels:   7%|▋         | 143/2000 [00:02<00:28, 66.22it/s, cycle_loss=0.0000, epoch=144/2000, vae_loss=590.0522]
Training: VAE decoder with masked batch labels:   7%|▋         | 144/2000 [00:02<00:28, 66.22it/s, cycle_loss=0.0000, epoch=145/2000, vae_loss=589.7037]
Training: VAE decoder with masked batch labels:   7%|▋         | 145/2000 [00:02<00:28, 66.22it/s, cycle_loss=0.0000, epoch=146/2000, vae_loss=568.5798]
Training: VAE decoder with masked batch labels:   7%|▋         | 146/2000 [00:02<00:27, 66.22it/s, cycle_loss=0.0000, epoch=147/2000, vae_loss=592.2910]
Training: VAE decoder with masked batch labels:   7%|▋         | 147/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=147/2000, vae_loss=592.2910]
Training: VAE decoder with masked batch labels:   7%|▋         | 147/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=148/2000, vae_loss=593.1617]
Training: VAE decoder with masked batch labels:   7%|▋         | 148/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=149/2000, vae_loss=578.3767]
Training: VAE decoder with masked batch labels:   7%|▋         | 149/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=150/2000, vae_loss=581.4005]
Training: VAE decoder with masked batch labels:   8%|▊         | 150/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=151/2000, vae_loss=597.1955]
Training: VAE decoder with masked batch labels:   8%|▊         | 151/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=152/2000, vae_loss=585.6830]
Training: VAE decoder with masked batch labels:   8%|▊         | 152/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=153/2000, vae_loss=588.6670]
Training: VAE decoder with masked batch labels:   8%|▊         | 153/2000 [00:02<00:27, 66.46it/s, cycle_loss=0.0000, epoch=154/2000, vae_loss=585.2856]
Training: VAE decoder with masked batch labels:   8%|▊         | 154/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=154/2000, vae_loss=585.2856]
Training: VAE decoder with masked batch labels:   8%|▊         | 154/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=155/2000, vae_loss=602.5381]
Training: VAE decoder with masked batch labels:   8%|▊         | 155/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=156/2000, vae_loss=605.7617]
Training: VAE decoder with masked batch labels:   8%|▊         | 156/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=157/2000, vae_loss=579.4996]
Training: VAE decoder with masked batch labels:   8%|▊         | 157/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=158/2000, vae_loss=592.2029]
Training: VAE decoder with masked batch labels:   8%|▊         | 158/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=159/2000, vae_loss=574.7311]
Training: VAE decoder with masked batch labels:   8%|▊         | 159/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=160/2000, vae_loss=586.9143]
Training: VAE decoder with masked batch labels:   8%|▊         | 160/2000 [00:02<00:27, 66.83it/s, cycle_loss=0.0000, epoch=161/2000, vae_loss=577.8674]
Training: VAE decoder with masked batch labels:   8%|▊         | 161/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=161/2000, vae_loss=577.8674]
Training: VAE decoder with masked batch labels:   8%|▊         | 161/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=162/2000, vae_loss=584.9402]
Training: VAE decoder with masked batch labels:   8%|▊         | 162/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=163/2000, vae_loss=621.2842]
Training: VAE decoder with masked batch labels:   8%|▊         | 163/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=164/2000, vae_loss=565.9212]
Training: VAE decoder with masked batch labels:   8%|▊         | 164/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=165/2000, vae_loss=567.7115]
Training: VAE decoder with masked batch labels:   8%|▊         | 165/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=166/2000, vae_loss=573.6264]
Training: VAE decoder with masked batch labels:   8%|▊         | 166/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=167/2000, vae_loss=606.2783]
Training: VAE decoder with masked batch labels:   8%|▊         | 167/2000 [00:02<00:27, 66.86it/s, cycle_loss=0.0000, epoch=168/2000, vae_loss=594.2892]
Training: VAE decoder with masked batch labels:   8%|▊         | 168/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=168/2000, vae_loss=594.2892]
Training: VAE decoder with masked batch labels:   8%|▊         | 168/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=169/2000, vae_loss=586.9709]
Training: VAE decoder with masked batch labels:   8%|▊         | 169/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=170/2000, vae_loss=575.4630]
Training: VAE decoder with masked batch labels:   8%|▊         | 170/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=171/2000, vae_loss=574.7985]
Training: VAE decoder with masked batch labels:   9%|▊         | 171/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=172/2000, vae_loss=597.7328]
Training: VAE decoder with masked batch labels:   9%|▊         | 172/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=173/2000, vae_loss=590.9889]
Training: VAE decoder with masked batch labels:   9%|▊         | 173/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=174/2000, vae_loss=581.8016]
Training: VAE decoder with masked batch labels:   9%|▊         | 174/2000 [00:02<00:27, 67.08it/s, cycle_loss=0.0000, epoch=175/2000, vae_loss=569.8082]
Training: VAE decoder with masked batch labels:   9%|▉         | 175/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=175/2000, vae_loss=569.8082]
Training: VAE decoder with masked batch labels:   9%|▉         | 175/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=176/2000, vae_loss=570.6352]
Training: VAE decoder with masked batch labels:   9%|▉         | 176/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=177/2000, vae_loss=595.4908]
Training: VAE decoder with masked batch labels:   9%|▉         | 177/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=178/2000, vae_loss=562.0483]
Training: VAE decoder with masked batch labels:   9%|▉         | 178/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=179/2000, vae_loss=600.5087]
Training: VAE decoder with masked batch labels:   9%|▉         | 179/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=180/2000, vae_loss=612.1431]
Training: VAE decoder with masked batch labels:   9%|▉         | 180/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=181/2000, vae_loss=570.6252]
Training: VAE decoder with masked batch labels:   9%|▉         | 181/2000 [00:02<00:27, 67.17it/s, cycle_loss=0.0000, epoch=182/2000, vae_loss=586.2747]
Training: VAE decoder with masked batch labels:   9%|▉         | 182/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=182/2000, vae_loss=586.2747]
Training: VAE decoder with masked batch labels:   9%|▉         | 182/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=183/2000, vae_loss=586.6567]
Training: VAE decoder with masked batch labels:   9%|▉         | 183/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=184/2000, vae_loss=582.0898]
Training: VAE decoder with masked batch labels:   9%|▉         | 184/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=185/2000, vae_loss=576.3308]
Training: VAE decoder with masked batch labels:   9%|▉         | 185/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=186/2000, vae_loss=585.6125]
Training: VAE decoder with masked batch labels:   9%|▉         | 186/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=187/2000, vae_loss=578.3024]
Training: VAE decoder with masked batch labels:   9%|▉         | 187/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=188/2000, vae_loss=573.5958]
Training: VAE decoder with masked batch labels:   9%|▉         | 188/2000 [00:02<00:27, 67.03it/s, cycle_loss=0.0000, epoch=189/2000, vae_loss=582.0466]
Training: VAE decoder with masked batch labels:   9%|▉         | 189/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=189/2000, vae_loss=582.0466]
Training: VAE decoder with masked batch labels:   9%|▉         | 189/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=190/2000, vae_loss=591.1938]
Training: VAE decoder with masked batch labels:  10%|▉         | 190/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=191/2000, vae_loss=586.9747]
Training: VAE decoder with masked batch labels:  10%|▉         | 191/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=192/2000, vae_loss=588.8287]
Training: VAE decoder with masked batch labels:  10%|▉         | 192/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=193/2000, vae_loss=591.4925]
Training: VAE decoder with masked batch labels:  10%|▉         | 193/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=194/2000, vae_loss=590.4107]
Training: VAE decoder with masked batch labels:  10%|▉         | 194/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=195/2000, vae_loss=571.4628]
Training: VAE decoder with masked batch labels:  10%|▉         | 195/2000 [00:02<00:26, 67.47it/s, cycle_loss=0.0000, epoch=196/2000, vae_loss=604.8336]
Training: VAE decoder with masked batch labels:  10%|▉         | 196/2000 [00:02<00:26, 68.09it/s, cycle_loss=0.0000, epoch=196/2000, vae_loss=604.8336]
Training: VAE decoder with masked batch labels:  10%|▉         | 196/2000 [00:02<00:26, 68.09it/s, cycle_loss=0.0000, epoch=197/2000, vae_loss=579.1999]
Training: VAE decoder with masked batch labels:  10%|▉         | 197/2000 [00:02<00:26, 68.09it/s, cycle_loss=0.0000, epoch=198/2000, vae_loss=593.1588]
Training: VAE decoder with masked batch labels:  10%|▉         | 198/2000 [00:02<00:26, 68.09it/s, cycle_loss=0.0000, epoch=199/2000, vae_loss=576.7690]
Training: VAE decoder with masked batch labels:  10%|▉         | 199/2000 [00:03<00:26, 68.09it/s, cycle_loss=0.0000, epoch=200/2000, vae_loss=594.2484]
Training: VAE decoder with masked batch labels:  10%|█         | 200/2000 [00:03<00:26, 68.09it/s, cycle_loss=0.0000, epoch=201/2000, vae_loss=607.6318]
Training: VAE decoder with masked batch labels:  10%|█         | 201/2000 [00:03<00:26, 68.09it/s, cycle_loss=0.0000, epoch=202/2000, vae_loss=592.4985]
Training: VAE decoder with masked batch labels:  10%|█         | 202/2000 [00:03<00:26, 68.09it/s, cycle_loss=0.0000, epoch=203/2000, vae_loss=575.3788]
Training: VAE decoder with masked batch labels:  10%|█         | 203/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=203/2000, vae_loss=575.3788]
Training: VAE decoder with masked batch labels:  10%|█         | 203/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=204/2000, vae_loss=603.1315]
Training: VAE decoder with masked batch labels:  10%|█         | 204/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=205/2000, vae_loss=638.4537]
Training: VAE decoder with masked batch labels:  10%|█         | 205/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=206/2000, vae_loss=593.5830]
Training: VAE decoder with masked batch labels:  10%|█         | 206/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=207/2000, vae_loss=589.5706]
Training: VAE decoder with masked batch labels:  10%|█         | 207/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=208/2000, vae_loss=607.8603]
Training: VAE decoder with masked batch labels:  10%|█         | 208/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=209/2000, vae_loss=574.2881]
Training: VAE decoder with masked batch labels:  10%|█         | 209/2000 [00:03<00:26, 67.56it/s, cycle_loss=0.0000, epoch=210/2000, vae_loss=590.7073]
Training: VAE decoder with masked batch labels:  10%|█         | 210/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=210/2000, vae_loss=590.7073]
Training: VAE decoder with masked batch labels:  10%|█         | 210/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=211/2000, vae_loss=590.9904]
Training: VAE decoder with masked batch labels:  11%|█         | 211/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=212/2000, vae_loss=576.1193]
Training: VAE decoder with masked batch labels:  11%|█         | 212/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=213/2000, vae_loss=585.0988]
Training: VAE decoder with masked batch labels:  11%|█         | 213/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=214/2000, vae_loss=578.7070]
Training: VAE decoder with masked batch labels:  11%|█         | 214/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=215/2000, vae_loss=585.8482]
Training: VAE decoder with masked batch labels:  11%|█         | 215/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=216/2000, vae_loss=599.9545]
Training: VAE decoder with masked batch labels:  11%|█         | 216/2000 [00:03<00:26, 67.95it/s, cycle_loss=0.0000, epoch=217/2000, vae_loss=587.9159]
Training: VAE decoder with masked batch labels:  11%|█         | 217/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=217/2000, vae_loss=587.9159]
Training: VAE decoder with masked batch labels:  11%|█         | 217/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=218/2000, vae_loss=572.9766]
Training: VAE decoder with masked batch labels:  11%|█         | 218/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=219/2000, vae_loss=581.5297]
Training: VAE decoder with masked batch labels:  11%|█         | 219/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=220/2000, vae_loss=582.9505]
Training: VAE decoder with masked batch labels:  11%|█         | 220/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=221/2000, vae_loss=587.8798]
Training: VAE decoder with masked batch labels:  11%|█         | 221/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=222/2000, vae_loss=602.7559]
Training: VAE decoder with masked batch labels:  11%|█         | 222/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=223/2000, vae_loss=575.4767]
Training: VAE decoder with masked batch labels:  11%|█         | 223/2000 [00:03<00:26, 68.28it/s, cycle_loss=0.0000, epoch=224/2000, vae_loss=593.2011]
Training: VAE decoder with masked batch labels:  11%|█         | 224/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=224/2000, vae_loss=593.2011]
Training: VAE decoder with masked batch labels:  11%|█         | 224/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=225/2000, vae_loss=591.9705]
Training: VAE decoder with masked batch labels:  11%|█▏        | 225/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=226/2000, vae_loss=600.2321]
Training: VAE decoder with masked batch labels:  11%|█▏        | 226/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=227/2000, vae_loss=570.0560]
Training: VAE decoder with masked batch labels:  11%|█▏        | 227/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=228/2000, vae_loss=586.7271]
Training: VAE decoder with masked batch labels:  11%|█▏        | 228/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=229/2000, vae_loss=576.3771]
Training: VAE decoder with masked batch labels:  11%|█▏        | 229/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=230/2000, vae_loss=600.3023]
Training: VAE decoder with masked batch labels:  12%|█▏        | 230/2000 [00:03<00:25, 68.78it/s, cycle_loss=0.0000, epoch=231/2000, vae_loss=592.8247]
Training: VAE decoder with masked batch labels:  12%|█▏        | 231/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=231/2000, vae_loss=592.8247]
Training: VAE decoder with masked batch labels:  12%|█▏        | 231/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=232/2000, vae_loss=591.8900]
Training: VAE decoder with masked batch labels:  12%|█▏        | 232/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=233/2000, vae_loss=588.0007]
Training: VAE decoder with masked batch labels:  12%|█▏        | 233/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=234/2000, vae_loss=593.8178]
Training: VAE decoder with masked batch labels:  12%|█▏        | 234/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=235/2000, vae_loss=593.9750]
Training: VAE decoder with masked batch labels:  12%|█▏        | 235/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=236/2000, vae_loss=596.7819]
Training: VAE decoder with masked batch labels:  12%|█▏        | 236/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=237/2000, vae_loss=604.4526]
Training: VAE decoder with masked batch labels:  12%|█▏        | 237/2000 [00:03<00:25, 69.12it/s, cycle_loss=0.0000, epoch=238/2000, vae_loss=579.0500]
Training: VAE decoder with masked batch labels:  12%|█▏        | 238/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=238/2000, vae_loss=579.0500]
Training: VAE decoder with masked batch labels:  12%|█▏        | 238/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=239/2000, vae_loss=596.1054]
Training: VAE decoder with masked batch labels:  12%|█▏        | 239/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=240/2000, vae_loss=612.7564]
Training: VAE decoder with masked batch labels:  12%|█▏        | 240/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=241/2000, vae_loss=609.8932]
Training: VAE decoder with masked batch labels:  12%|█▏        | 241/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=242/2000, vae_loss=609.1601]
Training: VAE decoder with masked batch labels:  12%|█▏        | 242/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=243/2000, vae_loss=572.9514]
Training: VAE decoder with masked batch labels:  12%|█▏        | 243/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=244/2000, vae_loss=591.6273]
Training: VAE decoder with masked batch labels:  12%|█▏        | 244/2000 [00:03<00:25, 68.65it/s, cycle_loss=0.0000, epoch=245/2000, vae_loss=580.5511]
Training: VAE decoder with masked batch labels:  12%|█▏        | 245/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=245/2000, vae_loss=580.5511]
Training: VAE decoder with masked batch labels:  12%|█▏        | 245/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=246/2000, vae_loss=600.5787]
Training: VAE decoder with masked batch labels:  12%|█▏        | 246/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=247/2000, vae_loss=608.2288]
Training: VAE decoder with masked batch labels:  12%|█▏        | 247/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=248/2000, vae_loss=596.5746]
Training: VAE decoder with masked batch labels:  12%|█▏        | 248/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=249/2000, vae_loss=588.1949]
Training: VAE decoder with masked batch labels:  12%|█▏        | 249/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=250/2000, vae_loss=581.8163]
Training: VAE decoder with masked batch labels:  12%|█▎        | 250/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=251/2000, vae_loss=600.1002]
Training: VAE decoder with masked batch labels:  13%|█▎        | 251/2000 [00:03<00:25, 68.88it/s, cycle_loss=0.0000, epoch=252/2000, vae_loss=589.9603]
Training: VAE decoder with masked batch labels:  13%|█▎        | 252/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=252/2000, vae_loss=589.9603]
Training: VAE decoder with masked batch labels:  13%|█▎        | 252/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=253/2000, vae_loss=610.6508]
Training: VAE decoder with masked batch labels:  13%|█▎        | 253/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=254/2000, vae_loss=593.2448]
Training: VAE decoder with masked batch labels:  13%|█▎        | 254/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=255/2000, vae_loss=584.0018]
Training: VAE decoder with masked batch labels:  13%|█▎        | 255/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=256/2000, vae_loss=594.9072]
Training: VAE decoder with masked batch labels:  13%|█▎        | 256/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=257/2000, vae_loss=578.4169]
Training: VAE decoder with masked batch labels:  13%|█▎        | 257/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=258/2000, vae_loss=593.5083]
Training: VAE decoder with masked batch labels:  13%|█▎        | 258/2000 [00:03<00:25, 68.27it/s, cycle_loss=0.0000, epoch=259/2000, vae_loss=584.4565]
Training: VAE decoder with masked batch labels:  13%|█▎        | 259/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=259/2000, vae_loss=584.4565]
Training: VAE decoder with masked batch labels:  13%|█▎        | 259/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=260/2000, vae_loss=601.3629]
Training: VAE decoder with masked batch labels:  13%|█▎        | 260/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=261/2000, vae_loss=576.2390]
Training: VAE decoder with masked batch labels:  13%|█▎        | 261/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=262/2000, vae_loss=603.6091]
Training: VAE decoder with masked batch labels:  13%|█▎        | 262/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=263/2000, vae_loss=602.5275]
Training: VAE decoder with masked batch labels:  13%|█▎        | 263/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=264/2000, vae_loss=599.7069]
Training: VAE decoder with masked batch labels:  13%|█▎        | 264/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=265/2000, vae_loss=590.9684]
Training: VAE decoder with masked batch labels:  13%|█▎        | 265/2000 [00:03<00:25, 67.88it/s, cycle_loss=0.0000, epoch=266/2000, vae_loss=583.4240]
Training: VAE decoder with masked batch labels:  13%|█▎        | 266/2000 [00:03<00:25, 68.07it/s, cycle_loss=0.0000, epoch=266/2000, vae_loss=583.4240]
Training: VAE decoder with masked batch labels:  13%|█▎        | 266/2000 [00:03<00:25, 68.07it/s, cycle_loss=0.0000, epoch=267/2000, vae_loss=582.9888]
Training: VAE decoder with masked batch labels:  13%|█▎        | 267/2000 [00:04<00:25, 68.07it/s, cycle_loss=0.0000, epoch=268/2000, vae_loss=616.3378]
Training: VAE decoder with masked batch labels:  13%|█▎        | 268/2000 [00:04<00:25, 68.07it/s, cycle_loss=0.0000, epoch=269/2000, vae_loss=591.1155]
Training: VAE decoder with masked batch labels:  13%|█▎        | 269/2000 [00:04<00:25, 68.07it/s, cycle_loss=0.0000, epoch=270/2000, vae_loss=613.3646]
Training: VAE decoder with masked batch labels:  14%|█▎        | 270/2000 [00:04<00:25, 68.07it/s, cycle_loss=0.0000, epoch=271/2000, vae_loss=595.4981]
Training: VAE decoder with masked batch labels:  14%|█▎        | 271/2000 [00:04<00:25, 68.07it/s, cycle_loss=0.0000, epoch=272/2000, vae_loss=596.8776]
Training: VAE decoder with masked batch labels:  14%|█▎        | 272/2000 [00:04<00:25, 68.07it/s, cycle_loss=0.0000, epoch=273/2000, vae_loss=601.9401]
Training: VAE decoder with masked batch labels:  14%|█▎        | 273/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=273/2000, vae_loss=601.9401]
Training: VAE decoder with masked batch labels:  14%|█▎        | 273/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=274/2000, vae_loss=598.3974]
Training: VAE decoder with masked batch labels:  14%|█▎        | 274/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=275/2000, vae_loss=598.8372]
Training: VAE decoder with masked batch labels:  14%|█▍        | 275/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=276/2000, vae_loss=634.0085]
Training: VAE decoder with masked batch labels:  14%|█▍        | 276/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=277/2000, vae_loss=596.4126]
Training: VAE decoder with masked batch labels:  14%|█▍        | 277/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=278/2000, vae_loss=590.1234]
Training: VAE decoder with masked batch labels:  14%|█▍        | 278/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=279/2000, vae_loss=594.3771]
Training: VAE decoder with masked batch labels:  14%|█▍        | 279/2000 [00:04<00:25, 68.02it/s, cycle_loss=0.0000, epoch=280/2000, vae_loss=596.1021]
Training: VAE decoder with masked batch labels:  14%|█▍        | 280/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=280/2000, vae_loss=596.1021]
Training: VAE decoder with masked batch labels:  14%|█▍        | 280/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=281/2000, vae_loss=640.7040]
Training: VAE decoder with masked batch labels:  14%|█▍        | 281/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=282/2000, vae_loss=598.8505]
Training: VAE decoder with masked batch labels:  14%|█▍        | 282/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=283/2000, vae_loss=619.6888]
Training: VAE decoder with masked batch labels:  14%|█▍        | 283/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=284/2000, vae_loss=604.8016]
Training: VAE decoder with masked batch labels:  14%|█▍        | 284/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=285/2000, vae_loss=615.3198]
Training: VAE decoder with masked batch labels:  14%|█▍        | 285/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=286/2000, vae_loss=607.9476]
Training: VAE decoder with masked batch labels:  14%|█▍        | 286/2000 [00:04<00:25, 67.75it/s, cycle_loss=0.0000, epoch=287/2000, vae_loss=587.1783]
Training: VAE decoder with masked batch labels:  14%|█▍        | 287/2000 [00:04<00:25, 68.33it/s, cycle_loss=0.0000, epoch=287/2000, vae_loss=587.1783]
Training: VAE decoder with masked batch labels:  14%|█▍        | 287/2000 [00:04<00:25, 68.33it/s, cycle_loss=0.0000, epoch=288/2000, vae_loss=598.7018]
Training: VAE decoder with masked batch labels:  14%|█▍        | 288/2000 [00:04<00:25, 68.33it/s, cycle_loss=0.0000, epoch=289/2000, vae_loss=600.2795]
Training: VAE decoder with masked batch labels:  14%|█▍        | 289/2000 [00:04<00:25, 68.33it/s, cycle_loss=0.0000, epoch=290/2000, vae_loss=597.4548]
Training: VAE decoder with masked batch labels:  14%|█▍        | 290/2000 [00:04<00:25, 68.33it/s, cycle_loss=0.0000, epoch=291/2000, vae_loss=597.8743]
Training: VAE decoder with masked batch labels:  15%|█▍        | 291/2000 [00:04<00:25, 68.33it/s, cycle_loss=0.0000, epoch=292/2000, vae_loss=594.6996]
Training: VAE decoder with masked batch labels:  15%|█▍        | 292/2000 [00:04<00:24, 68.33it/s, cycle_loss=0.0000, epoch=293/2000, vae_loss=618.5318]
Training: VAE decoder with masked batch labels:  15%|█▍        | 293/2000 [00:04<00:24, 68.33it/s, cycle_loss=0.0000, epoch=294/2000, vae_loss=597.3721]
Training: VAE decoder with masked batch labels:  15%|█▍        | 294/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=294/2000, vae_loss=597.3721]
Training: VAE decoder with masked batch labels:  15%|█▍        | 294/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=295/2000, vae_loss=621.4321]
Training: VAE decoder with masked batch labels:  15%|█▍        | 295/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=296/2000, vae_loss=593.7030]
Training: VAE decoder with masked batch labels:  15%|█▍        | 296/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=297/2000, vae_loss=583.8609]
Training: VAE decoder with masked batch labels:  15%|█▍        | 297/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=298/2000, vae_loss=589.3821]
Training: VAE decoder with masked batch labels:  15%|█▍        | 298/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=299/2000, vae_loss=598.3945]
Training: VAE decoder with masked batch labels:  15%|█▍        | 299/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=300/2000, vae_loss=599.6313]
Training: VAE decoder with masked batch labels:  15%|█▌        | 300/2000 [00:04<00:24, 68.76it/s, cycle_loss=0.0000, epoch=301/2000, vae_loss=612.7205]
Training: VAE decoder with masked batch labels:  15%|█▌        | 301/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=301/2000, vae_loss=612.7205]
Training: VAE decoder with masked batch labels:  15%|█▌        | 301/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=302/2000, vae_loss=596.2219]
Training: VAE decoder with masked batch labels:  15%|█▌        | 302/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=303/2000, vae_loss=629.7133]
Training: VAE decoder with masked batch labels:  15%|█▌        | 303/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=304/2000, vae_loss=600.9439]
Training: VAE decoder with masked batch labels:  15%|█▌        | 304/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=305/2000, vae_loss=627.3030]
Training: VAE decoder with masked batch labels:  15%|█▌        | 305/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=306/2000, vae_loss=606.8814]
Training: VAE decoder with masked batch labels:  15%|█▌        | 306/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=307/2000, vae_loss=626.7661]
Training: VAE decoder with masked batch labels:  15%|█▌        | 307/2000 [00:04<00:24, 68.58it/s, cycle_loss=0.0000, epoch=308/2000, vae_loss=613.2858]
Training: VAE decoder with masked batch labels:  15%|█▌        | 308/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=308/2000, vae_loss=613.2858]
Training: VAE decoder with masked batch labels:  15%|█▌        | 308/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=309/2000, vae_loss=634.0560]
Training: VAE decoder with masked batch labels:  15%|█▌        | 309/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=310/2000, vae_loss=635.9081]
Training: VAE decoder with masked batch labels:  16%|█▌        | 310/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=311/2000, vae_loss=607.4334]
Training: VAE decoder with masked batch labels:  16%|█▌        | 311/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=312/2000, vae_loss=614.1698]
Training: VAE decoder with masked batch labels:  16%|█▌        | 312/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=313/2000, vae_loss=601.8242]
Training: VAE decoder with masked batch labels:  16%|█▌        | 313/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=314/2000, vae_loss=610.7830]
Training: VAE decoder with masked batch labels:  16%|█▌        | 314/2000 [00:04<00:24, 68.95it/s, cycle_loss=0.0000, epoch=315/2000, vae_loss=618.4738]
Training: VAE decoder with masked batch labels:  16%|█▌        | 315/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=315/2000, vae_loss=618.4738]
Training: VAE decoder with masked batch labels:  16%|█▌        | 315/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=316/2000, vae_loss=611.3387]
Training: VAE decoder with masked batch labels:  16%|█▌        | 316/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=317/2000, vae_loss=609.1428]
Training: VAE decoder with masked batch labels:  16%|█▌        | 317/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=318/2000, vae_loss=609.7321]
Training: VAE decoder with masked batch labels:  16%|█▌        | 318/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=319/2000, vae_loss=611.5922]
Training: VAE decoder with masked batch labels:  16%|█▌        | 319/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=320/2000, vae_loss=603.5545]
Training: VAE decoder with masked batch labels:  16%|█▌        | 320/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=321/2000, vae_loss=611.1280]
Training: VAE decoder with masked batch labels:  16%|█▌        | 321/2000 [00:04<00:24, 68.65it/s, cycle_loss=0.0000, epoch=322/2000, vae_loss=604.3423]
Training: VAE decoder with masked batch labels:  16%|█▌        | 322/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=322/2000, vae_loss=604.3423]
Training: VAE decoder with masked batch labels:  16%|█▌        | 322/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=323/2000, vae_loss=610.6451]
Training: VAE decoder with masked batch labels:  16%|█▌        | 323/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=324/2000, vae_loss=616.9283]
Training: VAE decoder with masked batch labels:  16%|█▌        | 324/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=325/2000, vae_loss=603.8845]
Training: VAE decoder with masked batch labels:  16%|█▋        | 325/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=326/2000, vae_loss=629.7171]
Training: VAE decoder with masked batch labels:  16%|█▋        | 326/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=327/2000, vae_loss=629.1289]
Training: VAE decoder with masked batch labels:  16%|█▋        | 327/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=328/2000, vae_loss=604.6572]
Training: VAE decoder with masked batch labels:  16%|█▋        | 328/2000 [00:04<00:24, 68.84it/s, cycle_loss=0.0000, epoch=329/2000, vae_loss=595.5042]
Training: VAE decoder with masked batch labels:  16%|█▋        | 329/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=329/2000, vae_loss=595.5042]
Training: VAE decoder with masked batch labels:  16%|█▋        | 329/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=330/2000, vae_loss=612.3909]
Training: VAE decoder with masked batch labels:  16%|█▋        | 330/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=331/2000, vae_loss=606.3875]
Training: VAE decoder with masked batch labels:  17%|█▋        | 331/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=332/2000, vae_loss=605.9393]
Training: VAE decoder with masked batch labels:  17%|█▋        | 332/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=333/2000, vae_loss=617.7831]
Training: VAE decoder with masked batch labels:  17%|█▋        | 333/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=334/2000, vae_loss=637.2366]
Training: VAE decoder with masked batch labels:  17%|█▋        | 334/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=335/2000, vae_loss=592.6469]
Training: VAE decoder with masked batch labels:  17%|█▋        | 335/2000 [00:04<00:24, 69.08it/s, cycle_loss=0.0000, epoch=336/2000, vae_loss=635.4592]
Training: VAE decoder with masked batch labels:  17%|█▋        | 336/2000 [00:05<00:24, 69.08it/s, cycle_loss=0.0000, epoch=337/2000, vae_loss=603.1993]
Training: VAE decoder with masked batch labels:  17%|█▋        | 337/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=337/2000, vae_loss=603.1993]
Training: VAE decoder with masked batch labels:  17%|█▋        | 337/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=338/2000, vae_loss=613.9966]
Training: VAE decoder with masked batch labels:  17%|█▋        | 338/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=339/2000, vae_loss=619.5555]
Training: VAE decoder with masked batch labels:  17%|█▋        | 339/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=340/2000, vae_loss=614.9676]
Training: VAE decoder with masked batch labels:  17%|█▋        | 340/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=341/2000, vae_loss=620.5067]
Training: VAE decoder with masked batch labels:  17%|█▋        | 341/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=342/2000, vae_loss=650.0920]
Training: VAE decoder with masked batch labels:  17%|█▋        | 342/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=343/2000, vae_loss=624.7825]
Training: VAE decoder with masked batch labels:  17%|█▋        | 343/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=344/2000, vae_loss=645.3784]
Training: VAE decoder with masked batch labels:  17%|█▋        | 344/2000 [00:05<00:23, 69.42it/s, cycle_loss=0.0000, epoch=345/2000, vae_loss=618.6447]
Training: VAE decoder with masked batch labels:  17%|█▋        | 345/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=345/2000, vae_loss=618.6447]
Training: VAE decoder with masked batch labels:  17%|█▋        | 345/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=346/2000, vae_loss=623.4985]
Training: VAE decoder with masked batch labels:  17%|█▋        | 346/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=347/2000, vae_loss=644.5435]
Training: VAE decoder with masked batch labels:  17%|█▋        | 347/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=348/2000, vae_loss=626.5283]
Training: VAE decoder with masked batch labels:  17%|█▋        | 348/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=349/2000, vae_loss=619.3392]
Training: VAE decoder with masked batch labels:  17%|█▋        | 349/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=350/2000, vae_loss=618.0563]
Training: VAE decoder with masked batch labels:  18%|█▊        | 350/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=351/2000, vae_loss=612.0118]
Training: VAE decoder with masked batch labels:  18%|█▊        | 351/2000 [00:05<00:23, 69.46it/s, cycle_loss=0.0000, epoch=352/2000, vae_loss=601.6468]
Training: VAE decoder with masked batch labels:  18%|█▊        | 352/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=352/2000, vae_loss=601.6468]
Training: VAE decoder with masked batch labels:  18%|█▊        | 352/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=353/2000, vae_loss=591.6697]
Training: VAE decoder with masked batch labels:  18%|█▊        | 353/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=354/2000, vae_loss=606.6281]
Training: VAE decoder with masked batch labels:  18%|█▊        | 354/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=355/2000, vae_loss=671.9334]
Training: VAE decoder with masked batch labels:  18%|█▊        | 355/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=356/2000, vae_loss=598.5038]
Training: VAE decoder with masked batch labels:  18%|█▊        | 356/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=357/2000, vae_loss=616.7563]
Training: VAE decoder with masked batch labels:  18%|█▊        | 357/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=358/2000, vae_loss=605.9788]
Training: VAE decoder with masked batch labels:  18%|█▊        | 358/2000 [00:05<00:23, 69.53it/s, cycle_loss=0.0000, epoch=359/2000, vae_loss=621.3493]
Training: VAE decoder with masked batch labels:  18%|█▊        | 359/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=359/2000, vae_loss=621.3493]
Training: VAE decoder with masked batch labels:  18%|█▊        | 359/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=360/2000, vae_loss=626.9117]
Training: VAE decoder with masked batch labels:  18%|█▊        | 360/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=361/2000, vae_loss=622.9117]
Training: VAE decoder with masked batch labels:  18%|█▊        | 361/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=362/2000, vae_loss=641.1087]
Training: VAE decoder with masked batch labels:  18%|█▊        | 362/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=363/2000, vae_loss=633.4199]
Training: VAE decoder with masked batch labels:  18%|█▊        | 363/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=364/2000, vae_loss=628.7331]
Training: VAE decoder with masked batch labels:  18%|█▊        | 364/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=365/2000, vae_loss=640.5449]
Training: VAE decoder with masked batch labels:  18%|█▊        | 365/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=366/2000, vae_loss=613.9127]
Training: VAE decoder with masked batch labels:  18%|█▊        | 366/2000 [00:05<00:23, 69.30it/s, cycle_loss=0.0000, epoch=367/2000, vae_loss=634.7178]
Training: VAE decoder with masked batch labels:  18%|█▊        | 367/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=367/2000, vae_loss=634.7178]
Training: VAE decoder with masked batch labels:  18%|█▊        | 367/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=368/2000, vae_loss=633.2557]
Training: VAE decoder with masked batch labels:  18%|█▊        | 368/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=369/2000, vae_loss=625.2792]
Training: VAE decoder with masked batch labels:  18%|█▊        | 369/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=370/2000, vae_loss=641.3392]
Training: VAE decoder with masked batch labels:  18%|█▊        | 370/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=371/2000, vae_loss=656.8036]
Training: VAE decoder with masked batch labels:  19%|█▊        | 371/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=372/2000, vae_loss=622.5910]
Training: VAE decoder with masked batch labels:  19%|█▊        | 372/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=373/2000, vae_loss=621.6738]
Training: VAE decoder with masked batch labels:  19%|█▊        | 373/2000 [00:05<00:23, 69.61it/s, cycle_loss=0.0000, epoch=374/2000, vae_loss=659.2809]
Training: VAE decoder with masked batch labels:  19%|█▊        | 374/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=374/2000, vae_loss=659.2809]
Training: VAE decoder with masked batch labels:  19%|█▊        | 374/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=375/2000, vae_loss=631.5368]
Training: VAE decoder with masked batch labels:  19%|█▉        | 375/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=376/2000, vae_loss=623.8535]
Training: VAE decoder with masked batch labels:  19%|█▉        | 376/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=377/2000, vae_loss=621.3945]
Training: VAE decoder with masked batch labels:  19%|█▉        | 377/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=378/2000, vae_loss=625.8336]
Training: VAE decoder with masked batch labels:  19%|█▉        | 378/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=379/2000, vae_loss=631.0693]
Training: VAE decoder with masked batch labels:  19%|█▉        | 379/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=380/2000, vae_loss=611.7059]
Training: VAE decoder with masked batch labels:  19%|█▉        | 380/2000 [00:05<00:23, 69.34it/s, cycle_loss=0.0000, epoch=381/2000, vae_loss=656.1456]
Training: VAE decoder with masked batch labels:  19%|█▉        | 381/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=381/2000, vae_loss=656.1456]
Training: VAE decoder with masked batch labels:  19%|█▉        | 381/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=382/2000, vae_loss=647.2285]
Training: VAE decoder with masked batch labels:  19%|█▉        | 382/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=383/2000, vae_loss=644.5198]
Training: VAE decoder with masked batch labels:  19%|█▉        | 383/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=384/2000, vae_loss=626.0834]
Training: VAE decoder with masked batch labels:  19%|█▉        | 384/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=385/2000, vae_loss=644.2814]
Training: VAE decoder with masked batch labels:  19%|█▉        | 385/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=386/2000, vae_loss=639.8066]
Training: VAE decoder with masked batch labels:  19%|█▉        | 386/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=387/2000, vae_loss=616.2891]
Training: VAE decoder with masked batch labels:  19%|█▉        | 387/2000 [00:05<00:23, 69.47it/s, cycle_loss=0.0000, epoch=388/2000, vae_loss=641.6895]
Training: VAE decoder with masked batch labels:  19%|█▉        | 388/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=388/2000, vae_loss=641.6895]
Training: VAE decoder with masked batch labels:  19%|█▉        | 388/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=389/2000, vae_loss=638.6709]
Training: VAE decoder with masked batch labels:  19%|█▉        | 389/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=390/2000, vae_loss=625.7779]
Training: VAE decoder with masked batch labels:  20%|█▉        | 390/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=391/2000, vae_loss=645.0620]
Training: VAE decoder with masked batch labels:  20%|█▉        | 391/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=392/2000, vae_loss=642.3594]
Training: VAE decoder with masked batch labels:  20%|█▉        | 392/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=393/2000, vae_loss=631.6645]
Training: VAE decoder with masked batch labels:  20%|█▉        | 393/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=394/2000, vae_loss=631.0705]
Training: VAE decoder with masked batch labels:  20%|█▉        | 394/2000 [00:05<00:23, 68.71it/s, cycle_loss=0.0000, epoch=395/2000, vae_loss=649.4587]
Training: VAE decoder with masked batch labels:  20%|█▉        | 395/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=395/2000, vae_loss=649.4587]
Training: VAE decoder with masked batch labels:  20%|█▉        | 395/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=396/2000, vae_loss=641.5442]
Training: VAE decoder with masked batch labels:  20%|█▉        | 396/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=397/2000, vae_loss=631.6717]
Training: VAE decoder with masked batch labels:  20%|█▉        | 397/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=398/2000, vae_loss=629.5154]
Training: VAE decoder with masked batch labels:  20%|█▉        | 398/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=399/2000, vae_loss=665.7693]
Training: VAE decoder with masked batch labels:  20%|█▉        | 399/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=400/2000, vae_loss=642.3191]
Training: VAE decoder with masked batch labels:  20%|██        | 400/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=401/2000, vae_loss=629.3843]
Training: VAE decoder with masked batch labels:  20%|██        | 401/2000 [00:05<00:23, 68.44it/s, cycle_loss=0.0000, epoch=402/2000, vae_loss=621.4540]
Training: VAE decoder with masked batch labels:  20%|██        | 402/2000 [00:05<00:23, 68.34it/s, cycle_loss=0.0000, epoch=402/2000, vae_loss=621.4540]
Training: VAE decoder with masked batch labels:  20%|██        | 402/2000 [00:05<00:23, 68.34it/s, cycle_loss=0.0000, epoch=403/2000, vae_loss=642.4445]
Training: VAE decoder with masked batch labels:  20%|██        | 403/2000 [00:05<00:23, 68.34it/s, cycle_loss=0.0000, epoch=404/2000, vae_loss=643.4389]
Training: VAE decoder with masked batch labels:  20%|██        | 404/2000 [00:05<00:23, 68.34it/s, cycle_loss=0.0000, epoch=405/2000, vae_loss=630.5531]
Training: VAE decoder with masked batch labels:  20%|██        | 405/2000 [00:06<00:23, 68.34it/s, cycle_loss=0.0000, epoch=406/2000, vae_loss=639.0003]
Training: VAE decoder with masked batch labels:  20%|██        | 406/2000 [00:06<00:23, 68.34it/s, cycle_loss=0.0000, epoch=407/2000, vae_loss=652.1979]
Training: VAE decoder with masked batch labels:  20%|██        | 407/2000 [00:06<00:23, 68.34it/s, cycle_loss=0.0000, epoch=408/2000, vae_loss=658.0715]
Training: VAE decoder with masked batch labels:  20%|██        | 408/2000 [00:06<00:23, 68.34it/s, cycle_loss=0.0000, epoch=409/2000, vae_loss=643.6291]
Training: VAE decoder with masked batch labels:  20%|██        | 409/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=409/2000, vae_loss=643.6291]
Training: VAE decoder with masked batch labels:  20%|██        | 409/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=410/2000, vae_loss=659.4587]
Training: VAE decoder with masked batch labels:  20%|██        | 410/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=411/2000, vae_loss=655.4839]
Training: VAE decoder with masked batch labels:  21%|██        | 411/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=412/2000, vae_loss=642.7952]
Training: VAE decoder with masked batch labels:  21%|██        | 412/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=413/2000, vae_loss=669.6057]
Training: VAE decoder with masked batch labels:  21%|██        | 413/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=414/2000, vae_loss=627.1188]
Training: VAE decoder with masked batch labels:  21%|██        | 414/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=415/2000, vae_loss=670.6354]
Training: VAE decoder with masked batch labels:  21%|██        | 415/2000 [00:06<00:23, 68.81it/s, cycle_loss=0.0000, epoch=416/2000, vae_loss=630.5618]
Training: VAE decoder with masked batch labels:  21%|██        | 416/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=416/2000, vae_loss=630.5618]
Training: VAE decoder with masked batch labels:  21%|██        | 416/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=417/2000, vae_loss=658.9913]
Training: VAE decoder with masked batch labels:  21%|██        | 417/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=418/2000, vae_loss=635.2161]
Training: VAE decoder with masked batch labels:  21%|██        | 418/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=419/2000, vae_loss=630.9421]
Training: VAE decoder with masked batch labels:  21%|██        | 419/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=420/2000, vae_loss=641.9267]
Training: VAE decoder with masked batch labels:  21%|██        | 420/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=421/2000, vae_loss=653.5713]
Training: VAE decoder with masked batch labels:  21%|██        | 421/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=422/2000, vae_loss=645.9928]
Training: VAE decoder with masked batch labels:  21%|██        | 422/2000 [00:06<00:23, 68.28it/s, cycle_loss=0.0000, epoch=423/2000, vae_loss=652.5762]
Training: VAE decoder with masked batch labels:  21%|██        | 423/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=423/2000, vae_loss=652.5762]
Training: VAE decoder with masked batch labels:  21%|██        | 423/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=424/2000, vae_loss=644.1113]
Training: VAE decoder with masked batch labels:  21%|██        | 424/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=425/2000, vae_loss=662.0991]
Training: VAE decoder with masked batch labels:  21%|██▏       | 425/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=426/2000, vae_loss=639.8715]
Training: VAE decoder with masked batch labels:  21%|██▏       | 426/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=427/2000, vae_loss=664.5079]
Training: VAE decoder with masked batch labels:  21%|██▏       | 427/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=428/2000, vae_loss=661.6725]
Training: VAE decoder with masked batch labels:  21%|██▏       | 428/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=429/2000, vae_loss=645.0246]
Training: VAE decoder with masked batch labels:  21%|██▏       | 429/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=430/2000, vae_loss=639.6052]
Training: VAE decoder with masked batch labels:  22%|██▏       | 430/2000 [00:06<00:22, 68.68it/s, cycle_loss=0.0000, epoch=431/2000, vae_loss=645.2129]
Training: VAE decoder with masked batch labels:  22%|██▏       | 431/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=431/2000, vae_loss=645.2129]
Training: VAE decoder with masked batch labels:  22%|██▏       | 431/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=432/2000, vae_loss=636.7264]
Training: VAE decoder with masked batch labels:  22%|██▏       | 432/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=433/2000, vae_loss=655.5214]
Training: VAE decoder with masked batch labels:  22%|██▏       | 433/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=434/2000, vae_loss=647.1589]
Training: VAE decoder with masked batch labels:  22%|██▏       | 434/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=435/2000, vae_loss=652.3666]
Training: VAE decoder with masked batch labels:  22%|██▏       | 435/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=436/2000, vae_loss=649.0934]
Training: VAE decoder with masked batch labels:  22%|██▏       | 436/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=437/2000, vae_loss=672.8106]
Training: VAE decoder with masked batch labels:  22%|██▏       | 437/2000 [00:06<00:22, 69.42it/s, cycle_loss=0.0000, epoch=438/2000, vae_loss=641.9137]
Training: VAE decoder with masked batch labels:  22%|██▏       | 438/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=438/2000, vae_loss=641.9137]
Training: VAE decoder with masked batch labels:  22%|██▏       | 438/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=439/2000, vae_loss=658.6693]
Training: VAE decoder with masked batch labels:  22%|██▏       | 439/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=440/2000, vae_loss=635.2426]
Training: VAE decoder with masked batch labels:  22%|██▏       | 440/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=441/2000, vae_loss=650.7523]
Training: VAE decoder with masked batch labels:  22%|██▏       | 441/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=442/2000, vae_loss=641.7992]
Training: VAE decoder with masked batch labels:  22%|██▏       | 442/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=443/2000, vae_loss=655.2396]
Training: VAE decoder with masked batch labels:  22%|██▏       | 443/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=444/2000, vae_loss=651.2466]
Training: VAE decoder with masked batch labels:  22%|██▏       | 444/2000 [00:06<00:22, 69.14it/s, cycle_loss=0.0000, epoch=445/2000, vae_loss=649.7277]
Training: VAE decoder with masked batch labels:  22%|██▏       | 445/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=445/2000, vae_loss=649.7277]
Training: VAE decoder with masked batch labels:  22%|██▏       | 445/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=446/2000, vae_loss=694.7888]
Training: VAE decoder with masked batch labels:  22%|██▏       | 446/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=447/2000, vae_loss=663.4703]
Training: VAE decoder with masked batch labels:  22%|██▏       | 447/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=448/2000, vae_loss=672.1340]
Training: VAE decoder with masked batch labels:  22%|██▏       | 448/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=449/2000, vae_loss=640.8784]
Training: VAE decoder with masked batch labels:  22%|██▏       | 449/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=450/2000, vae_loss=671.1323]
Training: VAE decoder with masked batch labels:  22%|██▎       | 450/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=451/2000, vae_loss=657.9698]
Training: VAE decoder with masked batch labels:  23%|██▎       | 451/2000 [00:06<00:22, 69.32it/s, cycle_loss=0.0000, epoch=452/2000, vae_loss=656.4301]
Training: VAE decoder with masked batch labels:  23%|██▎       | 452/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=452/2000, vae_loss=656.4301]
Training: VAE decoder with masked batch labels:  23%|██▎       | 452/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=453/2000, vae_loss=663.9792]
Training: VAE decoder with masked batch labels:  23%|██▎       | 453/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=454/2000, vae_loss=651.7504]
Training: VAE decoder with masked batch labels:  23%|██▎       | 454/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=455/2000, vae_loss=681.5575]
Training: VAE decoder with masked batch labels:  23%|██▎       | 455/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=456/2000, vae_loss=657.4716]
Training: VAE decoder with masked batch labels:  23%|██▎       | 456/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=457/2000, vae_loss=663.3442]
Training: VAE decoder with masked batch labels:  23%|██▎       | 457/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=458/2000, vae_loss=655.3157]
Training: VAE decoder with masked batch labels:  23%|██▎       | 458/2000 [00:06<00:22, 69.49it/s, cycle_loss=0.0000, epoch=459/2000, vae_loss=661.2019]
Training: VAE decoder with masked batch labels:  23%|██▎       | 459/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=459/2000, vae_loss=661.2019]
Training: VAE decoder with masked batch labels:  23%|██▎       | 459/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=460/2000, vae_loss=647.2061]
Training: VAE decoder with masked batch labels:  23%|██▎       | 460/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=461/2000, vae_loss=641.5605]
Training: VAE decoder with masked batch labels:  23%|██▎       | 461/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=462/2000, vae_loss=685.7664]
Training: VAE decoder with masked batch labels:  23%|██▎       | 462/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=463/2000, vae_loss=683.4382]
Training: VAE decoder with masked batch labels:  23%|██▎       | 463/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=464/2000, vae_loss=665.2311]
Training: VAE decoder with masked batch labels:  23%|██▎       | 464/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=465/2000, vae_loss=646.3060]
Training: VAE decoder with masked batch labels:  23%|██▎       | 465/2000 [00:06<00:22, 69.59it/s, cycle_loss=0.0000, epoch=466/2000, vae_loss=654.9116]
Training: VAE decoder with masked batch labels:  23%|██▎       | 466/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=466/2000, vae_loss=654.9116]
Training: VAE decoder with masked batch labels:  23%|██▎       | 466/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=467/2000, vae_loss=676.4282]
Training: VAE decoder with masked batch labels:  23%|██▎       | 467/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=468/2000, vae_loss=670.3062]
Training: VAE decoder with masked batch labels:  23%|██▎       | 468/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=469/2000, vae_loss=671.0389]
Training: VAE decoder with masked batch labels:  23%|██▎       | 469/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=470/2000, vae_loss=695.8510]
Training: VAE decoder with masked batch labels:  24%|██▎       | 470/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=471/2000, vae_loss=679.2612]
Training: VAE decoder with masked batch labels:  24%|██▎       | 471/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=472/2000, vae_loss=692.0683]
Training: VAE decoder with masked batch labels:  24%|██▎       | 472/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=473/2000, vae_loss=688.5775]
Training: VAE decoder with masked batch labels:  24%|██▎       | 473/2000 [00:06<00:22, 69.39it/s, cycle_loss=0.0000, epoch=474/2000, vae_loss=694.4192]
Training: VAE decoder with masked batch labels:  24%|██▎       | 474/2000 [00:06<00:21, 69.79it/s, cycle_loss=0.0000, epoch=474/2000, vae_loss=694.4192]
Training: VAE decoder with masked batch labels:  24%|██▎       | 474/2000 [00:06<00:21, 69.79it/s, cycle_loss=0.0000, epoch=475/2000, vae_loss=652.5883]
Training: VAE decoder with masked batch labels:  24%|██▍       | 475/2000 [00:07<00:21, 69.79it/s, cycle_loss=0.0000, epoch=476/2000, vae_loss=698.7425]
Training: VAE decoder with masked batch labels:  24%|██▍       | 476/2000 [00:07<00:21, 69.79it/s, cycle_loss=0.0000, epoch=477/2000, vae_loss=675.2307]
Training: VAE decoder with masked batch labels:  24%|██▍       | 477/2000 [00:07<00:21, 69.79it/s, cycle_loss=0.0000, epoch=478/2000, vae_loss=673.6633]
Training: VAE decoder with masked batch labels:  24%|██▍       | 478/2000 [00:07<00:21, 69.79it/s, cycle_loss=0.0000, epoch=479/2000, vae_loss=657.7960]
Training: VAE decoder with masked batch labels:  24%|██▍       | 479/2000 [00:07<00:21, 69.79it/s, cycle_loss=0.0000, epoch=480/2000, vae_loss=687.2255]
Training: VAE decoder with masked batch labels:  24%|██▍       | 480/2000 [00:07<00:21, 69.79it/s, cycle_loss=0.0000, epoch=481/2000, vae_loss=678.2463]
Training: VAE decoder with masked batch labels:  24%|██▍       | 481/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=481/2000, vae_loss=678.2463]
Training: VAE decoder with masked batch labels:  24%|██▍       | 481/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=482/2000, vae_loss=669.0961]
Training: VAE decoder with masked batch labels:  24%|██▍       | 482/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=483/2000, vae_loss=693.6213]
Training: VAE decoder with masked batch labels:  24%|██▍       | 483/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=484/2000, vae_loss=660.0652]
Training: VAE decoder with masked batch labels:  24%|██▍       | 484/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=485/2000, vae_loss=674.7353]
Training: VAE decoder with masked batch labels:  24%|██▍       | 485/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=486/2000, vae_loss=672.8415]
Training: VAE decoder with masked batch labels:  24%|██▍       | 486/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=487/2000, vae_loss=690.2001]
Training: VAE decoder with masked batch labels:  24%|██▍       | 487/2000 [00:07<00:21, 69.32it/s, cycle_loss=0.0000, epoch=488/2000, vae_loss=721.2531]
Training: VAE decoder with masked batch labels:  24%|██▍       | 488/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=488/2000, vae_loss=721.2531]
Training: VAE decoder with masked batch labels:  24%|██▍       | 488/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=489/2000, vae_loss=683.2864]
Training: VAE decoder with masked batch labels:  24%|██▍       | 489/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=490/2000, vae_loss=689.4065]
Training: VAE decoder with masked batch labels:  24%|██▍       | 490/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=491/2000, vae_loss=706.2664]
Training: VAE decoder with masked batch labels:  25%|██▍       | 491/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=492/2000, vae_loss=669.2430]
Training: VAE decoder with masked batch labels:  25%|██▍       | 492/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=493/2000, vae_loss=674.0554]
Training: VAE decoder with masked batch labels:  25%|██▍       | 493/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=494/2000, vae_loss=699.5798]
Training: VAE decoder with masked batch labels:  25%|██▍       | 494/2000 [00:07<00:21, 69.14it/s, cycle_loss=0.0000, epoch=495/2000, vae_loss=710.7692]
Training: VAE decoder with masked batch labels:  25%|██▍       | 495/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=495/2000, vae_loss=710.7692]
Training: VAE decoder with masked batch labels:  25%|██▍       | 495/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=496/2000, vae_loss=713.9129]
Training: VAE decoder with masked batch labels:  25%|██▍       | 496/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=497/2000, vae_loss=675.8553]
Training: VAE decoder with masked batch labels:  25%|██▍       | 497/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=498/2000, vae_loss=707.4050]
Training: VAE decoder with masked batch labels:  25%|██▍       | 498/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=499/2000, vae_loss=672.3517]
Training: VAE decoder with masked batch labels:  25%|██▍       | 499/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=500/2000, vae_loss=697.0351]
Training: VAE decoder with masked batch labels:  25%|██▌       | 500/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=501/2000, vae_loss=693.4230]
Training: VAE decoder with masked batch labels:  25%|██▌       | 501/2000 [00:07<00:21, 69.34it/s, cycle_loss=0.0000, epoch=502/2000, vae_loss=744.6451]
Training: VAE decoder with masked batch labels:  25%|██▌       | 502/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=502/2000, vae_loss=744.6451]
Training: VAE decoder with masked batch labels:  25%|██▌       | 502/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=503/2000, vae_loss=737.7184]
Training: VAE decoder with masked batch labels:  25%|██▌       | 503/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=504/2000, vae_loss=692.5448]
Training: VAE decoder with masked batch labels:  25%|██▌       | 504/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=505/2000, vae_loss=670.9499]
Training: VAE decoder with masked batch labels:  25%|██▌       | 505/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=506/2000, vae_loss=696.5770]
Training: VAE decoder with masked batch labels:  25%|██▌       | 506/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=507/2000, vae_loss=683.4678]
Training: VAE decoder with masked batch labels:  25%|██▌       | 507/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=508/2000, vae_loss=678.6582]
Training: VAE decoder with masked batch labels:  25%|██▌       | 508/2000 [00:07<00:21, 69.36it/s, cycle_loss=0.0000, epoch=509/2000, vae_loss=699.2141]
Training: VAE decoder with masked batch labels:  25%|██▌       | 509/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=509/2000, vae_loss=699.2141]
Training: VAE decoder with masked batch labels:  25%|██▌       | 509/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=510/2000, vae_loss=694.4726]
Training: VAE decoder with masked batch labels:  26%|██▌       | 510/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=511/2000, vae_loss=718.2245]
Training: VAE decoder with masked batch labels:  26%|██▌       | 511/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=512/2000, vae_loss=698.7555]
Training: VAE decoder with masked batch labels:  26%|██▌       | 512/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=513/2000, vae_loss=711.1934]
Training: VAE decoder with masked batch labels:  26%|██▌       | 513/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=514/2000, vae_loss=696.6472]
Training: VAE decoder with masked batch labels:  26%|██▌       | 514/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=515/2000, vae_loss=719.4786]
Training: VAE decoder with masked batch labels:  26%|██▌       | 515/2000 [00:07<00:21, 69.30it/s, cycle_loss=0.0000, epoch=516/2000, vae_loss=728.4384]
Training: VAE decoder with masked batch labels:  26%|██▌       | 516/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=516/2000, vae_loss=728.4384]
Training: VAE decoder with masked batch labels:  26%|██▌       | 516/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=517/2000, vae_loss=714.5859]
Training: VAE decoder with masked batch labels:  26%|██▌       | 517/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=518/2000, vae_loss=699.4814]
Training: VAE decoder with masked batch labels:  26%|██▌       | 518/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=519/2000, vae_loss=691.3283]
Training: VAE decoder with masked batch labels:  26%|██▌       | 519/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=520/2000, vae_loss=728.5575]
Training: VAE decoder with masked batch labels:  26%|██▌       | 520/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=521/2000, vae_loss=723.8461]
Training: VAE decoder with masked batch labels:  26%|██▌       | 521/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=522/2000, vae_loss=704.6266]
Training: VAE decoder with masked batch labels:  26%|██▌       | 522/2000 [00:07<00:21, 68.94it/s, cycle_loss=0.0000, epoch=523/2000, vae_loss=695.5805]
Training: VAE decoder with masked batch labels:  26%|██▌       | 523/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=523/2000, vae_loss=695.5805]
Training: VAE decoder with masked batch labels:  26%|██▌       | 523/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=524/2000, vae_loss=708.3884]
Training: VAE decoder with masked batch labels:  26%|██▌       | 524/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=525/2000, vae_loss=705.6850]
Training: VAE decoder with masked batch labels:  26%|██▋       | 525/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=526/2000, vae_loss=706.9222]
Training: VAE decoder with masked batch labels:  26%|██▋       | 526/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=527/2000, vae_loss=693.0964]
Training: VAE decoder with masked batch labels:  26%|██▋       | 527/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=528/2000, vae_loss=713.4745]
Training: VAE decoder with masked batch labels:  26%|██▋       | 528/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=529/2000, vae_loss=714.3110]
Training: VAE decoder with masked batch labels:  26%|██▋       | 529/2000 [00:07<00:21, 68.92it/s, cycle_loss=0.0000, epoch=530/2000, vae_loss=694.1935]
Training: VAE decoder with masked batch labels:  26%|██▋       | 530/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=530/2000, vae_loss=694.1935]
Training: VAE decoder with masked batch labels:  26%|██▋       | 530/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=531/2000, vae_loss=728.6877]
Training: VAE decoder with masked batch labels:  27%|██▋       | 531/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=532/2000, vae_loss=692.8430]
Training: VAE decoder with masked batch labels:  27%|██▋       | 532/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=533/2000, vae_loss=716.2987]
Training: VAE decoder with masked batch labels:  27%|██▋       | 533/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=534/2000, vae_loss=730.8949]
Training: VAE decoder with masked batch labels:  27%|██▋       | 534/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=535/2000, vae_loss=752.0299]
Training: VAE decoder with masked batch labels:  27%|██▋       | 535/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=536/2000, vae_loss=747.9447]
Training: VAE decoder with masked batch labels:  27%|██▋       | 536/2000 [00:07<00:21, 68.28it/s, cycle_loss=0.0000, epoch=537/2000, vae_loss=717.4114]
Training: VAE decoder with masked batch labels:  27%|██▋       | 537/2000 [00:07<00:21, 68.48it/s, cycle_loss=0.0000, epoch=537/2000, vae_loss=717.4114]
Training: VAE decoder with masked batch labels:  27%|██▋       | 537/2000 [00:07<00:21, 68.48it/s, cycle_loss=0.0000, epoch=538/2000, vae_loss=688.9659]
Training: VAE decoder with masked batch labels:  27%|██▋       | 538/2000 [00:07<00:21, 68.48it/s, cycle_loss=0.0000, epoch=539/2000, vae_loss=721.0089]
Training: VAE decoder with masked batch labels:  27%|██▋       | 539/2000 [00:07<00:21, 68.48it/s, cycle_loss=0.0000, epoch=540/2000, vae_loss=738.1213]
Training: VAE decoder with masked batch labels:  27%|██▋       | 540/2000 [00:07<00:21, 68.48it/s, cycle_loss=0.0000, epoch=541/2000, vae_loss=704.8021]
Training: VAE decoder with masked batch labels:  27%|██▋       | 541/2000 [00:07<00:21, 68.48it/s, cycle_loss=0.0000, epoch=542/2000, vae_loss=737.3324]
Training: VAE decoder with masked batch labels:  27%|██▋       | 542/2000 [00:07<00:21, 68.48it/s, cycle_loss=0.0000, epoch=543/2000, vae_loss=738.9073]
Training: VAE decoder with masked batch labels:  27%|██▋       | 543/2000 [00:08<00:21, 68.48it/s, cycle_loss=0.0000, epoch=544/2000, vae_loss=720.2361]
Training: VAE decoder with masked batch labels:  27%|██▋       | 544/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=544/2000, vae_loss=720.2361]
Training: VAE decoder with masked batch labels:  27%|██▋       | 544/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=545/2000, vae_loss=721.4774]
Training: VAE decoder with masked batch labels:  27%|██▋       | 545/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=546/2000, vae_loss=709.5463]
Training: VAE decoder with masked batch labels:  27%|██▋       | 546/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=547/2000, vae_loss=717.1827]
Training: VAE decoder with masked batch labels:  27%|██▋       | 547/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=548/2000, vae_loss=713.5339]
Training: VAE decoder with masked batch labels:  27%|██▋       | 548/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=549/2000, vae_loss=725.4218]
Training: VAE decoder with masked batch labels:  27%|██▋       | 549/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=550/2000, vae_loss=720.0502]
Training: VAE decoder with masked batch labels:  28%|██▊       | 550/2000 [00:08<00:21, 68.47it/s, cycle_loss=0.0000, epoch=551/2000, vae_loss=744.8806]
Training: VAE decoder with masked batch labels:  28%|██▊       | 551/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=551/2000, vae_loss=744.8806]
Training: VAE decoder with masked batch labels:  28%|██▊       | 551/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=552/2000, vae_loss=721.7733]
Training: VAE decoder with masked batch labels:  28%|██▊       | 552/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=553/2000, vae_loss=734.9155]
Training: VAE decoder with masked batch labels:  28%|██▊       | 553/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=554/2000, vae_loss=717.8709]
Training: VAE decoder with masked batch labels:  28%|██▊       | 554/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=555/2000, vae_loss=742.2180]
Training: VAE decoder with masked batch labels:  28%|██▊       | 555/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=556/2000, vae_loss=739.7093]
Training: VAE decoder with masked batch labels:  28%|██▊       | 556/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=557/2000, vae_loss=724.3828]
Training: VAE decoder with masked batch labels:  28%|██▊       | 557/2000 [00:08<00:21, 68.29it/s, cycle_loss=0.0000, epoch=558/2000, vae_loss=740.2878]
Training: VAE decoder with masked batch labels:  28%|██▊       | 558/2000 [00:08<00:21, 68.66it/s, cycle_loss=0.0000, epoch=558/2000, vae_loss=740.2878]
Training: VAE decoder with masked batch labels:  28%|██▊       | 558/2000 [00:08<00:21, 68.66it/s, cycle_loss=0.0000, epoch=559/2000, vae_loss=739.9139]
Training: VAE decoder with masked batch labels:  28%|██▊       | 559/2000 [00:08<00:20, 68.66it/s, cycle_loss=0.0000, epoch=560/2000, vae_loss=744.1760]
Training: VAE decoder with masked batch labels:  28%|██▊       | 560/2000 [00:08<00:20, 68.66it/s, cycle_loss=0.0000, epoch=561/2000, vae_loss=733.0013]
Training: VAE decoder with masked batch labels:  28%|██▊       | 561/2000 [00:08<00:20, 68.66it/s, cycle_loss=0.0000, epoch=562/2000, vae_loss=726.1046]
Training: VAE decoder with masked batch labels:  28%|██▊       | 562/2000 [00:08<00:20, 68.66it/s, cycle_loss=0.0000, epoch=563/2000, vae_loss=746.2731]
Training: VAE decoder with masked batch labels:  28%|██▊       | 563/2000 [00:08<00:20, 68.66it/s, cycle_loss=0.0000, epoch=564/2000, vae_loss=757.7133]
Training: VAE decoder with masked batch labels:  28%|██▊       | 564/2000 [00:08<00:20, 68.66it/s, cycle_loss=0.0000, epoch=565/2000, vae_loss=731.6342]
Training: VAE decoder with masked batch labels:  28%|██▊       | 565/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=565/2000, vae_loss=731.6342]
Training: VAE decoder with masked batch labels:  28%|██▊       | 565/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=566/2000, vae_loss=757.5488]
Training: VAE decoder with masked batch labels:  28%|██▊       | 566/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=567/2000, vae_loss=753.5938]
Training: VAE decoder with masked batch labels:  28%|██▊       | 567/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=568/2000, vae_loss=725.8307]
Training: VAE decoder with masked batch labels:  28%|██▊       | 568/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=569/2000, vae_loss=731.5770]
Training: VAE decoder with masked batch labels:  28%|██▊       | 569/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=570/2000, vae_loss=753.5120]
Training: VAE decoder with masked batch labels:  28%|██▊       | 570/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=571/2000, vae_loss=747.6137]
Training: VAE decoder with masked batch labels:  29%|██▊       | 571/2000 [00:08<00:20, 68.90it/s, cycle_loss=0.0000, epoch=572/2000, vae_loss=730.8577]
Training: VAE decoder with masked batch labels:  29%|██▊       | 572/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=572/2000, vae_loss=730.8577]
Training: VAE decoder with masked batch labels:  29%|██▊       | 572/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=573/2000, vae_loss=785.6044]
Training: VAE decoder with masked batch labels:  29%|██▊       | 573/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=574/2000, vae_loss=733.1476]
Training: VAE decoder with masked batch labels:  29%|██▊       | 574/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=575/2000, vae_loss=765.1891]
Training: VAE decoder with masked batch labels:  29%|██▉       | 575/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=576/2000, vae_loss=730.0577]
Training: VAE decoder with masked batch labels:  29%|██▉       | 576/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=577/2000, vae_loss=778.8781]
Training: VAE decoder with masked batch labels:  29%|██▉       | 577/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=578/2000, vae_loss=733.8569]
Training: VAE decoder with masked batch labels:  29%|██▉       | 578/2000 [00:08<00:20, 69.16it/s, cycle_loss=0.0000, epoch=579/2000, vae_loss=747.3799]
Training: VAE decoder with masked batch labels:  29%|██▉       | 579/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=579/2000, vae_loss=747.3799]
Training: VAE decoder with masked batch labels:  29%|██▉       | 579/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=580/2000, vae_loss=734.5080]
Training: VAE decoder with masked batch labels:  29%|██▉       | 580/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=581/2000, vae_loss=761.0820]
Training: VAE decoder with masked batch labels:  29%|██▉       | 581/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=582/2000, vae_loss=756.1909]
Training: VAE decoder with masked batch labels:  29%|██▉       | 582/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=583/2000, vae_loss=748.4315]
Training: VAE decoder with masked batch labels:  29%|██▉       | 583/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=584/2000, vae_loss=739.2615]
Training: VAE decoder with masked batch labels:  29%|██▉       | 584/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=585/2000, vae_loss=761.8915]
Training: VAE decoder with masked batch labels:  29%|██▉       | 585/2000 [00:08<00:20, 69.24it/s, cycle_loss=0.0000, epoch=586/2000, vae_loss=745.6107]
Training: VAE decoder with masked batch labels:  29%|██▉       | 586/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=586/2000, vae_loss=745.6107]
Training: VAE decoder with masked batch labels:  29%|██▉       | 586/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=587/2000, vae_loss=740.7328]
Training: VAE decoder with masked batch labels:  29%|██▉       | 587/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=588/2000, vae_loss=764.4963]
Training: VAE decoder with masked batch labels:  29%|██▉       | 588/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=589/2000, vae_loss=758.8245]
Training: VAE decoder with masked batch labels:  29%|██▉       | 589/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=590/2000, vae_loss=770.2210]
Training: VAE decoder with masked batch labels:  30%|██▉       | 590/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=591/2000, vae_loss=757.9657]
Training: VAE decoder with masked batch labels:  30%|██▉       | 591/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=592/2000, vae_loss=800.1566]
Training: VAE decoder with masked batch labels:  30%|██▉       | 592/2000 [00:08<00:20, 69.34it/s, cycle_loss=0.0000, epoch=593/2000, vae_loss=770.2996]
Training: VAE decoder with masked batch labels:  30%|██▉       | 593/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=593/2000, vae_loss=770.2996]
Training: VAE decoder with masked batch labels:  30%|██▉       | 593/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=594/2000, vae_loss=742.2434]
Training: VAE decoder with masked batch labels:  30%|██▉       | 594/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=595/2000, vae_loss=773.6970]
Training: VAE decoder with masked batch labels:  30%|██▉       | 595/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=596/2000, vae_loss=754.6287]
Training: VAE decoder with masked batch labels:  30%|██▉       | 596/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=597/2000, vae_loss=748.5330]
Training: VAE decoder with masked batch labels:  30%|██▉       | 597/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=598/2000, vae_loss=768.7457]
Training: VAE decoder with masked batch labels:  30%|██▉       | 598/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=599/2000, vae_loss=780.7661]
Training: VAE decoder with masked batch labels:  30%|██▉       | 599/2000 [00:08<00:20, 69.00it/s, cycle_loss=0.0000, epoch=600/2000, vae_loss=760.4285]
Training: VAE decoder with masked batch labels:  30%|███       | 600/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=600/2000, vae_loss=760.4285]
Training: VAE decoder with masked batch labels:  30%|███       | 600/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=601/2000, vae_loss=750.2797]
Training: VAE decoder with masked batch labels:  30%|███       | 601/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=602/2000, vae_loss=800.1428]
Training: VAE decoder with masked batch labels:  30%|███       | 602/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=603/2000, vae_loss=765.3546]
Training: VAE decoder with masked batch labels:  30%|███       | 603/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=604/2000, vae_loss=745.7339]
Training: VAE decoder with masked batch labels:  30%|███       | 604/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=605/2000, vae_loss=791.8972]
Training: VAE decoder with masked batch labels:  30%|███       | 605/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=606/2000, vae_loss=744.2410]
Training: VAE decoder with masked batch labels:  30%|███       | 606/2000 [00:08<00:20, 69.25it/s, cycle_loss=0.0000, epoch=607/2000, vae_loss=760.5640]
Training: VAE decoder with masked batch labels:  30%|███       | 607/2000 [00:08<00:20, 69.12it/s, cycle_loss=0.0000, epoch=607/2000, vae_loss=760.5640]
Training: VAE decoder with masked batch labels:  30%|███       | 607/2000 [00:08<00:20, 69.12it/s, cycle_loss=0.0000, epoch=608/2000, vae_loss=757.4557]
Training: VAE decoder with masked batch labels:  30%|███       | 608/2000 [00:08<00:20, 69.12it/s, cycle_loss=0.0000, epoch=609/2000, vae_loss=760.6821]
Training: VAE decoder with masked batch labels:  30%|███       | 609/2000 [00:08<00:20, 69.12it/s, cycle_loss=0.0000, epoch=610/2000, vae_loss=740.5604]
Training: VAE decoder with masked batch labels:  30%|███       | 610/2000 [00:08<00:20, 69.12it/s, cycle_loss=0.0000, epoch=611/2000, vae_loss=757.3103]
Training: VAE decoder with masked batch labels:  31%|███       | 611/2000 [00:08<00:20, 69.12it/s, cycle_loss=0.0000, epoch=612/2000, vae_loss=779.8723]
Training: VAE decoder with masked batch labels:  31%|███       | 612/2000 [00:09<00:20, 69.12it/s, cycle_loss=0.0000, epoch=613/2000, vae_loss=788.3865]
Training: VAE decoder with masked batch labels:  31%|███       | 613/2000 [00:09<00:20, 69.12it/s, cycle_loss=0.0000, epoch=614/2000, vae_loss=779.1830]
Training: VAE decoder with masked batch labels:  31%|███       | 614/2000 [00:09<00:20, 69.12it/s, cycle_loss=0.0000, epoch=615/2000, vae_loss=763.8707]
Training: VAE decoder with masked batch labels:  31%|███       | 615/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=615/2000, vae_loss=763.8707]
Training: VAE decoder with masked batch labels:  31%|███       | 615/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=616/2000, vae_loss=788.3375]
Training: VAE decoder with masked batch labels:  31%|███       | 616/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=617/2000, vae_loss=791.6332]
Training: VAE decoder with masked batch labels:  31%|███       | 617/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=618/2000, vae_loss=796.8732]
Training: VAE decoder with masked batch labels:  31%|███       | 618/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=619/2000, vae_loss=783.4662]
Training: VAE decoder with masked batch labels:  31%|███       | 619/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=620/2000, vae_loss=769.2842]
Training: VAE decoder with masked batch labels:  31%|███       | 620/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=621/2000, vae_loss=794.0776]
Training: VAE decoder with masked batch labels:  31%|███       | 621/2000 [00:09<00:19, 69.41it/s, cycle_loss=0.0000, epoch=622/2000, vae_loss=800.1097]
Training: VAE decoder with masked batch labels:  31%|███       | 622/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=622/2000, vae_loss=800.1097]
Training: VAE decoder with masked batch labels:  31%|███       | 622/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=623/2000, vae_loss=793.1880]
Training: VAE decoder with masked batch labels:  31%|███       | 623/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=624/2000, vae_loss=773.1582]
Training: VAE decoder with masked batch labels:  31%|███       | 624/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=625/2000, vae_loss=776.3903]
Training: VAE decoder with masked batch labels:  31%|███▏      | 625/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=626/2000, vae_loss=793.0804]
Training: VAE decoder with masked batch labels:  31%|███▏      | 626/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=627/2000, vae_loss=809.8550]
Training: VAE decoder with masked batch labels:  31%|███▏      | 627/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=628/2000, vae_loss=811.3641]
Training: VAE decoder with masked batch labels:  31%|███▏      | 628/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=629/2000, vae_loss=800.3433]
Training: VAE decoder with masked batch labels:  31%|███▏      | 629/2000 [00:09<00:19, 69.35it/s, cycle_loss=0.0000, epoch=630/2000, vae_loss=797.9531]
Training: VAE decoder with masked batch labels:  32%|███▏      | 630/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=630/2000, vae_loss=797.9531]
Training: VAE decoder with masked batch labels:  32%|███▏      | 630/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=631/2000, vae_loss=785.6627]
Training: VAE decoder with masked batch labels:  32%|███▏      | 631/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=632/2000, vae_loss=803.8219]
Training: VAE decoder with masked batch labels:  32%|███▏      | 632/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=633/2000, vae_loss=795.6168]
Training: VAE decoder with masked batch labels:  32%|███▏      | 633/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=634/2000, vae_loss=791.4214]
Training: VAE decoder with masked batch labels:  32%|███▏      | 634/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=635/2000, vae_loss=846.1400]
Training: VAE decoder with masked batch labels:  32%|███▏      | 635/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=636/2000, vae_loss=810.9366]
Training: VAE decoder with masked batch labels:  32%|███▏      | 636/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=637/2000, vae_loss=796.2711]
Training: VAE decoder with masked batch labels:  32%|███▏      | 637/2000 [00:09<00:19, 69.54it/s, cycle_loss=0.0000, epoch=638/2000, vae_loss=814.7279]
Training: VAE decoder with masked batch labels:  32%|███▏      | 638/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=638/2000, vae_loss=814.7279]
Training: VAE decoder with masked batch labels:  32%|███▏      | 638/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=639/2000, vae_loss=811.5206]
Training: VAE decoder with masked batch labels:  32%|███▏      | 639/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=640/2000, vae_loss=846.2811]
Training: VAE decoder with masked batch labels:  32%|███▏      | 640/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=641/2000, vae_loss=812.3304]
Training: VAE decoder with masked batch labels:  32%|███▏      | 641/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=642/2000, vae_loss=791.2842]
Training: VAE decoder with masked batch labels:  32%|███▏      | 642/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=643/2000, vae_loss=820.9821]
Training: VAE decoder with masked batch labels:  32%|███▏      | 643/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=644/2000, vae_loss=823.7385]
Training: VAE decoder with masked batch labels:  32%|███▏      | 644/2000 [00:09<00:19, 69.74it/s, cycle_loss=0.0000, epoch=645/2000, vae_loss=840.9389]
Training: VAE decoder with masked batch labels:  32%|███▏      | 645/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=645/2000, vae_loss=840.9389]
Training: VAE decoder with masked batch labels:  32%|███▏      | 645/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=646/2000, vae_loss=822.9734]
Training: VAE decoder with masked batch labels:  32%|███▏      | 646/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=647/2000, vae_loss=817.4111]
Training: VAE decoder with masked batch labels:  32%|███▏      | 647/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=648/2000, vae_loss=790.5947]
Training: VAE decoder with masked batch labels:  32%|███▏      | 648/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=649/2000, vae_loss=782.6891]
Training: VAE decoder with masked batch labels:  32%|███▏      | 649/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=650/2000, vae_loss=812.4138]
Training: VAE decoder with masked batch labels:  32%|███▎      | 650/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=651/2000, vae_loss=851.2014]
Training: VAE decoder with masked batch labels:  33%|███▎      | 651/2000 [00:09<00:19, 69.42it/s, cycle_loss=0.0000, epoch=652/2000, vae_loss=844.2659]
Training: VAE decoder with masked batch labels:  33%|███▎      | 652/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=652/2000, vae_loss=844.2659]
Training: VAE decoder with masked batch labels:  33%|███▎      | 652/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=653/2000, vae_loss=833.5207]
Training: VAE decoder with masked batch labels:  33%|███▎      | 653/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=654/2000, vae_loss=807.5016]
Training: VAE decoder with masked batch labels:  33%|███▎      | 654/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=655/2000, vae_loss=834.4335]
Training: VAE decoder with masked batch labels:  33%|███▎      | 655/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=656/2000, vae_loss=839.2919]
Training: VAE decoder with masked batch labels:  33%|███▎      | 656/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=657/2000, vae_loss=814.4915]
Training: VAE decoder with masked batch labels:  33%|███▎      | 657/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=658/2000, vae_loss=829.2966]
Training: VAE decoder with masked batch labels:  33%|███▎      | 658/2000 [00:09<00:19, 68.98it/s, cycle_loss=0.0000, epoch=659/2000, vae_loss=844.7369]
Training: VAE decoder with masked batch labels:  33%|███▎      | 659/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=659/2000, vae_loss=844.7369]
Training: VAE decoder with masked batch labels:  33%|███▎      | 659/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=660/2000, vae_loss=837.6421]
Training: VAE decoder with masked batch labels:  33%|███▎      | 660/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=661/2000, vae_loss=832.0453]
Training: VAE decoder with masked batch labels:  33%|███▎      | 661/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=662/2000, vae_loss=849.7686]
Training: VAE decoder with masked batch labels:  33%|███▎      | 662/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=663/2000, vae_loss=835.0055]
Training: VAE decoder with masked batch labels:  33%|███▎      | 663/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=664/2000, vae_loss=821.7292]
Training: VAE decoder with masked batch labels:  33%|███▎      | 664/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=665/2000, vae_loss=864.0912]
Training: VAE decoder with masked batch labels:  33%|███▎      | 665/2000 [00:09<00:19, 69.12it/s, cycle_loss=0.0000, epoch=666/2000, vae_loss=816.7043]
Training: VAE decoder with masked batch labels:  33%|███▎      | 666/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=666/2000, vae_loss=816.7043]
Training: VAE decoder with masked batch labels:  33%|███▎      | 666/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=667/2000, vae_loss=804.6085]
Training: VAE decoder with masked batch labels:  33%|███▎      | 667/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=668/2000, vae_loss=855.8433]
Training: VAE decoder with masked batch labels:  33%|███▎      | 668/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=669/2000, vae_loss=809.6541]
Training: VAE decoder with masked batch labels:  33%|███▎      | 669/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=670/2000, vae_loss=822.0536]
Training: VAE decoder with masked batch labels:  34%|███▎      | 670/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=671/2000, vae_loss=809.8914]
Training: VAE decoder with masked batch labels:  34%|███▎      | 671/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=672/2000, vae_loss=902.6797]
Training: VAE decoder with masked batch labels:  34%|███▎      | 672/2000 [00:09<00:19, 68.10it/s, cycle_loss=0.0000, epoch=673/2000, vae_loss=842.3144]
Training: VAE decoder with masked batch labels:  34%|███▎      | 673/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=673/2000, vae_loss=842.3144]
Training: VAE decoder with masked batch labels:  34%|███▎      | 673/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=674/2000, vae_loss=828.9895]
Training: VAE decoder with masked batch labels:  34%|███▎      | 674/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=675/2000, vae_loss=848.4977]
Training: VAE decoder with masked batch labels:  34%|███▍      | 675/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=676/2000, vae_loss=842.4442]
Training: VAE decoder with masked batch labels:  34%|███▍      | 676/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=677/2000, vae_loss=832.4321]
Training: VAE decoder with masked batch labels:  34%|███▍      | 677/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=678/2000, vae_loss=834.3389]
Training: VAE decoder with masked batch labels:  34%|███▍      | 678/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=679/2000, vae_loss=856.6342]
Training: VAE decoder with masked batch labels:  34%|███▍      | 679/2000 [00:09<00:19, 68.15it/s, cycle_loss=0.0000, epoch=680/2000, vae_loss=871.3558]
Training: VAE decoder with masked batch labels:  34%|███▍      | 680/2000 [00:09<00:19, 68.27it/s, cycle_loss=0.0000, epoch=680/2000, vae_loss=871.3558]
Training: VAE decoder with masked batch labels:  34%|███▍      | 680/2000 [00:09<00:19, 68.27it/s, cycle_loss=0.0000, epoch=681/2000, vae_loss=871.5200]
Training: VAE decoder with masked batch labels:  34%|███▍      | 681/2000 [00:10<00:19, 68.27it/s, cycle_loss=0.0000, epoch=682/2000, vae_loss=871.9498]
Training: VAE decoder with masked batch labels:  34%|███▍      | 682/2000 [00:10<00:19, 68.27it/s, cycle_loss=0.0000, epoch=683/2000, vae_loss=863.3217]
Training: VAE decoder with masked batch labels:  34%|███▍      | 683/2000 [00:10<00:19, 68.27it/s, cycle_loss=0.0000, epoch=684/2000, vae_loss=826.9793]
Training: VAE decoder with masked batch labels:  34%|███▍      | 684/2000 [00:10<00:19, 68.27it/s, cycle_loss=0.0000, epoch=685/2000, vae_loss=817.0142]
Training: VAE decoder with masked batch labels:  34%|███▍      | 685/2000 [00:10<00:19, 68.27it/s, cycle_loss=0.0000, epoch=686/2000, vae_loss=825.7772]
Training: VAE decoder with masked batch labels:  34%|███▍      | 686/2000 [00:10<00:19, 68.27it/s, cycle_loss=0.0000, epoch=687/2000, vae_loss=863.4814]
Training: VAE decoder with masked batch labels:  34%|███▍      | 687/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=687/2000, vae_loss=863.4814]
Training: VAE decoder with masked batch labels:  34%|███▍      | 687/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=688/2000, vae_loss=833.2627]
Training: VAE decoder with masked batch labels:  34%|███▍      | 688/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=689/2000, vae_loss=881.3712]
Training: VAE decoder with masked batch labels:  34%|███▍      | 689/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=690/2000, vae_loss=858.3268]
Training: VAE decoder with masked batch labels:  34%|███▍      | 690/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=691/2000, vae_loss=837.7432]
Training: VAE decoder with masked batch labels:  35%|███▍      | 691/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=692/2000, vae_loss=880.2447]
Training: VAE decoder with masked batch labels:  35%|███▍      | 692/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=693/2000, vae_loss=858.6832]
Training: VAE decoder with masked batch labels:  35%|███▍      | 693/2000 [00:10<00:19, 68.60it/s, cycle_loss=0.0000, epoch=694/2000, vae_loss=885.2783]
Training: VAE decoder with masked batch labels:  35%|███▍      | 694/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=694/2000, vae_loss=885.2783]
Training: VAE decoder with masked batch labels:  35%|███▍      | 694/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=695/2000, vae_loss=883.7339]
Training: VAE decoder with masked batch labels:  35%|███▍      | 695/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=696/2000, vae_loss=877.6589]
Training: VAE decoder with masked batch labels:  35%|███▍      | 696/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=697/2000, vae_loss=862.2529]
Training: VAE decoder with masked batch labels:  35%|███▍      | 697/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=698/2000, vae_loss=880.4274]
Training: VAE decoder with masked batch labels:  35%|███▍      | 698/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=699/2000, vae_loss=880.1229]
Training: VAE decoder with masked batch labels:  35%|███▍      | 699/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=700/2000, vae_loss=891.8522]
Training: VAE decoder with masked batch labels:  35%|███▌      | 700/2000 [00:10<00:19, 68.31it/s, cycle_loss=0.0000, epoch=701/2000, vae_loss=860.1837]
Training: VAE decoder with masked batch labels:  35%|███▌      | 701/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=701/2000, vae_loss=860.1837]
Training: VAE decoder with masked batch labels:  35%|███▌      | 701/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=702/2000, vae_loss=887.4169]
Training: VAE decoder with masked batch labels:  35%|███▌      | 702/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=703/2000, vae_loss=882.1695]
Training: VAE decoder with masked batch labels:  35%|███▌      | 703/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=704/2000, vae_loss=905.6465]
Training: VAE decoder with masked batch labels:  35%|███▌      | 704/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=705/2000, vae_loss=887.6678]
Training: VAE decoder with masked batch labels:  35%|███▌      | 705/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=706/2000, vae_loss=887.6813]
Training: VAE decoder with masked batch labels:  35%|███▌      | 706/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=707/2000, vae_loss=910.9220]
Training: VAE decoder with masked batch labels:  35%|███▌      | 707/2000 [00:10<00:18, 68.66it/s, cycle_loss=0.0000, epoch=708/2000, vae_loss=901.4675]
Training: VAE decoder with masked batch labels:  35%|███▌      | 708/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=708/2000, vae_loss=901.4675]
Training: VAE decoder with masked batch labels:  35%|███▌      | 708/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=709/2000, vae_loss=909.5471]
Training: VAE decoder with masked batch labels:  35%|███▌      | 709/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=710/2000, vae_loss=900.0899]
Training: VAE decoder with masked batch labels:  36%|███▌      | 710/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=711/2000, vae_loss=885.2531]
Training: VAE decoder with masked batch labels:  36%|███▌      | 711/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=712/2000, vae_loss=883.0317]
Training: VAE decoder with masked batch labels:  36%|███▌      | 712/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=713/2000, vae_loss=888.4480]
Training: VAE decoder with masked batch labels:  36%|███▌      | 713/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=714/2000, vae_loss=919.3719]
Training: VAE decoder with masked batch labels:  36%|███▌      | 714/2000 [00:10<00:18, 69.04it/s, cycle_loss=0.0000, epoch=715/2000, vae_loss=876.4390]
Training: VAE decoder with masked batch labels:  36%|███▌      | 715/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=715/2000, vae_loss=876.4390]
Training: VAE decoder with masked batch labels:  36%|███▌      | 715/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=716/2000, vae_loss=916.6943]
Training: VAE decoder with masked batch labels:  36%|███▌      | 716/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=717/2000, vae_loss=901.5623]
Training: VAE decoder with masked batch labels:  36%|███▌      | 717/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=718/2000, vae_loss=903.7804]
Training: VAE decoder with masked batch labels:  36%|███▌      | 718/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=719/2000, vae_loss=897.6356]
Training: VAE decoder with masked batch labels:  36%|███▌      | 719/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=720/2000, vae_loss=897.7990]
Training: VAE decoder with masked batch labels:  36%|███▌      | 720/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=721/2000, vae_loss=909.7847]
Training: VAE decoder with masked batch labels:  36%|███▌      | 721/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=722/2000, vae_loss=906.7197]
Training: VAE decoder with masked batch labels:  36%|███▌      | 722/2000 [00:10<00:18, 68.97it/s, cycle_loss=0.0000, epoch=723/2000, vae_loss=875.9781]
Training: VAE decoder with masked batch labels:  36%|███▌      | 723/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=723/2000, vae_loss=875.9781]
Training: VAE decoder with masked batch labels:  36%|███▌      | 723/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=724/2000, vae_loss=923.7258]
Training: VAE decoder with masked batch labels:  36%|███▌      | 724/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=725/2000, vae_loss=910.4835]
Training: VAE decoder with masked batch labels:  36%|███▋      | 725/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=726/2000, vae_loss=920.8949]
Training: VAE decoder with masked batch labels:  36%|███▋      | 726/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=727/2000, vae_loss=926.7662]
Training: VAE decoder with masked batch labels:  36%|███▋      | 727/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=728/2000, vae_loss=920.8495]
Training: VAE decoder with masked batch labels:  36%|███▋      | 728/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=729/2000, vae_loss=913.1978]
Training: VAE decoder with masked batch labels:  36%|███▋      | 729/2000 [00:10<00:18, 69.87it/s, cycle_loss=0.0000, epoch=730/2000, vae_loss=907.3776]
Training: VAE decoder with masked batch labels:  36%|███▋      | 730/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=730/2000, vae_loss=907.3776]
Training: VAE decoder with masked batch labels:  36%|███▋      | 730/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=731/2000, vae_loss=895.4675]
Training: VAE decoder with masked batch labels:  37%|███▋      | 731/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=732/2000, vae_loss=967.6899]
Training: VAE decoder with masked batch labels:  37%|███▋      | 732/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=733/2000, vae_loss=929.3889]
Training: VAE decoder with masked batch labels:  37%|███▋      | 733/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=734/2000, vae_loss=898.6163]
Training: VAE decoder with masked batch labels:  37%|███▋      | 734/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=735/2000, vae_loss=917.8015]
Training: VAE decoder with masked batch labels:  37%|███▋      | 735/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=736/2000, vae_loss=914.2677]
Training: VAE decoder with masked batch labels:  37%|███▋      | 736/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=737/2000, vae_loss=942.0177]
Training: VAE decoder with masked batch labels:  37%|███▋      | 737/2000 [00:10<00:18, 69.83it/s, cycle_loss=0.0000, epoch=738/2000, vae_loss=901.9034]
Training: VAE decoder with masked batch labels:  37%|███▋      | 738/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=738/2000, vae_loss=901.9034]
Training: VAE decoder with masked batch labels:  37%|███▋      | 738/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=739/2000, vae_loss=920.3185]
Training: VAE decoder with masked batch labels:  37%|███▋      | 739/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=740/2000, vae_loss=901.6240]
Training: VAE decoder with masked batch labels:  37%|███▋      | 740/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=741/2000, vae_loss=933.6586]
Training: VAE decoder with masked batch labels:  37%|███▋      | 741/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=742/2000, vae_loss=935.3631]
Training: VAE decoder with masked batch labels:  37%|███▋      | 742/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=743/2000, vae_loss=938.7961]
Training: VAE decoder with masked batch labels:  37%|███▋      | 743/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=744/2000, vae_loss=971.4036]
Training: VAE decoder with masked batch labels:  37%|███▋      | 744/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=745/2000, vae_loss=949.8997]
Training: VAE decoder with masked batch labels:  37%|███▋      | 745/2000 [00:10<00:17, 70.50it/s, cycle_loss=0.0000, epoch=746/2000, vae_loss=939.1682]
Training: VAE decoder with masked batch labels:  37%|███▋      | 746/2000 [00:10<00:17, 70.59it/s, cycle_loss=0.0000, epoch=746/2000, vae_loss=939.1682]
Training: VAE decoder with masked batch labels:  37%|███▋      | 746/2000 [00:10<00:17, 70.59it/s, cycle_loss=0.0000, epoch=747/2000, vae_loss=927.2680]
Training: VAE decoder with masked batch labels:  37%|███▋      | 747/2000 [00:10<00:17, 70.59it/s, cycle_loss=0.0000, epoch=748/2000, vae_loss=924.7154]
Training: VAE decoder with masked batch labels:  37%|███▋      | 748/2000 [00:10<00:17, 70.59it/s, cycle_loss=0.0000, epoch=749/2000, vae_loss=932.3976]
Training: VAE decoder with masked batch labels:  37%|███▋      | 749/2000 [00:10<00:17, 70.59it/s, cycle_loss=0.0000, epoch=750/2000, vae_loss=951.2619]
Training: VAE decoder with masked batch labels:  38%|███▊      | 750/2000 [00:10<00:17, 70.59it/s, cycle_loss=0.0000, epoch=751/2000, vae_loss=931.9693]
Training: VAE decoder with masked batch labels:  38%|███▊      | 751/2000 [00:11<00:17, 70.59it/s, cycle_loss=0.0000, epoch=752/2000, vae_loss=952.7249]
Training: VAE decoder with masked batch labels:  38%|███▊      | 752/2000 [00:11<00:17, 70.59it/s, cycle_loss=0.0000, epoch=753/2000, vae_loss=932.4068]
Training: VAE decoder with masked batch labels:  38%|███▊      | 753/2000 [00:11<00:17, 70.59it/s, cycle_loss=0.0000, epoch=754/2000, vae_loss=949.6116]
Training: VAE decoder with masked batch labels:  38%|███▊      | 754/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=754/2000, vae_loss=949.6116]
Training: VAE decoder with masked batch labels:  38%|███▊      | 754/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=755/2000, vae_loss=917.3225]
Training: VAE decoder with masked batch labels:  38%|███▊      | 755/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=756/2000, vae_loss=956.9637]
Training: VAE decoder with masked batch labels:  38%|███▊      | 756/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=757/2000, vae_loss=960.2742]
Training: VAE decoder with masked batch labels:  38%|███▊      | 757/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=758/2000, vae_loss=978.9246]
Training: VAE decoder with masked batch labels:  38%|███▊      | 758/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=759/2000, vae_loss=941.4736]
Training: VAE decoder with masked batch labels:  38%|███▊      | 759/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=760/2000, vae_loss=992.2298]
Training: VAE decoder with masked batch labels:  38%|███▊      | 760/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=761/2000, vae_loss=978.9192]
Training: VAE decoder with masked batch labels:  38%|███▊      | 761/2000 [00:11<00:17, 70.79it/s, cycle_loss=0.0000, epoch=762/2000, vae_loss=986.6891]
Training: VAE decoder with masked batch labels:  38%|███▊      | 762/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=762/2000, vae_loss=986.6891]
Training: VAE decoder with masked batch labels:  38%|███▊      | 762/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=763/2000, vae_loss=951.7742]
Training: VAE decoder with masked batch labels:  38%|███▊      | 763/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=764/2000, vae_loss=1000.0625]
Training: VAE decoder with masked batch labels:  38%|███▊      | 764/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=765/2000, vae_loss=929.1263]
Training: VAE decoder with masked batch labels:  38%|███▊      | 765/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=766/2000, vae_loss=989.2452]
Training: VAE decoder with masked batch labels:  38%|███▊      | 766/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=767/2000, vae_loss=948.8271]
Training: VAE decoder with masked batch labels:  38%|███▊      | 767/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=768/2000, vae_loss=966.7303]
Training: VAE decoder with masked batch labels:  38%|███▊      | 768/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=769/2000, vae_loss=987.4326]
Training: VAE decoder with masked batch labels:  38%|███▊      | 769/2000 [00:11<00:17, 70.81it/s, cycle_loss=0.0000, epoch=770/2000, vae_loss=955.3839]
Training: VAE decoder with masked batch labels:  38%|███▊      | 770/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=770/2000, vae_loss=955.3839]
Training: VAE decoder with masked batch labels:  38%|███▊      | 770/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=771/2000, vae_loss=1007.1091]
Training: VAE decoder with masked batch labels:  39%|███▊      | 771/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=772/2000, vae_loss=988.0364]
Training: VAE decoder with masked batch labels:  39%|███▊      | 772/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=773/2000, vae_loss=986.7889]
Training: VAE decoder with masked batch labels:  39%|███▊      | 773/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=774/2000, vae_loss=979.4387]
Training: VAE decoder with masked batch labels:  39%|███▊      | 774/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=775/2000, vae_loss=995.8825]
Training: VAE decoder with masked batch labels:  39%|███▉      | 775/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=776/2000, vae_loss=1011.7020]
Training: VAE decoder with masked batch labels:  39%|███▉      | 776/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=777/2000, vae_loss=1001.5603]
Training: VAE decoder with masked batch labels:  39%|███▉      | 777/2000 [00:11<00:17, 70.45it/s, cycle_loss=0.0000, epoch=778/2000, vae_loss=984.1046]
Training: VAE decoder with masked batch labels:  39%|███▉      | 778/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=778/2000, vae_loss=984.1046]
Training: VAE decoder with masked batch labels:  39%|███▉      | 778/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=779/2000, vae_loss=1030.5999]
Training: VAE decoder with masked batch labels:  39%|███▉      | 779/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=780/2000, vae_loss=966.5209]
Training: VAE decoder with masked batch labels:  39%|███▉      | 780/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=781/2000, vae_loss=1008.5924]
Training: VAE decoder with masked batch labels:  39%|███▉      | 781/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=782/2000, vae_loss=1000.2301]
Training: VAE decoder with masked batch labels:  39%|███▉      | 782/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=783/2000, vae_loss=999.1073]
Training: VAE decoder with masked batch labels:  39%|███▉      | 783/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=784/2000, vae_loss=1004.4829]
Training: VAE decoder with masked batch labels:  39%|███▉      | 784/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=785/2000, vae_loss=992.9800]
Training: VAE decoder with masked batch labels:  39%|███▉      | 785/2000 [00:11<00:17, 70.20it/s, cycle_loss=0.0000, epoch=786/2000, vae_loss=986.4079]
Training: VAE decoder with masked batch labels:  39%|███▉      | 786/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=786/2000, vae_loss=986.4079]
Training: VAE decoder with masked batch labels:  39%|███▉      | 786/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=787/2000, vae_loss=1017.9360]
Training: VAE decoder with masked batch labels:  39%|███▉      | 787/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=788/2000, vae_loss=996.4182]
Training: VAE decoder with masked batch labels:  39%|███▉      | 788/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=789/2000, vae_loss=959.7811]
Training: VAE decoder with masked batch labels:  39%|███▉      | 789/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=790/2000, vae_loss=1031.4656]
Training: VAE decoder with masked batch labels:  40%|███▉      | 790/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=791/2000, vae_loss=1023.3628]
Training: VAE decoder with masked batch labels:  40%|███▉      | 791/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=792/2000, vae_loss=979.0506]
Training: VAE decoder with masked batch labels:  40%|███▉      | 792/2000 [00:11<00:17, 69.54it/s, cycle_loss=0.0000, epoch=793/2000, vae_loss=999.4924]
Training: VAE decoder with masked batch labels:  40%|███▉      | 793/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=793/2000, vae_loss=999.4924]
Training: VAE decoder with masked batch labels:  40%|███▉      | 793/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=794/2000, vae_loss=1028.2183]
Training: VAE decoder with masked batch labels:  40%|███▉      | 794/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=795/2000, vae_loss=988.7192]
Training: VAE decoder with masked batch labels:  40%|███▉      | 795/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=796/2000, vae_loss=1024.7129]
Training: VAE decoder with masked batch labels:  40%|███▉      | 796/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=797/2000, vae_loss=1000.2767]
Training: VAE decoder with masked batch labels:  40%|███▉      | 797/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=798/2000, vae_loss=1021.0627]
Training: VAE decoder with masked batch labels:  40%|███▉      | 798/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=799/2000, vae_loss=1009.0772]
Training: VAE decoder with masked batch labels:  40%|███▉      | 799/2000 [00:11<00:17, 69.21it/s, cycle_loss=0.0000, epoch=800/2000, vae_loss=1050.4669]
Training: VAE decoder with masked batch labels:  40%|████      | 800/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=800/2000, vae_loss=1050.4669]
Training: VAE decoder with masked batch labels:  40%|████      | 800/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=801/2000, vae_loss=994.0167]
Training: VAE decoder with masked batch labels:  40%|████      | 801/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=802/2000, vae_loss=1031.5182]
Training: VAE decoder with masked batch labels:  40%|████      | 802/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=803/2000, vae_loss=1022.1305]
Training: VAE decoder with masked batch labels:  40%|████      | 803/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=804/2000, vae_loss=1047.8600]
Training: VAE decoder with masked batch labels:  40%|████      | 804/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=805/2000, vae_loss=1047.1365]
Training: VAE decoder with masked batch labels:  40%|████      | 805/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=806/2000, vae_loss=1019.1708]
Training: VAE decoder with masked batch labels:  40%|████      | 806/2000 [00:11<00:17, 69.18it/s, cycle_loss=0.0000, epoch=807/2000, vae_loss=1067.6838]
Training: VAE decoder with masked batch labels:  40%|████      | 807/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=807/2000, vae_loss=1067.6838]
Training: VAE decoder with masked batch labels:  40%|████      | 807/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=808/2000, vae_loss=989.6105]
Training: VAE decoder with masked batch labels:  40%|████      | 808/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=809/2000, vae_loss=1069.3314]
Training: VAE decoder with masked batch labels:  40%|████      | 809/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=810/2000, vae_loss=1020.1974]
Training: VAE decoder with masked batch labels:  40%|████      | 810/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=811/2000, vae_loss=1046.6677]
Training: VAE decoder with masked batch labels:  41%|████      | 811/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=812/2000, vae_loss=1020.6860]
Training: VAE decoder with masked batch labels:  41%|████      | 812/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=813/2000, vae_loss=1047.4365]
Training: VAE decoder with masked batch labels:  41%|████      | 813/2000 [00:11<00:17, 68.28it/s, cycle_loss=0.0000, epoch=814/2000, vae_loss=1020.1573]
Training: VAE decoder with masked batch labels:  41%|████      | 814/2000 [00:11<00:17, 68.61it/s, cycle_loss=0.0000, epoch=814/2000, vae_loss=1020.1573]
Training: VAE decoder with masked batch labels:  41%|████      | 814/2000 [00:11<00:17, 68.61it/s, cycle_loss=0.0000, epoch=815/2000, vae_loss=1076.6332]
Training: VAE decoder with masked batch labels:  41%|████      | 815/2000 [00:11<00:17, 68.61it/s, cycle_loss=0.0000, epoch=816/2000, vae_loss=1052.2328]
Training: VAE decoder with masked batch labels:  41%|████      | 816/2000 [00:11<00:17, 68.61it/s, cycle_loss=0.0000, epoch=817/2000, vae_loss=1006.5301]
Training: VAE decoder with masked batch labels:  41%|████      | 817/2000 [00:11<00:17, 68.61it/s, cycle_loss=0.0000, epoch=818/2000, vae_loss=1044.9548]
Training: VAE decoder with masked batch labels:  41%|████      | 818/2000 [00:11<00:17, 68.61it/s, cycle_loss=0.0000, epoch=819/2000, vae_loss=1049.6036]
Training: VAE decoder with masked batch labels:  41%|████      | 819/2000 [00:11<00:17, 68.61it/s, cycle_loss=0.0000, epoch=820/2000, vae_loss=1030.7863]
Training: VAE decoder with masked batch labels:  41%|████      | 820/2000 [00:12<00:17, 68.61it/s, cycle_loss=0.0000, epoch=821/2000, vae_loss=1036.0347]
Training: VAE decoder with masked batch labels:  41%|████      | 821/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=821/2000, vae_loss=1036.0347]
Training: VAE decoder with masked batch labels:  41%|████      | 821/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=822/2000, vae_loss=1059.4517]
Training: VAE decoder with masked batch labels:  41%|████      | 822/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=823/2000, vae_loss=1070.1737]
Training: VAE decoder with masked batch labels:  41%|████      | 823/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=824/2000, vae_loss=1016.9794]
Training: VAE decoder with masked batch labels:  41%|████      | 824/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=825/2000, vae_loss=1066.4989]
Training: VAE decoder with masked batch labels:  41%|████▏     | 825/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=826/2000, vae_loss=1111.2688]
Training: VAE decoder with masked batch labels:  41%|████▏     | 826/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=827/2000, vae_loss=1086.2731]
Training: VAE decoder with masked batch labels:  41%|████▏     | 827/2000 [00:12<00:17, 68.46it/s, cycle_loss=0.0000, epoch=828/2000, vae_loss=1064.6583]
Training: VAE decoder with masked batch labels:  41%|████▏     | 828/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=828/2000, vae_loss=1064.6583]
Training: VAE decoder with masked batch labels:  41%|████▏     | 828/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=829/2000, vae_loss=1029.5181]
Training: VAE decoder with masked batch labels:  41%|████▏     | 829/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=830/2000, vae_loss=1056.6727]
Training: VAE decoder with masked batch labels:  42%|████▏     | 830/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=831/2000, vae_loss=1034.5227]
Training: VAE decoder with masked batch labels:  42%|████▏     | 831/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=832/2000, vae_loss=1074.5846]
Training: VAE decoder with masked batch labels:  42%|████▏     | 832/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=833/2000, vae_loss=1083.2825]
Training: VAE decoder with masked batch labels:  42%|████▏     | 833/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=834/2000, vae_loss=1099.7241]
Training: VAE decoder with masked batch labels:  42%|████▏     | 834/2000 [00:12<00:17, 68.34it/s, cycle_loss=0.0000, epoch=835/2000, vae_loss=1061.2919]
Training: VAE decoder with masked batch labels:  42%|████▏     | 835/2000 [00:12<00:17, 68.42it/s, cycle_loss=0.0000, epoch=835/2000, vae_loss=1061.2919]
Training: VAE decoder with masked batch labels:  42%|████▏     | 835/2000 [00:12<00:17, 68.42it/s, cycle_loss=0.0000, epoch=836/2000, vae_loss=1099.9523]
Training: VAE decoder with masked batch labels:  42%|████▏     | 836/2000 [00:12<00:17, 68.42it/s, cycle_loss=0.0000, epoch=837/2000, vae_loss=1070.3500]
Training: VAE decoder with masked batch labels:  42%|████▏     | 837/2000 [00:12<00:16, 68.42it/s, cycle_loss=0.0000, epoch=838/2000, vae_loss=1105.9612]
Training: VAE decoder with masked batch labels:  42%|████▏     | 838/2000 [00:12<00:16, 68.42it/s, cycle_loss=0.0000, epoch=839/2000, vae_loss=1107.0270]
Training: VAE decoder with masked batch labels:  42%|████▏     | 839/2000 [00:12<00:16, 68.42it/s, cycle_loss=0.0000, epoch=840/2000, vae_loss=1093.3895]
Training: VAE decoder with masked batch labels:  42%|████▏     | 840/2000 [00:12<00:16, 68.42it/s, cycle_loss=0.0000, epoch=841/2000, vae_loss=1108.9375]
Training: VAE decoder with masked batch labels:  42%|████▏     | 841/2000 [00:12<00:16, 68.42it/s, cycle_loss=0.0000, epoch=842/2000, vae_loss=1142.7838]
Training: VAE decoder with masked batch labels:  42%|████▏     | 842/2000 [00:12<00:16, 68.42it/s, cycle_loss=0.0000, epoch=843/2000, vae_loss=1114.9982]
Training: VAE decoder with masked batch labels:  42%|████▏     | 843/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=843/2000, vae_loss=1114.9982]
Training: VAE decoder with masked batch labels:  42%|████▏     | 843/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=844/2000, vae_loss=1105.2821]
Training: VAE decoder with masked batch labels:  42%|████▏     | 844/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=845/2000, vae_loss=1102.9598]
Training: VAE decoder with masked batch labels:  42%|████▏     | 845/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=846/2000, vae_loss=1045.5649]
Training: VAE decoder with masked batch labels:  42%|████▏     | 846/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=847/2000, vae_loss=1134.8020]
Training: VAE decoder with masked batch labels:  42%|████▏     | 847/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=848/2000, vae_loss=1153.4731]
Training: VAE decoder with masked batch labels:  42%|████▏     | 848/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=849/2000, vae_loss=1166.0387]
Training: VAE decoder with masked batch labels:  42%|████▏     | 849/2000 [00:12<00:16, 69.11it/s, cycle_loss=0.0000, epoch=850/2000, vae_loss=1121.8695]
Training: VAE decoder with masked batch labels:  42%|████▎     | 850/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=850/2000, vae_loss=1121.8695]
Training: VAE decoder with masked batch labels:  42%|████▎     | 850/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=851/2000, vae_loss=1180.0913]
Training: VAE decoder with masked batch labels:  43%|████▎     | 851/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=852/2000, vae_loss=1085.4186]
Training: VAE decoder with masked batch labels:  43%|████▎     | 852/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=853/2000, vae_loss=1123.8862]
Training: VAE decoder with masked batch labels:  43%|████▎     | 853/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=854/2000, vae_loss=1111.2476]
Training: VAE decoder with masked batch labels:  43%|████▎     | 854/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=855/2000, vae_loss=1268.5339]
Training: VAE decoder with masked batch labels:  43%|████▎     | 855/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=856/2000, vae_loss=1160.2789]
Training: VAE decoder with masked batch labels:  43%|████▎     | 856/2000 [00:12<00:16, 69.21it/s, cycle_loss=0.0000, epoch=857/2000, vae_loss=1104.5940]
Training: VAE decoder with masked batch labels:  43%|████▎     | 857/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=857/2000, vae_loss=1104.5940]
Training: VAE decoder with masked batch labels:  43%|████▎     | 857/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=858/2000, vae_loss=1114.9882]
Training: VAE decoder with masked batch labels:  43%|████▎     | 858/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=859/2000, vae_loss=1101.9047]
Training: VAE decoder with masked batch labels:  43%|████▎     | 859/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=860/2000, vae_loss=1147.6602]
Training: VAE decoder with masked batch labels:  43%|████▎     | 860/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=861/2000, vae_loss=1120.2542]
Training: VAE decoder with masked batch labels:  43%|████▎     | 861/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=862/2000, vae_loss=1128.2421]
Training: VAE decoder with masked batch labels:  43%|████▎     | 862/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=863/2000, vae_loss=1140.4421]
Training: VAE decoder with masked batch labels:  43%|████▎     | 863/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=864/2000, vae_loss=1105.3251]
Training: VAE decoder with masked batch labels:  43%|████▎     | 864/2000 [00:12<00:16, 69.00it/s, cycle_loss=0.0000, epoch=865/2000, vae_loss=1109.6355]
Training: VAE decoder with masked batch labels:  43%|████▎     | 865/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=865/2000, vae_loss=1109.6355]
Training: VAE decoder with masked batch labels:  43%|████▎     | 865/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=866/2000, vae_loss=1124.0873]
Training: VAE decoder with masked batch labels:  43%|████▎     | 866/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=867/2000, vae_loss=1186.0186]
Training: VAE decoder with masked batch labels:  43%|████▎     | 867/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=868/2000, vae_loss=1177.8269]
Training: VAE decoder with masked batch labels:  43%|████▎     | 868/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=869/2000, vae_loss=1106.8148]
Training: VAE decoder with masked batch labels:  43%|████▎     | 869/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=870/2000, vae_loss=1184.7104]
Training: VAE decoder with masked batch labels:  44%|████▎     | 870/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=871/2000, vae_loss=1152.6047]
Training: VAE decoder with masked batch labels:  44%|████▎     | 871/2000 [00:12<00:16, 69.57it/s, cycle_loss=0.0000, epoch=872/2000, vae_loss=1114.5852]
Training: VAE decoder with masked batch labels:  44%|████▎     | 872/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=872/2000, vae_loss=1114.5852]
Training: VAE decoder with masked batch labels:  44%|████▎     | 872/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=873/2000, vae_loss=1178.9413]
Training: VAE decoder with masked batch labels:  44%|████▎     | 873/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=874/2000, vae_loss=1131.3534]
Training: VAE decoder with masked batch labels:  44%|████▎     | 874/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=875/2000, vae_loss=1110.1118]
Training: VAE decoder with masked batch labels:  44%|████▍     | 875/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=876/2000, vae_loss=1136.1617]
Training: VAE decoder with masked batch labels:  44%|████▍     | 876/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=877/2000, vae_loss=1138.6232]
Training: VAE decoder with masked batch labels:  44%|████▍     | 877/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=878/2000, vae_loss=1089.8114]
Training: VAE decoder with masked batch labels:  44%|████▍     | 878/2000 [00:12<00:16, 69.24it/s, cycle_loss=0.0000, epoch=879/2000, vae_loss=1167.8136]
Training: VAE decoder with masked batch labels:  44%|████▍     | 879/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=879/2000, vae_loss=1167.8136]
Training: VAE decoder with masked batch labels:  44%|████▍     | 879/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=880/2000, vae_loss=1174.0485]
Training: VAE decoder with masked batch labels:  44%|████▍     | 880/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=881/2000, vae_loss=1141.6505]
Training: VAE decoder with masked batch labels:  44%|████▍     | 881/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=882/2000, vae_loss=1158.6923]
Training: VAE decoder with masked batch labels:  44%|████▍     | 882/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=883/2000, vae_loss=1211.8394]
Training: VAE decoder with masked batch labels:  44%|████▍     | 883/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=884/2000, vae_loss=1150.2822]
Training: VAE decoder with masked batch labels:  44%|████▍     | 884/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=885/2000, vae_loss=1177.9208]
Training: VAE decoder with masked batch labels:  44%|████▍     | 885/2000 [00:12<00:16, 69.19it/s, cycle_loss=0.0000, epoch=886/2000, vae_loss=1145.8087]
Training: VAE decoder with masked batch labels:  44%|████▍     | 886/2000 [00:12<00:16, 69.33it/s, cycle_loss=0.0000, epoch=886/2000, vae_loss=1145.8087]
Training: VAE decoder with masked batch labels:  44%|████▍     | 886/2000 [00:12<00:16, 69.33it/s, cycle_loss=0.0000, epoch=887/2000, vae_loss=1227.4326]
Training: VAE decoder with masked batch labels:  44%|████▍     | 887/2000 [00:12<00:16, 69.33it/s, cycle_loss=0.0000, epoch=888/2000, vae_loss=1197.3668]
Training: VAE decoder with masked batch labels:  44%|████▍     | 888/2000 [00:12<00:16, 69.33it/s, cycle_loss=0.0000, epoch=889/2000, vae_loss=1197.0260]
Training: VAE decoder with masked batch labels:  44%|████▍     | 889/2000 [00:13<00:16, 69.33it/s, cycle_loss=0.0000, epoch=890/2000, vae_loss=1149.5215]
Training: VAE decoder with masked batch labels:  44%|████▍     | 890/2000 [00:13<00:16, 69.33it/s, cycle_loss=0.0000, epoch=891/2000, vae_loss=1167.4878]
Training: VAE decoder with masked batch labels:  45%|████▍     | 891/2000 [00:13<00:15, 69.33it/s, cycle_loss=0.0000, epoch=892/2000, vae_loss=1151.3751]
Training: VAE decoder with masked batch labels:  45%|████▍     | 892/2000 [00:13<00:15, 69.33it/s, cycle_loss=0.0000, epoch=893/2000, vae_loss=1186.2543]
Training: VAE decoder with masked batch labels:  45%|████▍     | 893/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=893/2000, vae_loss=1186.2543]
Training: VAE decoder with masked batch labels:  45%|████▍     | 893/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=894/2000, vae_loss=1196.6622]
Training: VAE decoder with masked batch labels:  45%|████▍     | 894/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=895/2000, vae_loss=1250.5465]
Training: VAE decoder with masked batch labels:  45%|████▍     | 895/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=896/2000, vae_loss=1256.6636]
Training: VAE decoder with masked batch labels:  45%|████▍     | 896/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=897/2000, vae_loss=1247.4399]
Training: VAE decoder with masked batch labels:  45%|████▍     | 897/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=898/2000, vae_loss=1191.8311]
Training: VAE decoder with masked batch labels:  45%|████▍     | 898/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=899/2000, vae_loss=1170.6429]
Training: VAE decoder with masked batch labels:  45%|████▍     | 899/2000 [00:13<00:16, 68.75it/s, cycle_loss=0.0000, epoch=900/2000, vae_loss=1185.1361]
Training: VAE decoder with masked batch labels:  45%|████▌     | 900/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=900/2000, vae_loss=1185.1361]
Training: VAE decoder with masked batch labels:  45%|████▌     | 900/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=901/2000, vae_loss=1243.9685]
Training: VAE decoder with masked batch labels:  45%|████▌     | 901/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=902/2000, vae_loss=1177.9830]
Training: VAE decoder with masked batch labels:  45%|████▌     | 902/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=903/2000, vae_loss=1195.4741]
Training: VAE decoder with masked batch labels:  45%|████▌     | 903/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=904/2000, vae_loss=1192.6965]
Training: VAE decoder with masked batch labels:  45%|████▌     | 904/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=905/2000, vae_loss=1207.1801]
Training: VAE decoder with masked batch labels:  45%|████▌     | 905/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=906/2000, vae_loss=1217.8558]
Training: VAE decoder with masked batch labels:  45%|████▌     | 906/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=907/2000, vae_loss=1235.2889]
Training: VAE decoder with masked batch labels:  45%|████▌     | 907/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=907/2000, vae_loss=1235.2889]
Training: VAE decoder with masked batch labels:  45%|████▌     | 907/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=908/2000, vae_loss=1235.5737]
Training: VAE decoder with masked batch labels:  45%|████▌     | 908/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=909/2000, vae_loss=1204.7716]
Training: VAE decoder with masked batch labels:  45%|████▌     | 909/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=910/2000, vae_loss=1232.6104]
Training: VAE decoder with masked batch labels:  46%|████▌     | 910/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=911/2000, vae_loss=1217.3134]
Training: VAE decoder with masked batch labels:  46%|████▌     | 911/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=912/2000, vae_loss=1328.3395]
Training: VAE decoder with masked batch labels:  46%|████▌     | 912/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=913/2000, vae_loss=1271.4897]
Training: VAE decoder with masked batch labels:  46%|████▌     | 913/2000 [00:13<00:15, 68.97it/s, cycle_loss=0.0000, epoch=914/2000, vae_loss=1227.7939]
Training: VAE decoder with masked batch labels:  46%|████▌     | 914/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=914/2000, vae_loss=1227.7939]
Training: VAE decoder with masked batch labels:  46%|████▌     | 914/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=915/2000, vae_loss=1209.8563]
Training: VAE decoder with masked batch labels:  46%|████▌     | 915/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=916/2000, vae_loss=1265.5784]
Training: VAE decoder with masked batch labels:  46%|████▌     | 916/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=917/2000, vae_loss=1223.0731]
Training: VAE decoder with masked batch labels:  46%|████▌     | 917/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=918/2000, vae_loss=1261.3279]
Training: VAE decoder with masked batch labels:  46%|████▌     | 918/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=919/2000, vae_loss=1244.8528]
Training: VAE decoder with masked batch labels:  46%|████▌     | 919/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=920/2000, vae_loss=1211.2863]
Training: VAE decoder with masked batch labels:  46%|████▌     | 920/2000 [00:13<00:15, 69.17it/s, cycle_loss=0.0000, epoch=921/2000, vae_loss=1208.5093]
Training: VAE decoder with masked batch labels:  46%|████▌     | 921/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=921/2000, vae_loss=1208.5093]
Training: VAE decoder with masked batch labels:  46%|████▌     | 921/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=922/2000, vae_loss=1255.4316]
Training: VAE decoder with masked batch labels:  46%|████▌     | 922/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=923/2000, vae_loss=1174.8480]
Training: VAE decoder with masked batch labels:  46%|████▌     | 923/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=924/2000, vae_loss=1303.2646]
Training: VAE decoder with masked batch labels:  46%|████▌     | 924/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=925/2000, vae_loss=1277.9242]
Training: VAE decoder with masked batch labels:  46%|████▋     | 925/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=926/2000, vae_loss=1264.7859]
Training: VAE decoder with masked batch labels:  46%|████▋     | 926/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=927/2000, vae_loss=1232.0319]
Training: VAE decoder with masked batch labels:  46%|████▋     | 927/2000 [00:13<00:15, 69.39it/s, cycle_loss=0.0000, epoch=928/2000, vae_loss=1292.0092]
Training: VAE decoder with masked batch labels:  46%|████▋     | 928/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=928/2000, vae_loss=1292.0092]
Training: VAE decoder with masked batch labels:  46%|████▋     | 928/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=929/2000, vae_loss=1236.1339]
Training: VAE decoder with masked batch labels:  46%|████▋     | 929/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=930/2000, vae_loss=1286.4945]
Training: VAE decoder with masked batch labels:  46%|████▋     | 930/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=931/2000, vae_loss=1273.7815]
Training: VAE decoder with masked batch labels:  47%|████▋     | 931/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=932/2000, vae_loss=1266.6678]
Training: VAE decoder with masked batch labels:  47%|████▋     | 932/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=933/2000, vae_loss=1319.9381]
Training: VAE decoder with masked batch labels:  47%|████▋     | 933/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=934/2000, vae_loss=1344.2743]
Training: VAE decoder with masked batch labels:  47%|████▋     | 934/2000 [00:13<00:15, 68.11it/s, cycle_loss=0.0000, epoch=935/2000, vae_loss=1280.1282]
Training: VAE decoder with masked batch labels:  47%|████▋     | 935/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=935/2000, vae_loss=1280.1282]
Training: VAE decoder with masked batch labels:  47%|████▋     | 935/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=936/2000, vae_loss=1258.5405]
Training: VAE decoder with masked batch labels:  47%|████▋     | 936/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=937/2000, vae_loss=1313.3633]
Training: VAE decoder with masked batch labels:  47%|████▋     | 937/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=938/2000, vae_loss=1340.1744]
Training: VAE decoder with masked batch labels:  47%|████▋     | 938/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=939/2000, vae_loss=1274.4441]
Training: VAE decoder with masked batch labels:  47%|████▋     | 939/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=940/2000, vae_loss=1274.2583]
Training: VAE decoder with masked batch labels:  47%|████▋     | 940/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=941/2000, vae_loss=1303.9381]
Training: VAE decoder with masked batch labels:  47%|████▋     | 941/2000 [00:13<00:15, 67.94it/s, cycle_loss=0.0000, epoch=942/2000, vae_loss=1311.3090]
Training: VAE decoder with masked batch labels:  47%|████▋     | 942/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=942/2000, vae_loss=1311.3090]
Training: VAE decoder with masked batch labels:  47%|████▋     | 942/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=943/2000, vae_loss=1406.0897]
Training: VAE decoder with masked batch labels:  47%|████▋     | 943/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=944/2000, vae_loss=1364.0643]
Training: VAE decoder with masked batch labels:  47%|████▋     | 944/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=945/2000, vae_loss=1327.1326]
Training: VAE decoder with masked batch labels:  47%|████▋     | 945/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=946/2000, vae_loss=1321.0662]
Training: VAE decoder with masked batch labels:  47%|████▋     | 946/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=947/2000, vae_loss=1344.0725]
Training: VAE decoder with masked batch labels:  47%|████▋     | 947/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=948/2000, vae_loss=1311.4398]
Training: VAE decoder with masked batch labels:  47%|████▋     | 948/2000 [00:13<00:15, 67.15it/s, cycle_loss=0.0000, epoch=949/2000, vae_loss=1337.1737]
Training: VAE decoder with masked batch labels:  47%|████▋     | 949/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=949/2000, vae_loss=1337.1737]
Training: VAE decoder with masked batch labels:  47%|████▋     | 949/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=950/2000, vae_loss=1318.3328]
Training: VAE decoder with masked batch labels:  48%|████▊     | 950/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=951/2000, vae_loss=1333.7550]
Training: VAE decoder with masked batch labels:  48%|████▊     | 951/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=952/2000, vae_loss=1293.3203]
Training: VAE decoder with masked batch labels:  48%|████▊     | 952/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=953/2000, vae_loss=1340.9042]
Training: VAE decoder with masked batch labels:  48%|████▊     | 953/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=954/2000, vae_loss=1322.4012]
Training: VAE decoder with masked batch labels:  48%|████▊     | 954/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=955/2000, vae_loss=1347.3340]
Training: VAE decoder with masked batch labels:  48%|████▊     | 955/2000 [00:13<00:15, 67.37it/s, cycle_loss=0.0000, epoch=956/2000, vae_loss=1324.3667]
Training: VAE decoder with masked batch labels:  48%|████▊     | 956/2000 [00:13<00:15, 67.55it/s, cycle_loss=0.0000, epoch=956/2000, vae_loss=1324.3667]
Training: VAE decoder with masked batch labels:  48%|████▊     | 956/2000 [00:13<00:15, 67.55it/s, cycle_loss=0.0000, epoch=957/2000, vae_loss=1452.9413]
Training: VAE decoder with masked batch labels:  48%|████▊     | 957/2000 [00:14<00:15, 67.55it/s, cycle_loss=0.0000, epoch=958/2000, vae_loss=1277.6459]
Training: VAE decoder with masked batch labels:  48%|████▊     | 958/2000 [00:14<00:15, 67.55it/s, cycle_loss=0.0000, epoch=959/2000, vae_loss=1309.4597]
Training: VAE decoder with masked batch labels:  48%|████▊     | 959/2000 [00:14<00:15, 67.55it/s, cycle_loss=0.0000, epoch=960/2000, vae_loss=1371.1218]
Training: VAE decoder with masked batch labels:  48%|████▊     | 960/2000 [00:14<00:15, 67.55it/s, cycle_loss=0.0000, epoch=961/2000, vae_loss=1301.0551]
Training: VAE decoder with masked batch labels:  48%|████▊     | 961/2000 [00:14<00:15, 67.55it/s, cycle_loss=0.0000, epoch=962/2000, vae_loss=1330.9152]
Training: VAE decoder with masked batch labels:  48%|████▊     | 962/2000 [00:14<00:15, 67.55it/s, cycle_loss=0.0000, epoch=963/2000, vae_loss=1332.9473]
Training: VAE decoder with masked batch labels:  48%|████▊     | 963/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=963/2000, vae_loss=1332.9473]
Training: VAE decoder with masked batch labels:  48%|████▊     | 963/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=964/2000, vae_loss=1369.6722]
Training: VAE decoder with masked batch labels:  48%|████▊     | 964/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=965/2000, vae_loss=1336.4200]
Training: VAE decoder with masked batch labels:  48%|████▊     | 965/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=966/2000, vae_loss=1365.2653]
Training: VAE decoder with masked batch labels:  48%|████▊     | 966/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=967/2000, vae_loss=1321.8768]
Training: VAE decoder with masked batch labels:  48%|████▊     | 967/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=968/2000, vae_loss=1392.8945]
Training: VAE decoder with masked batch labels:  48%|████▊     | 968/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=969/2000, vae_loss=1327.5896]
Training: VAE decoder with masked batch labels:  48%|████▊     | 969/2000 [00:14<00:15, 67.86it/s, cycle_loss=0.0000, epoch=970/2000, vae_loss=1294.0697]
Training: VAE decoder with masked batch labels:  48%|████▊     | 970/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=970/2000, vae_loss=1294.0697]
Training: VAE decoder with masked batch labels:  48%|████▊     | 970/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=971/2000, vae_loss=1400.8923]
Training: VAE decoder with masked batch labels:  49%|████▊     | 971/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=972/2000, vae_loss=1352.1836]
Training: VAE decoder with masked batch labels:  49%|████▊     | 972/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=973/2000, vae_loss=1370.5173]
Training: VAE decoder with masked batch labels:  49%|████▊     | 973/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=974/2000, vae_loss=1361.0391]
Training: VAE decoder with masked batch labels:  49%|████▊     | 974/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=975/2000, vae_loss=1458.2114]
Training: VAE decoder with masked batch labels:  49%|████▉     | 975/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=976/2000, vae_loss=1365.9886]
Training: VAE decoder with masked batch labels:  49%|████▉     | 976/2000 [00:14<00:15, 67.81it/s, cycle_loss=0.0000, epoch=977/2000, vae_loss=1384.7612]
Training: VAE decoder with masked batch labels:  49%|████▉     | 977/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=977/2000, vae_loss=1384.7612]
Training: VAE decoder with masked batch labels:  49%|████▉     | 977/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=978/2000, vae_loss=1360.6388]
Training: VAE decoder with masked batch labels:  49%|████▉     | 978/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=979/2000, vae_loss=1384.2996]
Training: VAE decoder with masked batch labels:  49%|████▉     | 979/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=980/2000, vae_loss=1330.5404]
Training: VAE decoder with masked batch labels:  49%|████▉     | 980/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=981/2000, vae_loss=1369.0851]
Training: VAE decoder with masked batch labels:  49%|████▉     | 981/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=982/2000, vae_loss=1436.3154]
Training: VAE decoder with masked batch labels:  49%|████▉     | 982/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=983/2000, vae_loss=1391.5868]
Training: VAE decoder with masked batch labels:  49%|████▉     | 983/2000 [00:14<00:14, 68.33it/s, cycle_loss=0.0000, epoch=984/2000, vae_loss=1378.7383]
Training: VAE decoder with masked batch labels:  49%|████▉     | 984/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=984/2000, vae_loss=1378.7383]
Training: VAE decoder with masked batch labels:  49%|████▉     | 984/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=985/2000, vae_loss=1438.9938]
Training: VAE decoder with masked batch labels:  49%|████▉     | 985/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=986/2000, vae_loss=1411.8666]
Training: VAE decoder with masked batch labels:  49%|████▉     | 986/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=987/2000, vae_loss=1404.4089]
Training: VAE decoder with masked batch labels:  49%|████▉     | 987/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=988/2000, vae_loss=1357.5123]
Training: VAE decoder with masked batch labels:  49%|████▉     | 988/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=989/2000, vae_loss=1453.8732]
Training: VAE decoder with masked batch labels:  49%|████▉     | 989/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=990/2000, vae_loss=1414.0841]
Training: VAE decoder with masked batch labels:  50%|████▉     | 990/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=991/2000, vae_loss=1390.9231]
Training: VAE decoder with masked batch labels:  50%|████▉     | 991/2000 [00:14<00:14, 68.62it/s, cycle_loss=0.0000, epoch=992/2000, vae_loss=1454.2219]
Training: VAE decoder with masked batch labels:  50%|████▉     | 992/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=992/2000, vae_loss=1454.2219]
Training: VAE decoder with masked batch labels:  50%|████▉     | 992/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=993/2000, vae_loss=1398.6687]
Training: VAE decoder with masked batch labels:  50%|████▉     | 993/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=994/2000, vae_loss=1417.8105]
Training: VAE decoder with masked batch labels:  50%|████▉     | 994/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=995/2000, vae_loss=1392.5752]
Training: VAE decoder with masked batch labels:  50%|████▉     | 995/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=996/2000, vae_loss=1405.4060]
Training: VAE decoder with masked batch labels:  50%|████▉     | 996/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=997/2000, vae_loss=1443.0542]
Training: VAE decoder with masked batch labels:  50%|████▉     | 997/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=998/2000, vae_loss=1443.0884]
Training: VAE decoder with masked batch labels:  50%|████▉     | 998/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=999/2000, vae_loss=1478.7411]
Training: VAE decoder with masked batch labels:  50%|████▉     | 999/2000 [00:14<00:14, 69.00it/s, cycle_loss=0.0000, epoch=1000/2000, vae_loss=1346.6198]
Training: VAE decoder with masked batch labels:  50%|█████     | 1000/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1000/2000, vae_loss=1346.6198]
Training: VAE decoder with masked batch labels:  50%|█████     | 1000/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1001/2000, vae_loss=1485.2982]
Training: VAE decoder with masked batch labels:  50%|█████     | 1001/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1002/2000, vae_loss=1469.2882]
Training: VAE decoder with masked batch labels:  50%|█████     | 1002/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1003/2000, vae_loss=1440.1064]
Training: VAE decoder with masked batch labels:  50%|█████     | 1003/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1004/2000, vae_loss=1411.2610]
Training: VAE decoder with masked batch labels:  50%|█████     | 1004/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1005/2000, vae_loss=1466.5331]
Training: VAE decoder with masked batch labels:  50%|█████     | 1005/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1006/2000, vae_loss=1501.6377]
Training: VAE decoder with masked batch labels:  50%|█████     | 1006/2000 [00:14<00:14, 69.42it/s, cycle_loss=0.0000, epoch=1007/2000, vae_loss=1422.4214]
Training: VAE decoder with masked batch labels:  50%|█████     | 1007/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1007/2000, vae_loss=1422.4214]
Training: VAE decoder with masked batch labels:  50%|█████     | 1007/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1008/2000, vae_loss=1437.3718]
Training: VAE decoder with masked batch labels:  50%|█████     | 1008/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1009/2000, vae_loss=1430.2773]
Training: VAE decoder with masked batch labels:  50%|█████     | 1009/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1010/2000, vae_loss=1446.0962]
Training: VAE decoder with masked batch labels:  50%|█████     | 1010/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1011/2000, vae_loss=1430.8066]
Training: VAE decoder with masked batch labels:  51%|█████     | 1011/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1012/2000, vae_loss=1424.8992]
Training: VAE decoder with masked batch labels:  51%|█████     | 1012/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1013/2000, vae_loss=1422.2573]
Training: VAE decoder with masked batch labels:  51%|█████     | 1013/2000 [00:14<00:14, 69.04it/s, cycle_loss=0.0000, epoch=1014/2000, vae_loss=1409.3531]
Training: VAE decoder with masked batch labels:  51%|█████     | 1014/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1014/2000, vae_loss=1409.3531]
Training: VAE decoder with masked batch labels:  51%|█████     | 1014/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1015/2000, vae_loss=1436.2271]
Training: VAE decoder with masked batch labels:  51%|█████     | 1015/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1016/2000, vae_loss=1423.3312]
Training: VAE decoder with masked batch labels:  51%|█████     | 1016/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1017/2000, vae_loss=1428.7834]
Training: VAE decoder with masked batch labels:  51%|█████     | 1017/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1018/2000, vae_loss=1349.0742]
Training: VAE decoder with masked batch labels:  51%|█████     | 1018/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1019/2000, vae_loss=1419.4381]
Training: VAE decoder with masked batch labels:  51%|█████     | 1019/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1020/2000, vae_loss=1404.1162]
Training: VAE decoder with masked batch labels:  51%|█████     | 1020/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1021/2000, vae_loss=1450.1516]
Training: VAE decoder with masked batch labels:  51%|█████     | 1021/2000 [00:14<00:14, 68.86it/s, cycle_loss=0.0000, epoch=1022/2000, vae_loss=1447.7903]
Training: VAE decoder with masked batch labels:  51%|█████     | 1022/2000 [00:14<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1022/2000, vae_loss=1447.7903]
Training: VAE decoder with masked batch labels:  51%|█████     | 1022/2000 [00:14<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1023/2000, vae_loss=1442.9744]
Training: VAE decoder with masked batch labels:  51%|█████     | 1023/2000 [00:14<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1024/2000, vae_loss=1395.7992]
Training: VAE decoder with masked batch labels:  51%|█████     | 1024/2000 [00:14<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1025/2000, vae_loss=1377.6964]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1025/2000 [00:14<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1026/2000, vae_loss=1411.4116]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1026/2000 [00:14<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1027/2000, vae_loss=1435.3978]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1027/2000 [00:15<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1028/2000, vae_loss=1478.6473]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1028/2000 [00:15<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1029/2000, vae_loss=1392.2546]
Training: VAE decoder with masked batch labels:  51%|█████▏    | 1029/2000 [00:15<00:14, 69.30it/s, cycle_loss=0.0000, epoch=1030/2000, vae_loss=1393.0797]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1030/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1030/2000, vae_loss=1393.0797]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1030/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1031/2000, vae_loss=1467.4617]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1031/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1032/2000, vae_loss=1497.9070]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1032/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1033/2000, vae_loss=1443.1185]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1033/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1034/2000, vae_loss=1395.9955]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1034/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1035/2000, vae_loss=1384.7476]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1035/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1036/2000, vae_loss=1421.3833]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1036/2000 [00:15<00:13, 69.61it/s, cycle_loss=0.0000, epoch=1037/2000, vae_loss=1346.9116]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1037/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1037/2000, vae_loss=1346.9116]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1037/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1038/2000, vae_loss=1434.7880]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1038/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1039/2000, vae_loss=1452.9214]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1039/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1040/2000, vae_loss=1395.8679]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1040/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1041/2000, vae_loss=1402.7925]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1041/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1042/2000, vae_loss=1420.8905]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1042/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1043/2000, vae_loss=1380.1743]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1043/2000 [00:15<00:13, 69.26it/s, cycle_loss=0.0000, epoch=1044/2000, vae_loss=1381.9393]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1044/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1044/2000, vae_loss=1381.9393]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1044/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1045/2000, vae_loss=1408.3391]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1045/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1046/2000, vae_loss=1443.8225]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1046/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1047/2000, vae_loss=1451.8553]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1047/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1048/2000, vae_loss=1446.3005]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1048/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1049/2000, vae_loss=1427.2986]
Training: VAE decoder with masked batch labels:  52%|█████▏    | 1049/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1050/2000, vae_loss=1407.8805]
Training: VAE decoder with masked batch labels:  52%|█████▎    | 1050/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1051/2000, vae_loss=1438.5204]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1051/2000 [00:15<00:13, 69.40it/s, cycle_loss=0.0000, epoch=1052/2000, vae_loss=1408.3917]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1052/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1052/2000, vae_loss=1408.3917]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1052/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1053/2000, vae_loss=1406.5616]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1053/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1054/2000, vae_loss=1476.1565]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1054/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1055/2000, vae_loss=1429.1808]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1055/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1056/2000, vae_loss=1383.8644]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1056/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1057/2000, vae_loss=1444.3613]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1057/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1058/2000, vae_loss=1413.6324]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1058/2000 [00:15<00:13, 69.76it/s, cycle_loss=0.0000, epoch=1059/2000, vae_loss=1391.5513]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1059/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1059/2000, vae_loss=1391.5513]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1059/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1060/2000, vae_loss=1464.5337]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1060/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1061/2000, vae_loss=1413.5293]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1061/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1062/2000, vae_loss=1361.2332]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1062/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1063/2000, vae_loss=1409.3270]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1063/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1064/2000, vae_loss=1356.4554]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1064/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1065/2000, vae_loss=1432.8517]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1065/2000 [00:15<00:13, 69.64it/s, cycle_loss=0.0000, epoch=1066/2000, vae_loss=1403.5792]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1066/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1066/2000, vae_loss=1403.5792]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1066/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1067/2000, vae_loss=1365.9667]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1067/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1068/2000, vae_loss=1415.3391]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1068/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1069/2000, vae_loss=1445.7786]
Training: VAE decoder with masked batch labels:  53%|█████▎    | 1069/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1070/2000, vae_loss=1458.8711]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1070/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1071/2000, vae_loss=1393.2689]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1071/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1072/2000, vae_loss=1433.8950]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1072/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1073/2000, vae_loss=1375.9127]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1073/2000 [00:15<00:13, 68.92it/s, cycle_loss=0.0000, epoch=1074/2000, vae_loss=1405.8303]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1074/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1074/2000, vae_loss=1405.8303]
Training: VAE decoder with masked batch labels:  54%|█████▎    | 1074/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1075/2000, vae_loss=1361.2904]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1075/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1076/2000, vae_loss=1376.1423]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1076/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1077/2000, vae_loss=1372.5367]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1077/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1078/2000, vae_loss=1410.5594]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1078/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1079/2000, vae_loss=1463.8221]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1079/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1080/2000, vae_loss=1467.0281]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1080/2000 [00:15<00:13, 69.38it/s, cycle_loss=0.0000, epoch=1081/2000, vae_loss=1385.9664]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1081/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1081/2000, vae_loss=1385.9664]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1081/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1082/2000, vae_loss=1355.0913]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1082/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1083/2000, vae_loss=1439.8965]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1083/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1084/2000, vae_loss=1454.2159]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1084/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1085/2000, vae_loss=1418.7205]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1085/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1086/2000, vae_loss=1457.6066]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1086/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1087/2000, vae_loss=1422.6113]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1087/2000 [00:15<00:13, 66.44it/s, cycle_loss=0.0000, epoch=1088/2000, vae_loss=1383.3059]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1088/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1088/2000, vae_loss=1383.3059]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1088/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1089/2000, vae_loss=1358.7104]
Training: VAE decoder with masked batch labels:  54%|█████▍    | 1089/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1090/2000, vae_loss=1370.4502]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1090/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1091/2000, vae_loss=1446.9017]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1091/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1092/2000, vae_loss=1392.2368]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1092/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1093/2000, vae_loss=1447.0754]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1093/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1094/2000, vae_loss=1448.8030]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1094/2000 [00:15<00:13, 66.77it/s, cycle_loss=0.0000, epoch=1095/2000, vae_loss=1410.7119]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1095/2000 [00:15<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1095/2000, vae_loss=1410.7119]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1095/2000 [00:16<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1096/2000, vae_loss=1446.8973]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1096/2000 [00:16<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1097/2000, vae_loss=1401.3022]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1097/2000 [00:16<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1098/2000, vae_loss=1395.1433]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1098/2000 [00:16<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1099/2000, vae_loss=1389.6921]
Training: VAE decoder with masked batch labels:  55%|█████▍    | 1099/2000 [00:16<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1100/2000, vae_loss=1420.4756]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1100/2000 [00:16<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1101/2000, vae_loss=1348.7991]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1101/2000 [00:16<00:13, 67.42it/s, cycle_loss=0.0000, epoch=1102/2000, vae_loss=1394.3448]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1102/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1102/2000, vae_loss=1394.3448]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1102/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1103/2000, vae_loss=1398.5165]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1103/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1104/2000, vae_loss=1442.9388]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1104/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1105/2000, vae_loss=1402.3684]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1105/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1106/2000, vae_loss=1409.2455]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1106/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1107/2000, vae_loss=1415.0898]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1107/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1108/2000, vae_loss=1387.1239]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1108/2000 [00:16<00:13, 67.48it/s, cycle_loss=0.0000, epoch=1109/2000, vae_loss=1447.0844]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1109/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1109/2000, vae_loss=1447.0844]
Training: VAE decoder with masked batch labels:  55%|█████▌    | 1109/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1110/2000, vae_loss=1420.0918]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1110/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1111/2000, vae_loss=1375.2489]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1111/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1112/2000, vae_loss=1353.9607]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1112/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1113/2000, vae_loss=1407.5531]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1113/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1114/2000, vae_loss=1413.0342]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1114/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1115/2000, vae_loss=1337.7292]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1115/2000 [00:16<00:13, 67.71it/s, cycle_loss=0.0000, epoch=1116/2000, vae_loss=1404.9414]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1116/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1116/2000, vae_loss=1404.9414]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1116/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1117/2000, vae_loss=1418.7477]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1117/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1118/2000, vae_loss=1440.0527]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1118/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1119/2000, vae_loss=1379.9508]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1119/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1120/2000, vae_loss=1413.6722]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1120/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1121/2000, vae_loss=1405.1659]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1121/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1122/2000, vae_loss=1398.5870]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1122/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1123/2000, vae_loss=1447.1177]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1123/2000 [00:16<00:12, 68.12it/s, cycle_loss=0.0000, epoch=1124/2000, vae_loss=1358.8373]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1124/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1124/2000, vae_loss=1358.8373]
Training: VAE decoder with masked batch labels:  56%|█████▌    | 1124/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1125/2000, vae_loss=1408.0468]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1125/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1126/2000, vae_loss=1436.0780]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1126/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1127/2000, vae_loss=1452.6755]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1127/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1128/2000, vae_loss=1475.9554]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1128/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1129/2000, vae_loss=1375.2410]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1129/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1130/2000, vae_loss=1414.9275]
Training: VAE decoder with masked batch labels:  56%|█████▋    | 1130/2000 [00:16<00:12, 68.79it/s, cycle_loss=0.0000, epoch=1131/2000, vae_loss=1422.3389]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1131/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1131/2000, vae_loss=1422.3389]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1131/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1132/2000, vae_loss=1332.5356]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1132/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1133/2000, vae_loss=1348.5593]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1133/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1134/2000, vae_loss=1400.6881]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1134/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1135/2000, vae_loss=1482.3801]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1135/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1136/2000, vae_loss=1437.0828]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1136/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1137/2000, vae_loss=1368.3160]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1137/2000 [00:16<00:12, 69.05it/s, cycle_loss=0.0000, epoch=1138/2000, vae_loss=1380.2833]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1138/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1138/2000, vae_loss=1380.2833]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1138/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1139/2000, vae_loss=1379.9637]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1139/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1140/2000, vae_loss=1353.4089]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1140/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1141/2000, vae_loss=1448.3826]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1141/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1142/2000, vae_loss=1435.4044]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1142/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1143/2000, vae_loss=1446.0588]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1143/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1144/2000, vae_loss=1368.8623]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1144/2000 [00:16<00:12, 69.32it/s, cycle_loss=0.0000, epoch=1145/2000, vae_loss=1439.5770]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1145/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1145/2000, vae_loss=1439.5770]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1145/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1146/2000, vae_loss=1424.8730]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1146/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1147/2000, vae_loss=1416.5006]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1147/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1148/2000, vae_loss=1388.1748]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1148/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1149/2000, vae_loss=1416.1761]
Training: VAE decoder with masked batch labels:  57%|█████▋    | 1149/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1150/2000, vae_loss=1404.1013]
Training: VAE decoder with masked batch labels:  57%|█████▊    | 1150/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1151/2000, vae_loss=1418.6613]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1151/2000 [00:16<00:12, 68.95it/s, cycle_loss=0.0000, epoch=1152/2000, vae_loss=1367.9908]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1152/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1152/2000, vae_loss=1367.9908]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1152/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1153/2000, vae_loss=1388.5167]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1153/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1154/2000, vae_loss=1417.1215]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1154/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1155/2000, vae_loss=1409.8939]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1155/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1156/2000, vae_loss=1394.0875]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1156/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1157/2000, vae_loss=1380.0438]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1157/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1158/2000, vae_loss=1402.4395]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1158/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1159/2000, vae_loss=1360.4899]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1159/2000 [00:16<00:12, 69.17it/s, cycle_loss=0.0000, epoch=1160/2000, vae_loss=1387.9872]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1160/2000 [00:16<00:12, 69.63it/s, cycle_loss=0.0000, epoch=1160/2000, vae_loss=1387.9872]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1160/2000 [00:16<00:12, 69.63it/s, cycle_loss=0.0000, epoch=1161/2000, vae_loss=1409.7269]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1161/2000 [00:16<00:12, 69.63it/s, cycle_loss=0.0000, epoch=1162/2000, vae_loss=1437.9169]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1162/2000 [00:16<00:12, 69.63it/s, cycle_loss=0.0000, epoch=1163/2000, vae_loss=1353.3544]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1163/2000 [00:16<00:12, 69.63it/s, cycle_loss=0.0000, epoch=1164/2000, vae_loss=1435.3556]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1164/2000 [00:17<00:12, 69.63it/s, cycle_loss=0.0000, epoch=1165/2000, vae_loss=1390.3187]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1165/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1166/2000, vae_loss=1360.0032]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1166/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1167/2000, vae_loss=1402.1857]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1167/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1167/2000, vae_loss=1402.1857]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1167/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1168/2000, vae_loss=1348.8226]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1168/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1169/2000, vae_loss=1367.3779]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1169/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1170/2000, vae_loss=1455.1392]
Training: VAE decoder with masked batch labels:  58%|█████▊    | 1170/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1171/2000, vae_loss=1375.9144]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1171/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1172/2000, vae_loss=1416.6998]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1172/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1173/2000, vae_loss=1410.3121]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1173/2000 [00:17<00:11, 69.70it/s, cycle_loss=0.0000, epoch=1174/2000, vae_loss=1365.1476]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1174/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1174/2000, vae_loss=1365.1476]
Training: VAE decoder with masked batch labels:  59%|█████▊    | 1174/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1175/2000, vae_loss=1400.9620]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1175/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1176/2000, vae_loss=1334.4249]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1176/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1177/2000, vae_loss=1368.0195]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1177/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1178/2000, vae_loss=1410.7356]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1178/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1179/2000, vae_loss=1412.6631]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1179/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1180/2000, vae_loss=1388.4277]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1180/2000 [00:17<00:11, 69.32it/s, cycle_loss=0.0000, epoch=1181/2000, vae_loss=1436.7656]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1181/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1181/2000, vae_loss=1436.7656]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1181/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1182/2000, vae_loss=1400.4740]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1182/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1183/2000, vae_loss=1321.5338]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1183/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1184/2000, vae_loss=1407.5129]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1184/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1185/2000, vae_loss=1442.3328]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1185/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1186/2000, vae_loss=1358.5679]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1186/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1187/2000, vae_loss=1374.2435]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1187/2000 [00:17<00:11, 69.20it/s, cycle_loss=0.0000, epoch=1188/2000, vae_loss=1433.1874]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1188/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1188/2000, vae_loss=1433.1874]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1188/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1189/2000, vae_loss=1373.3746]
Training: VAE decoder with masked batch labels:  59%|█████▉    | 1189/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1190/2000, vae_loss=1432.0763]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1190/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1191/2000, vae_loss=1306.9623]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1191/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1192/2000, vae_loss=1345.2858]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1192/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1193/2000, vae_loss=1389.9648]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1193/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1194/2000, vae_loss=1410.7629]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1194/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1195/2000, vae_loss=1402.6110]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1195/2000 [00:17<00:11, 69.30it/s, cycle_loss=0.0000, epoch=1196/2000, vae_loss=1411.2418]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1196/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1196/2000, vae_loss=1411.2418]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1196/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1197/2000, vae_loss=1352.3026]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1197/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1198/2000, vae_loss=1399.7087]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1198/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1199/2000, vae_loss=1466.7368]
Training: VAE decoder with masked batch labels:  60%|█████▉    | 1199/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1200/2000, vae_loss=1308.5249]
Training: VAE decoder with masked batch labels:  60%|██████    | 1200/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1201/2000, vae_loss=1383.3190]
Training: VAE decoder with masked batch labels:  60%|██████    | 1201/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1202/2000, vae_loss=1398.0828]
Training: VAE decoder with masked batch labels:  60%|██████    | 1202/2000 [00:17<00:11, 69.63it/s, cycle_loss=0.0000, epoch=1203/2000, vae_loss=1404.1998]
Training: VAE decoder with masked batch labels:  60%|██████    | 1203/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1203/2000, vae_loss=1404.1998]
Training: VAE decoder with masked batch labels:  60%|██████    | 1203/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1204/2000, vae_loss=1349.1554]
Training: VAE decoder with masked batch labels:  60%|██████    | 1204/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1205/2000, vae_loss=1411.1334]
Training: VAE decoder with masked batch labels:  60%|██████    | 1205/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1206/2000, vae_loss=1395.4791]
Training: VAE decoder with masked batch labels:  60%|██████    | 1206/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1207/2000, vae_loss=1326.8744]
Training: VAE decoder with masked batch labels:  60%|██████    | 1207/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1208/2000, vae_loss=1424.8064]
Training: VAE decoder with masked batch labels:  60%|██████    | 1208/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1209/2000, vae_loss=1397.2067]
Training: VAE decoder with masked batch labels:  60%|██████    | 1209/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1210/2000, vae_loss=1394.5385]
Training: VAE decoder with masked batch labels:  60%|██████    | 1210/2000 [00:17<00:11, 68.68it/s, cycle_loss=0.0000, epoch=1211/2000, vae_loss=1390.3824]
Training: VAE decoder with masked batch labels:  61%|██████    | 1211/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1211/2000, vae_loss=1390.3824]
Training: VAE decoder with masked batch labels:  61%|██████    | 1211/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1212/2000, vae_loss=1456.4288]
Training: VAE decoder with masked batch labels:  61%|██████    | 1212/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1213/2000, vae_loss=1372.9325]
Training: VAE decoder with masked batch labels:  61%|██████    | 1213/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1214/2000, vae_loss=1415.5154]
Training: VAE decoder with masked batch labels:  61%|██████    | 1214/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1215/2000, vae_loss=1393.1241]
Training: VAE decoder with masked batch labels:  61%|██████    | 1215/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1216/2000, vae_loss=1374.9550]
Training: VAE decoder with masked batch labels:  61%|██████    | 1216/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1217/2000, vae_loss=1376.6361]
Training: VAE decoder with masked batch labels:  61%|██████    | 1217/2000 [00:17<00:11, 69.27it/s, cycle_loss=0.0000, epoch=1218/2000, vae_loss=1376.8297]
Training: VAE decoder with masked batch labels:  61%|██████    | 1218/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1218/2000, vae_loss=1376.8297]
Training: VAE decoder with masked batch labels:  61%|██████    | 1218/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1219/2000, vae_loss=1353.9010]
Training: VAE decoder with masked batch labels:  61%|██████    | 1219/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1220/2000, vae_loss=1359.2922]
Training: VAE decoder with masked batch labels:  61%|██████    | 1220/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1221/2000, vae_loss=1410.2452]
Training: VAE decoder with masked batch labels:  61%|██████    | 1221/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1222/2000, vae_loss=1438.1453]
Training: VAE decoder with masked batch labels:  61%|██████    | 1222/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1223/2000, vae_loss=1358.6957]
Training: VAE decoder with masked batch labels:  61%|██████    | 1223/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1224/2000, vae_loss=1338.7903]
Training: VAE decoder with masked batch labels:  61%|██████    | 1224/2000 [00:17<00:11, 68.60it/s, cycle_loss=0.0000, epoch=1225/2000, vae_loss=1435.9811]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1225/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1225/2000, vae_loss=1435.9811]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1225/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1226/2000, vae_loss=1393.1884]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1226/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1227/2000, vae_loss=1358.7203]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1227/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1228/2000, vae_loss=1453.7190]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1228/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1229/2000, vae_loss=1431.1631]
Training: VAE decoder with masked batch labels:  61%|██████▏   | 1229/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1230/2000, vae_loss=1352.2797]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1230/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1231/2000, vae_loss=1342.3838]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1231/2000 [00:17<00:11, 68.55it/s, cycle_loss=0.0000, epoch=1232/2000, vae_loss=1432.2889]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1232/2000 [00:17<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1232/2000, vae_loss=1432.2889]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1232/2000 [00:17<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1233/2000, vae_loss=1375.6356]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1233/2000 [00:18<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1234/2000, vae_loss=1408.4479]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1234/2000 [00:18<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1235/2000, vae_loss=1350.3406]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1235/2000 [00:18<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1236/2000, vae_loss=1350.4694]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1236/2000 [00:18<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1237/2000, vae_loss=1365.5358]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1237/2000 [00:18<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1238/2000, vae_loss=1388.0402]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1238/2000 [00:18<00:11, 68.66it/s, cycle_loss=0.0000, epoch=1239/2000, vae_loss=1407.9062]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1239/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1239/2000, vae_loss=1407.9062]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1239/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1240/2000, vae_loss=1382.7606]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1240/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1241/2000, vae_loss=1369.4219]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1241/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1242/2000, vae_loss=1423.4031]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1242/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1243/2000, vae_loss=1353.3239]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1243/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1244/2000, vae_loss=1355.7118]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1244/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1245/2000, vae_loss=1344.9661]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1245/2000 [00:18<00:11, 68.58it/s, cycle_loss=0.0000, epoch=1246/2000, vae_loss=1384.5856]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1246/2000 [00:18<00:11, 68.37it/s, cycle_loss=0.0000, epoch=1246/2000, vae_loss=1384.5856]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1246/2000 [00:18<00:11, 68.37it/s, cycle_loss=0.0000, epoch=1247/2000, vae_loss=1324.9178]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1247/2000 [00:18<00:11, 68.37it/s, cycle_loss=0.0000, epoch=1248/2000, vae_loss=1377.3292]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1248/2000 [00:18<00:10, 68.37it/s, cycle_loss=0.0000, epoch=1249/2000, vae_loss=1429.7394]
Training: VAE decoder with masked batch labels:  62%|██████▏   | 1249/2000 [00:18<00:10, 68.37it/s, cycle_loss=0.0000, epoch=1250/2000, vae_loss=1360.6460]
Training: VAE decoder with masked batch labels:  62%|██████▎   | 1250/2000 [00:18<00:10, 68.37it/s, cycle_loss=0.0000, epoch=1251/2000, vae_loss=1353.4478]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1251/2000 [00:18<00:10, 68.37it/s, cycle_loss=0.0000, epoch=1252/2000, vae_loss=1366.5304]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1252/2000 [00:18<00:10, 68.37it/s, cycle_loss=0.0000, epoch=1253/2000, vae_loss=1384.0739]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1253/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1253/2000, vae_loss=1384.0739]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1253/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1254/2000, vae_loss=1423.8029]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1254/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1255/2000, vae_loss=1405.8676]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1255/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1256/2000, vae_loss=1338.5369]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1256/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1257/2000, vae_loss=1319.7019]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1257/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1258/2000, vae_loss=1415.4950]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1258/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1259/2000, vae_loss=1405.0342]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1259/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1260/2000, vae_loss=1349.1908]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1260/2000 [00:18<00:10, 68.76it/s, cycle_loss=0.0000, epoch=1261/2000, vae_loss=1364.5043]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1261/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1261/2000, vae_loss=1364.5043]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1261/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1262/2000, vae_loss=1364.8591]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1262/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1263/2000, vae_loss=1411.6824]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1263/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1264/2000, vae_loss=1415.0295]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1264/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1265/2000, vae_loss=1353.7272]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1265/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1266/2000, vae_loss=1357.6454]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1266/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1267/2000, vae_loss=1369.7968]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1267/2000 [00:18<00:10, 69.34it/s, cycle_loss=0.0000, epoch=1268/2000, vae_loss=1349.1371]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1268/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1268/2000, vae_loss=1349.1371]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1268/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1269/2000, vae_loss=1351.8369]
Training: VAE decoder with masked batch labels:  63%|██████▎   | 1269/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1270/2000, vae_loss=1396.7814]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1270/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1271/2000, vae_loss=1428.1737]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1271/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1272/2000, vae_loss=1391.8322]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1272/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1273/2000, vae_loss=1419.3739]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1273/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1274/2000, vae_loss=1395.2198]
Training: VAE decoder with masked batch labels:  64%|██████▎   | 1274/2000 [00:18<00:10, 69.42it/s, cycle_loss=0.0000, epoch=1275/2000, vae_loss=1358.0698]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1275/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1275/2000, vae_loss=1358.0698]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1275/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1276/2000, vae_loss=1345.5310]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1276/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1277/2000, vae_loss=1397.8250]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1277/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1278/2000, vae_loss=1373.9973]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1278/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1279/2000, vae_loss=1371.4087]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1279/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1280/2000, vae_loss=1326.9456]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1280/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1281/2000, vae_loss=1327.8744]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1281/2000 [00:18<00:10, 69.21it/s, cycle_loss=0.0000, epoch=1282/2000, vae_loss=1353.2566]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1282/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1282/2000, vae_loss=1353.2566]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1282/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1283/2000, vae_loss=1351.8582]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1283/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1284/2000, vae_loss=1362.7836]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1284/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1285/2000, vae_loss=1356.5834]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1285/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1286/2000, vae_loss=1338.9607]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1286/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1287/2000, vae_loss=1338.8429]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1287/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1288/2000, vae_loss=1311.0381]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1288/2000 [00:18<00:10, 68.86it/s, cycle_loss=0.0000, epoch=1289/2000, vae_loss=1352.3767]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1289/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1289/2000, vae_loss=1352.3767]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1289/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1290/2000, vae_loss=1352.0366]
Training: VAE decoder with masked batch labels:  64%|██████▍   | 1290/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1291/2000, vae_loss=1336.5446]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1291/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1292/2000, vae_loss=1419.4784]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1292/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1293/2000, vae_loss=1321.4991]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1293/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1294/2000, vae_loss=1382.2255]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1294/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1295/2000, vae_loss=1353.1295]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1295/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1296/2000, vae_loss=1384.5643]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1296/2000 [00:18<00:10, 68.94it/s, cycle_loss=0.0000, epoch=1297/2000, vae_loss=1393.3787]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1297/2000 [00:18<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1297/2000, vae_loss=1393.3787]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1297/2000 [00:18<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1298/2000, vae_loss=1378.9641]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1298/2000 [00:18<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1299/2000, vae_loss=1351.1620]
Training: VAE decoder with masked batch labels:  65%|██████▍   | 1299/2000 [00:18<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1300/2000, vae_loss=1345.3846]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1300/2000 [00:18<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1301/2000, vae_loss=1369.1486]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1301/2000 [00:18<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1302/2000, vae_loss=1361.7987]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1302/2000 [00:19<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1303/2000, vae_loss=1389.0844]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1303/2000 [00:19<00:10, 69.40it/s, cycle_loss=0.0000, epoch=1304/2000, vae_loss=1321.7539]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1304/2000 [00:19<00:10, 69.46it/s, cycle_loss=0.0000, epoch=1304/2000, vae_loss=1321.7539]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1304/2000 [00:19<00:10, 69.46it/s, cycle_loss=0.0000, epoch=1305/2000, vae_loss=1364.1758]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1305/2000 [00:19<00:10, 69.46it/s, cycle_loss=0.0000, epoch=1306/2000, vae_loss=1340.2135]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1306/2000 [00:19<00:09, 69.46it/s, cycle_loss=0.0000, epoch=1307/2000, vae_loss=1344.1736]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1307/2000 [00:19<00:09, 69.46it/s, cycle_loss=0.0000, epoch=1308/2000, vae_loss=1399.6052]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1308/2000 [00:19<00:09, 69.46it/s, cycle_loss=0.0000, epoch=1309/2000, vae_loss=1345.1342]
Training: VAE decoder with masked batch labels:  65%|██████▌   | 1309/2000 [00:19<00:09, 69.46it/s, cycle_loss=0.0000, epoch=1310/2000, vae_loss=1380.9126]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1310/2000 [00:19<00:09, 69.46it/s, cycle_loss=0.0000, epoch=1311/2000, vae_loss=1364.2340]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1311/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1311/2000, vae_loss=1364.2340]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1311/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1312/2000, vae_loss=1380.9746]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1312/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1313/2000, vae_loss=1373.1406]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1313/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1314/2000, vae_loss=1359.7393]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1314/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1315/2000, vae_loss=1414.1306]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1315/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1316/2000, vae_loss=1419.4009]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1316/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1317/2000, vae_loss=1378.7771]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1317/2000 [00:19<00:09, 69.36it/s, cycle_loss=0.0000, epoch=1318/2000, vae_loss=1355.1163]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1318/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1318/2000, vae_loss=1355.1163]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1318/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1319/2000, vae_loss=1398.9635]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1319/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1320/2000, vae_loss=1354.7090]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1320/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1321/2000, vae_loss=1308.7501]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1321/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1322/2000, vae_loss=1385.1921]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1322/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1323/2000, vae_loss=1285.7524]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1323/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1324/2000, vae_loss=1312.2980]
Training: VAE decoder with masked batch labels:  66%|██████▌   | 1324/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1325/2000, vae_loss=1402.9386]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1325/2000 [00:19<00:09, 69.29it/s, cycle_loss=0.0000, epoch=1326/2000, vae_loss=1352.2206]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1326/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1326/2000, vae_loss=1352.2206]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1326/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1327/2000, vae_loss=1340.7672]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1327/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1328/2000, vae_loss=1340.0793]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1328/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1329/2000, vae_loss=1326.5023]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1329/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1330/2000, vae_loss=1341.4781]
Training: VAE decoder with masked batch labels:  66%|██████▋   | 1330/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1331/2000, vae_loss=1312.6520]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1331/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1332/2000, vae_loss=1381.6289]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1332/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1333/2000, vae_loss=1353.0757]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1333/2000 [00:19<00:09, 69.72it/s, cycle_loss=0.0000, epoch=1334/2000, vae_loss=1401.1383]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1334/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1334/2000, vae_loss=1401.1383]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1334/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1335/2000, vae_loss=1346.0457]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1335/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1336/2000, vae_loss=1329.5465]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1336/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1337/2000, vae_loss=1339.3571]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1337/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1338/2000, vae_loss=1330.0426]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1338/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1339/2000, vae_loss=1337.8136]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1339/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1340/2000, vae_loss=1391.5092]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1340/2000 [00:19<00:09, 69.77it/s, cycle_loss=0.0000, epoch=1341/2000, vae_loss=1480.6787]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1341/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1341/2000, vae_loss=1480.6787]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1341/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1342/2000, vae_loss=1341.5397]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1342/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1343/2000, vae_loss=1295.7670]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1343/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1344/2000, vae_loss=1315.6406]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1344/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1345/2000, vae_loss=1425.4429]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1345/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1346/2000, vae_loss=1356.9021]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1346/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1347/2000, vae_loss=1382.4104]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1347/2000 [00:19<00:09, 69.17it/s, cycle_loss=0.0000, epoch=1348/2000, vae_loss=1414.9900]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1348/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1348/2000, vae_loss=1414.9900]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1348/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1349/2000, vae_loss=1366.1643]
Training: VAE decoder with masked batch labels:  67%|██████▋   | 1349/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1350/2000, vae_loss=1385.2758]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1350/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1351/2000, vae_loss=1373.9363]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1351/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1352/2000, vae_loss=1362.9712]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1352/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1353/2000, vae_loss=1385.2339]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1353/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1354/2000, vae_loss=1348.6343]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1354/2000 [00:19<00:09, 69.09it/s, cycle_loss=0.0000, epoch=1355/2000, vae_loss=1407.3043]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1355/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1355/2000, vae_loss=1407.3043]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1355/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1356/2000, vae_loss=1382.6282]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1356/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1357/2000, vae_loss=1331.7457]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1357/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1358/2000, vae_loss=1406.4935]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1358/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1359/2000, vae_loss=1331.3179]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1359/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1360/2000, vae_loss=1346.0060]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1360/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1361/2000, vae_loss=1414.9656]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1361/2000 [00:19<00:09, 68.52it/s, cycle_loss=0.0000, epoch=1362/2000, vae_loss=1333.7681]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1362/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1362/2000, vae_loss=1333.7681]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1362/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1363/2000, vae_loss=1350.4392]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1363/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1364/2000, vae_loss=1384.2823]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1364/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1365/2000, vae_loss=1418.1531]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1365/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1366/2000, vae_loss=1364.8225]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1366/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1367/2000, vae_loss=1336.0862]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1367/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1368/2000, vae_loss=1348.4204]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1368/2000 [00:19<00:09, 68.02it/s, cycle_loss=0.0000, epoch=1369/2000, vae_loss=1349.8625]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1369/2000 [00:19<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1369/2000, vae_loss=1349.8625]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1369/2000 [00:19<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1370/2000, vae_loss=1347.1953]
Training: VAE decoder with masked batch labels:  68%|██████▊   | 1370/2000 [00:19<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1371/2000, vae_loss=1297.4993]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 1371/2000 [00:20<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1372/2000, vae_loss=1331.5808]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 1372/2000 [00:20<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1373/2000, vae_loss=1412.1342]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 1373/2000 [00:20<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1374/2000, vae_loss=1333.8843]
Training: VAE decoder with masked batch labels:  69%|██████▊   | 1374/2000 [00:20<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1375/2000, vae_loss=1347.3134]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1375/2000 [00:20<00:09, 67.88it/s, cycle_loss=0.0000, epoch=1376/2000, vae_loss=1382.4154]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1376/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1376/2000, vae_loss=1382.4154]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1376/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1377/2000, vae_loss=1291.8225]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1377/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1378/2000, vae_loss=1407.1432]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1378/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1379/2000, vae_loss=1350.5940]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1379/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1380/2000, vae_loss=1320.9250]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1380/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1381/2000, vae_loss=1405.5238]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1381/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1382/2000, vae_loss=1301.0631]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1382/2000 [00:20<00:09, 68.38it/s, cycle_loss=0.0000, epoch=1383/2000, vae_loss=1300.2111]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1383/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1383/2000, vae_loss=1300.2111]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1383/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1384/2000, vae_loss=1330.3955]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1384/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1385/2000, vae_loss=1336.7117]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1385/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1386/2000, vae_loss=1392.4812]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1386/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1387/2000, vae_loss=1339.9252]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1387/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1388/2000, vae_loss=1365.3966]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1388/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1389/2000, vae_loss=1334.8007]
Training: VAE decoder with masked batch labels:  69%|██████▉   | 1389/2000 [00:20<00:09, 67.67it/s, cycle_loss=0.0000, epoch=1390/2000, vae_loss=1396.5687]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1390/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1390/2000, vae_loss=1396.5687]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1390/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1391/2000, vae_loss=1317.5897]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1391/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1392/2000, vae_loss=1372.2775]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1392/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1393/2000, vae_loss=1360.2238]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1393/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1394/2000, vae_loss=1397.7046]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1394/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1395/2000, vae_loss=1307.8673]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1395/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1396/2000, vae_loss=1407.9165]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1396/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1397/2000, vae_loss=1302.3053]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1397/2000 [00:20<00:08, 68.21it/s, cycle_loss=0.0000, epoch=1398/2000, vae_loss=1374.0374]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1398/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1398/2000, vae_loss=1374.0374]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1398/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1399/2000, vae_loss=1306.0728]
Training: VAE decoder with masked batch labels:  70%|██████▉   | 1399/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1400/2000, vae_loss=1361.4896]
Training: VAE decoder with masked batch labels:  70%|███████   | 1400/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1401/2000, vae_loss=1320.8912]
Training: VAE decoder with masked batch labels:  70%|███████   | 1401/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1402/2000, vae_loss=1330.5837]
Training: VAE decoder with masked batch labels:  70%|███████   | 1402/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1403/2000, vae_loss=1394.5568]
Training: VAE decoder with masked batch labels:  70%|███████   | 1403/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1404/2000, vae_loss=1342.5135]
Training: VAE decoder with masked batch labels:  70%|███████   | 1404/2000 [00:20<00:08, 69.10it/s, cycle_loss=0.0000, epoch=1405/2000, vae_loss=1376.5173]
Training: VAE decoder with masked batch labels:  70%|███████   | 1405/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1405/2000, vae_loss=1376.5173]
Training: VAE decoder with masked batch labels:  70%|███████   | 1405/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1406/2000, vae_loss=1366.6165]
Training: VAE decoder with masked batch labels:  70%|███████   | 1406/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1407/2000, vae_loss=1304.5103]
Training: VAE decoder with masked batch labels:  70%|███████   | 1407/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1408/2000, vae_loss=1392.5631]
Training: VAE decoder with masked batch labels:  70%|███████   | 1408/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1409/2000, vae_loss=1359.8369]
Training: VAE decoder with masked batch labels:  70%|███████   | 1409/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1410/2000, vae_loss=1339.7949]
Training: VAE decoder with masked batch labels:  70%|███████   | 1410/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1411/2000, vae_loss=1356.1294]
Training: VAE decoder with masked batch labels:  71%|███████   | 1411/2000 [00:20<00:08, 69.25it/s, cycle_loss=0.0000, epoch=1412/2000, vae_loss=1340.9487]
Training: VAE decoder with masked batch labels:  71%|███████   | 1412/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1412/2000, vae_loss=1340.9487]
Training: VAE decoder with masked batch labels:  71%|███████   | 1412/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1413/2000, vae_loss=1403.0269]
Training: VAE decoder with masked batch labels:  71%|███████   | 1413/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1414/2000, vae_loss=1371.2252]
Training: VAE decoder with masked batch labels:  71%|███████   | 1414/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1415/2000, vae_loss=1362.2732]
Training: VAE decoder with masked batch labels:  71%|███████   | 1415/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1416/2000, vae_loss=1283.3309]
Training: VAE decoder with masked batch labels:  71%|███████   | 1416/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1417/2000, vae_loss=1357.0959]
Training: VAE decoder with masked batch labels:  71%|███████   | 1417/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1418/2000, vae_loss=1310.3411]
Training: VAE decoder with masked batch labels:  71%|███████   | 1418/2000 [00:20<00:08, 69.36it/s, cycle_loss=0.0000, epoch=1419/2000, vae_loss=1318.7017]
Training: VAE decoder with masked batch labels:  71%|███████   | 1419/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1419/2000, vae_loss=1318.7017]
Training: VAE decoder with masked batch labels:  71%|███████   | 1419/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1420/2000, vae_loss=1350.5330]
Training: VAE decoder with masked batch labels:  71%|███████   | 1420/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1421/2000, vae_loss=1311.8694]
Training: VAE decoder with masked batch labels:  71%|███████   | 1421/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1422/2000, vae_loss=1390.5089]
Training: VAE decoder with masked batch labels:  71%|███████   | 1422/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1423/2000, vae_loss=1347.1730]
Training: VAE decoder with masked batch labels:  71%|███████   | 1423/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1424/2000, vae_loss=1345.0752]
Training: VAE decoder with masked batch labels:  71%|███████   | 1424/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1425/2000, vae_loss=1328.6627]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 1425/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1426/2000, vae_loss=1342.7830]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 1426/2000 [00:20<00:08, 69.20it/s, cycle_loss=0.0000, epoch=1427/2000, vae_loss=1342.1379]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 1427/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1427/2000, vae_loss=1342.1379]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 1427/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1428/2000, vae_loss=1307.6984]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 1428/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1429/2000, vae_loss=1331.2173]
Training: VAE decoder with masked batch labels:  71%|███████▏  | 1429/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1430/2000, vae_loss=1341.4983]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1430/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1431/2000, vae_loss=1361.9534]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1431/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1432/2000, vae_loss=1354.7908]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1432/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1433/2000, vae_loss=1359.7823]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1433/2000 [00:20<00:08, 69.92it/s, cycle_loss=0.0000, epoch=1434/2000, vae_loss=1316.7263]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1434/2000 [00:20<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1434/2000, vae_loss=1316.7263]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1434/2000 [00:20<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1435/2000, vae_loss=1321.5138]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1435/2000 [00:20<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1436/2000, vae_loss=1324.4890]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1436/2000 [00:20<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1437/2000, vae_loss=1344.9399]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1437/2000 [00:20<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1438/2000, vae_loss=1339.4086]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1438/2000 [00:20<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1439/2000, vae_loss=1337.8329]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1439/2000 [00:20<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1440/2000, vae_loss=1379.2866]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1440/2000 [00:21<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1441/2000, vae_loss=1339.7554]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1441/2000 [00:21<00:08, 69.83it/s, cycle_loss=0.0000, epoch=1442/2000, vae_loss=1307.1847]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1442/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1442/2000, vae_loss=1307.1847]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1442/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1443/2000, vae_loss=1348.4832]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1443/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1444/2000, vae_loss=1335.0377]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1444/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1445/2000, vae_loss=1395.2256]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1445/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1446/2000, vae_loss=1352.2209]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1446/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1447/2000, vae_loss=1317.7344]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1447/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1448/2000, vae_loss=1352.7228]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1448/2000 [00:21<00:07, 69.96it/s, cycle_loss=0.0000, epoch=1449/2000, vae_loss=1286.7249]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1449/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1449/2000, vae_loss=1286.7249]
Training: VAE decoder with masked batch labels:  72%|███████▏  | 1449/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1450/2000, vae_loss=1347.4247]
Training: VAE decoder with masked batch labels:  72%|███████▎  | 1450/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1451/2000, vae_loss=1336.5486]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1451/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1452/2000, vae_loss=1370.5109]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1452/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1453/2000, vae_loss=1339.2247]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1453/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1454/2000, vae_loss=1303.8102]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1454/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1455/2000, vae_loss=1350.3402]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1455/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1456/2000, vae_loss=1381.6608]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1456/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1456/2000, vae_loss=1381.6608]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1456/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1457/2000, vae_loss=1335.0869]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1457/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1458/2000, vae_loss=1380.8318]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1458/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1459/2000, vae_loss=1354.4324]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1459/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1460/2000, vae_loss=1350.2061]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1460/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1461/2000, vae_loss=1312.8341]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1461/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1462/2000, vae_loss=1342.1991]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1462/2000 [00:21<00:07, 69.63it/s, cycle_loss=0.0000, epoch=1463/2000, vae_loss=1362.8654]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1463/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1463/2000, vae_loss=1362.8654]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1463/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1464/2000, vae_loss=1385.2291]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1464/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1465/2000, vae_loss=1296.3237]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1465/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1466/2000, vae_loss=1313.9973]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1466/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1467/2000, vae_loss=1364.7361]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1467/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1468/2000, vae_loss=1321.2725]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1468/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1469/2000, vae_loss=1297.4752]
Training: VAE decoder with masked batch labels:  73%|███████▎  | 1469/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1470/2000, vae_loss=1346.6573]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 1470/2000 [00:21<00:07, 69.65it/s, cycle_loss=0.0000, epoch=1471/2000, vae_loss=1346.4305]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 1471/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1471/2000, vae_loss=1346.4305]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 1471/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1472/2000, vae_loss=1334.2393]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 1472/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1473/2000, vae_loss=1307.3429]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 1473/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1474/2000, vae_loss=1390.8975]
Training: VAE decoder with masked batch labels:  74%|███████▎  | 1474/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1475/2000, vae_loss=1328.8849]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1475/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1476/2000, vae_loss=1317.7341]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1476/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1477/2000, vae_loss=1372.3798]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1477/2000 [00:21<00:07, 69.91it/s, cycle_loss=0.0000, epoch=1478/2000, vae_loss=1283.6392]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1478/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1478/2000, vae_loss=1283.6392]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1478/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1479/2000, vae_loss=1324.0725]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1479/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1480/2000, vae_loss=1336.4915]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1480/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1481/2000, vae_loss=1427.8497]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1481/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1482/2000, vae_loss=1383.3838]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1482/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1483/2000, vae_loss=1338.1564]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1483/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1484/2000, vae_loss=1323.2996]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1484/2000 [00:21<00:07, 69.62it/s, cycle_loss=0.0000, epoch=1485/2000, vae_loss=1375.3573]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1485/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1485/2000, vae_loss=1375.3573]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1485/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1486/2000, vae_loss=1364.2568]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1486/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1487/2000, vae_loss=1309.4858]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1487/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1488/2000, vae_loss=1298.8011]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1488/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1489/2000, vae_loss=1343.0991]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1489/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1490/2000, vae_loss=1332.9360]
Training: VAE decoder with masked batch labels:  74%|███████▍  | 1490/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1491/2000, vae_loss=1337.3933]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1491/2000 [00:21<00:07, 69.21it/s, cycle_loss=0.0000, epoch=1492/2000, vae_loss=1305.6183]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1492/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1492/2000, vae_loss=1305.6183]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1492/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1493/2000, vae_loss=1306.5146]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1493/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1494/2000, vae_loss=1345.8828]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1494/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1495/2000, vae_loss=1353.7787]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1495/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1496/2000, vae_loss=1354.2316]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1496/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1497/2000, vae_loss=1354.6473]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1497/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1498/2000, vae_loss=1336.7909]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1498/2000 [00:21<00:07, 68.93it/s, cycle_loss=0.0000, epoch=1499/2000, vae_loss=1328.7740]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1499/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1499/2000, vae_loss=1328.7740]
Training: VAE decoder with masked batch labels:  75%|███████▍  | 1499/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1500/2000, vae_loss=1368.1611]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1500/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1501/2000, vae_loss=1346.3646]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1501/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1502/2000, vae_loss=1363.7200]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1502/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1503/2000, vae_loss=1342.1140]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1503/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1504/2000, vae_loss=1300.9430]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1504/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1505/2000, vae_loss=1300.8384]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1505/2000 [00:21<00:07, 68.51it/s, cycle_loss=0.0000, epoch=1506/2000, vae_loss=1332.6035]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1506/2000 [00:21<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1506/2000, vae_loss=1332.6035]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1506/2000 [00:21<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1507/2000, vae_loss=1344.4806]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1507/2000 [00:21<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1508/2000, vae_loss=1336.1652]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1508/2000 [00:21<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1509/2000, vae_loss=1344.7710]
Training: VAE decoder with masked batch labels:  75%|███████▌  | 1509/2000 [00:22<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1510/2000, vae_loss=1403.7382]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1510/2000 [00:22<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1511/2000, vae_loss=1354.9379]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1511/2000 [00:22<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1512/2000, vae_loss=1311.9587]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1512/2000 [00:22<00:07, 68.30it/s, cycle_loss=0.0000, epoch=1513/2000, vae_loss=1295.9286]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1513/2000 [00:22<00:07, 68.73it/s, cycle_loss=0.0000, epoch=1513/2000, vae_loss=1295.9286]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1513/2000 [00:22<00:07, 68.73it/s, cycle_loss=0.0000, epoch=1514/2000, vae_loss=1359.4189]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1514/2000 [00:22<00:07, 68.73it/s, cycle_loss=0.0000, epoch=1515/2000, vae_loss=1354.9224]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1515/2000 [00:22<00:07, 68.73it/s, cycle_loss=0.0000, epoch=1516/2000, vae_loss=1347.2433]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1516/2000 [00:22<00:07, 68.73it/s, cycle_loss=0.0000, epoch=1517/2000, vae_loss=1335.6362]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1517/2000 [00:22<00:07, 68.73it/s, cycle_loss=0.0000, epoch=1518/2000, vae_loss=1338.9929]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1518/2000 [00:22<00:07, 68.73it/s, cycle_loss=0.0000, epoch=1519/2000, vae_loss=1283.6146]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1519/2000 [00:22<00:06, 68.73it/s, cycle_loss=0.0000, epoch=1520/2000, vae_loss=1323.8625]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1520/2000 [00:22<00:07, 67.98it/s, cycle_loss=0.0000, epoch=1520/2000, vae_loss=1323.8625]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1520/2000 [00:22<00:07, 67.98it/s, cycle_loss=0.0000, epoch=1521/2000, vae_loss=1288.8390]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1521/2000 [00:22<00:07, 67.98it/s, cycle_loss=0.0000, epoch=1522/2000, vae_loss=1398.1687]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1522/2000 [00:22<00:07, 67.98it/s, cycle_loss=0.0000, epoch=1523/2000, vae_loss=1363.8402]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1523/2000 [00:22<00:07, 67.98it/s, cycle_loss=0.0000, epoch=1524/2000, vae_loss=1336.4888]
Training: VAE decoder with masked batch labels:  76%|███████▌  | 1524/2000 [00:22<00:07, 67.98it/s, cycle_loss=0.0000, epoch=1525/2000, vae_loss=1429.6602]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 1525/2000 [00:22<00:06, 67.98it/s, cycle_loss=0.0000, epoch=1526/2000, vae_loss=1300.0747]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 1526/2000 [00:22<00:06, 67.98it/s, cycle_loss=0.0000, epoch=1527/2000, vae_loss=1305.8121]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 1527/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1527/2000, vae_loss=1305.8121]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 1527/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1528/2000, vae_loss=1289.6461]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 1528/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1529/2000, vae_loss=1359.8235]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 1529/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1530/2000, vae_loss=1350.7727]
Training: VAE decoder with masked batch labels:  76%|███████▋  | 1530/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1531/2000, vae_loss=1295.8521]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1531/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1532/2000, vae_loss=1324.2229]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1532/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1533/2000, vae_loss=1317.4879]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1533/2000 [00:22<00:06, 67.89it/s, cycle_loss=0.0000, epoch=1534/2000, vae_loss=1320.4906]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1534/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1534/2000, vae_loss=1320.4906]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1534/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1535/2000, vae_loss=1278.6150]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1535/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1536/2000, vae_loss=1290.0325]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1536/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1537/2000, vae_loss=1339.1947]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1537/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1538/2000, vae_loss=1367.6488]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1538/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1539/2000, vae_loss=1370.7983]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1539/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1540/2000, vae_loss=1327.6958]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1540/2000 [00:22<00:06, 67.70it/s, cycle_loss=0.0000, epoch=1541/2000, vae_loss=1352.0292]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1541/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1541/2000, vae_loss=1352.0292]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1541/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1542/2000, vae_loss=1278.5828]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1542/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1543/2000, vae_loss=1350.6892]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1543/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1544/2000, vae_loss=1354.1992]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1544/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1545/2000, vae_loss=1353.6842]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1545/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1546/2000, vae_loss=1359.6309]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1546/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1547/2000, vae_loss=1349.0029]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1547/2000 [00:22<00:06, 67.49it/s, cycle_loss=0.0000, epoch=1548/2000, vae_loss=1338.9885]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1548/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1548/2000, vae_loss=1338.9885]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1548/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1549/2000, vae_loss=1392.8293]
Training: VAE decoder with masked batch labels:  77%|███████▋  | 1549/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1550/2000, vae_loss=1359.3700]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1550/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1551/2000, vae_loss=1324.1525]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1551/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1552/2000, vae_loss=1351.8735]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1552/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1553/2000, vae_loss=1327.7019]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1553/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1554/2000, vae_loss=1358.7281]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1554/2000 [00:22<00:06, 67.33it/s, cycle_loss=0.0000, epoch=1555/2000, vae_loss=1289.8101]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1555/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1555/2000, vae_loss=1289.8101]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1555/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1556/2000, vae_loss=1393.5400]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1556/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1557/2000, vae_loss=1328.2666]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1557/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1558/2000, vae_loss=1340.1075]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1558/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1559/2000, vae_loss=1313.6116]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1559/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1560/2000, vae_loss=1360.3562]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1560/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1561/2000, vae_loss=1333.1262]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1561/2000 [00:22<00:06, 67.24it/s, cycle_loss=0.0000, epoch=1562/2000, vae_loss=1363.9031]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1562/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1562/2000, vae_loss=1363.9031]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1562/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1563/2000, vae_loss=1380.6410]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1563/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1564/2000, vae_loss=1345.3722]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1564/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1565/2000, vae_loss=1331.5601]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1565/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1566/2000, vae_loss=1292.5750]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1566/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1567/2000, vae_loss=1318.1082]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1567/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1568/2000, vae_loss=1336.0558]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1568/2000 [00:22<00:06, 67.03it/s, cycle_loss=0.0000, epoch=1569/2000, vae_loss=1313.0454]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1569/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1569/2000, vae_loss=1313.0454]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1569/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1570/2000, vae_loss=1428.7471]
Training: VAE decoder with masked batch labels:  78%|███████▊  | 1570/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1571/2000, vae_loss=1349.1790]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 1571/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1572/2000, vae_loss=1308.3904]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 1572/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1573/2000, vae_loss=1374.2644]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 1573/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1574/2000, vae_loss=1340.1483]
Training: VAE decoder with masked batch labels:  79%|███████▊  | 1574/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1575/2000, vae_loss=1333.1239]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1575/2000 [00:22<00:06, 67.37it/s, cycle_loss=0.0000, epoch=1576/2000, vae_loss=1351.4281]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1576/2000 [00:22<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1576/2000, vae_loss=1351.4281]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1576/2000 [00:23<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1577/2000, vae_loss=1362.7257]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1577/2000 [00:23<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1578/2000, vae_loss=1321.1772]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1578/2000 [00:23<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1579/2000, vae_loss=1364.5109]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1579/2000 [00:23<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1580/2000, vae_loss=1273.7653]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1580/2000 [00:23<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1581/2000, vae_loss=1336.9019]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1581/2000 [00:23<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1582/2000, vae_loss=1367.0463]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1582/2000 [00:23<00:06, 67.18it/s, cycle_loss=0.0000, epoch=1583/2000, vae_loss=1379.1018]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1583/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1583/2000, vae_loss=1379.1018]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1583/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1584/2000, vae_loss=1346.1354]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1584/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1585/2000, vae_loss=1320.3394]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1585/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1586/2000, vae_loss=1375.6943]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1586/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1587/2000, vae_loss=1330.7273]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1587/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1588/2000, vae_loss=1335.1852]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1588/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1589/2000, vae_loss=1353.4650]
Training: VAE decoder with masked batch labels:  79%|███████▉  | 1589/2000 [00:23<00:06, 66.83it/s, cycle_loss=0.0000, epoch=1590/2000, vae_loss=1295.8392]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1590/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1590/2000, vae_loss=1295.8392]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1590/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1591/2000, vae_loss=1364.8434]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1591/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1592/2000, vae_loss=1366.1730]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1592/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1593/2000, vae_loss=1323.6257]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1593/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1594/2000, vae_loss=1279.2889]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1594/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1595/2000, vae_loss=1322.2351]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1595/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1596/2000, vae_loss=1342.2352]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1596/2000 [00:23<00:06, 66.75it/s, cycle_loss=0.0000, epoch=1597/2000, vae_loss=1292.7993]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1597/2000 [00:23<00:06, 66.49it/s, cycle_loss=0.0000, epoch=1597/2000, vae_loss=1292.7993]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1597/2000 [00:23<00:06, 66.49it/s, cycle_loss=0.0000, epoch=1598/2000, vae_loss=1297.2252]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1598/2000 [00:23<00:06, 66.49it/s, cycle_loss=0.0000, epoch=1599/2000, vae_loss=1297.5900]
Training: VAE decoder with masked batch labels:  80%|███████▉  | 1599/2000 [00:23<00:06, 66.49it/s, cycle_loss=0.0000, epoch=1600/2000, vae_loss=1306.3928]
Training: VAE decoder with masked batch labels:  80%|████████  | 1600/2000 [00:23<00:06, 66.49it/s, cycle_loss=0.0000, epoch=1601/2000, vae_loss=1354.6644]
Training: VAE decoder with masked batch labels:  80%|████████  | 1601/2000 [00:23<00:06, 66.49it/s, cycle_loss=0.0000, epoch=1602/2000, vae_loss=1328.7789]
Training: VAE decoder with masked batch labels:  80%|████████  | 1602/2000 [00:23<00:05, 66.49it/s, cycle_loss=0.0000, epoch=1603/2000, vae_loss=1340.6353]
Training: VAE decoder with masked batch labels:  80%|████████  | 1603/2000 [00:23<00:05, 66.49it/s, cycle_loss=0.0000, epoch=1604/2000, vae_loss=1380.1381]
Training: VAE decoder with masked batch labels:  80%|████████  | 1604/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1604/2000, vae_loss=1380.1381]
Training: VAE decoder with masked batch labels:  80%|████████  | 1604/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1605/2000, vae_loss=1323.1332]
Training: VAE decoder with masked batch labels:  80%|████████  | 1605/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1606/2000, vae_loss=1327.6829]
Training: VAE decoder with masked batch labels:  80%|████████  | 1606/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1607/2000, vae_loss=1370.7438]
Training: VAE decoder with masked batch labels:  80%|████████  | 1607/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1608/2000, vae_loss=1330.3940]
Training: VAE decoder with masked batch labels:  80%|████████  | 1608/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1609/2000, vae_loss=1275.6667]
Training: VAE decoder with masked batch labels:  80%|████████  | 1609/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1610/2000, vae_loss=1319.7262]
Training: VAE decoder with masked batch labels:  80%|████████  | 1610/2000 [00:23<00:05, 66.69it/s, cycle_loss=0.0000, epoch=1611/2000, vae_loss=1328.5544]
Training: VAE decoder with masked batch labels:  81%|████████  | 1611/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1611/2000, vae_loss=1328.5544]
Training: VAE decoder with masked batch labels:  81%|████████  | 1611/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1612/2000, vae_loss=1285.4570]
Training: VAE decoder with masked batch labels:  81%|████████  | 1612/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1613/2000, vae_loss=1306.1177]
Training: VAE decoder with masked batch labels:  81%|████████  | 1613/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1614/2000, vae_loss=1329.3406]
Training: VAE decoder with masked batch labels:  81%|████████  | 1614/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1615/2000, vae_loss=1314.2965]
Training: VAE decoder with masked batch labels:  81%|████████  | 1615/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1616/2000, vae_loss=1350.1671]
Training: VAE decoder with masked batch labels:  81%|████████  | 1616/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1617/2000, vae_loss=1327.4487]
Training: VAE decoder with masked batch labels:  81%|████████  | 1617/2000 [00:23<00:05, 66.92it/s, cycle_loss=0.0000, epoch=1618/2000, vae_loss=1286.3031]
Training: VAE decoder with masked batch labels:  81%|████████  | 1618/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1618/2000, vae_loss=1286.3031]
Training: VAE decoder with masked batch labels:  81%|████████  | 1618/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1619/2000, vae_loss=1299.9888]
Training: VAE decoder with masked batch labels:  81%|████████  | 1619/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1620/2000, vae_loss=1288.5306]
Training: VAE decoder with masked batch labels:  81%|████████  | 1620/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1621/2000, vae_loss=1285.3330]
Training: VAE decoder with masked batch labels:  81%|████████  | 1621/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1622/2000, vae_loss=1310.1335]
Training: VAE decoder with masked batch labels:  81%|████████  | 1622/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1623/2000, vae_loss=1344.1495]
Training: VAE decoder with masked batch labels:  81%|████████  | 1623/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1624/2000, vae_loss=1315.6577]
Training: VAE decoder with masked batch labels:  81%|████████  | 1624/2000 [00:23<00:05, 66.74it/s, cycle_loss=0.0000, epoch=1625/2000, vae_loss=1282.9208]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 1625/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1625/2000, vae_loss=1282.9208]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 1625/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1626/2000, vae_loss=1332.7185]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 1626/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1627/2000, vae_loss=1306.5956]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 1627/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1628/2000, vae_loss=1350.7567]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 1628/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1629/2000, vae_loss=1349.7335]
Training: VAE decoder with masked batch labels:  81%|████████▏ | 1629/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1630/2000, vae_loss=1373.8757]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1630/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1631/2000, vae_loss=1281.5752]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1631/2000 [00:23<00:05, 66.78it/s, cycle_loss=0.0000, epoch=1632/2000, vae_loss=1305.5333]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1632/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1632/2000, vae_loss=1305.5333]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1632/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1633/2000, vae_loss=1282.4231]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1633/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1634/2000, vae_loss=1339.5322]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1634/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1635/2000, vae_loss=1325.9083]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1635/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1636/2000, vae_loss=1306.6759]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1636/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1637/2000, vae_loss=1343.0673]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1637/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1638/2000, vae_loss=1324.9019]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1638/2000 [00:23<00:05, 66.07it/s, cycle_loss=0.0000, epoch=1639/2000, vae_loss=1301.2539]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1639/2000 [00:23<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1639/2000, vae_loss=1301.2539]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1639/2000 [00:23<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1640/2000, vae_loss=1363.4131]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1640/2000 [00:23<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1641/2000, vae_loss=1311.8981]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1641/2000 [00:23<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1642/2000, vae_loss=1317.4700]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1642/2000 [00:23<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1643/2000, vae_loss=1320.8977]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1643/2000 [00:24<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1644/2000, vae_loss=1330.4894]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1644/2000 [00:24<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1645/2000, vae_loss=1342.4865]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1645/2000 [00:24<00:05, 66.99it/s, cycle_loss=0.0000, epoch=1646/2000, vae_loss=1335.9408]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1646/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1646/2000, vae_loss=1335.9408]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1646/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1647/2000, vae_loss=1340.1541]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1647/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1648/2000, vae_loss=1295.2454]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1648/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1649/2000, vae_loss=1300.8842]
Training: VAE decoder with masked batch labels:  82%|████████▏ | 1649/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1650/2000, vae_loss=1322.8074]
Training: VAE decoder with masked batch labels:  82%|████████▎ | 1650/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1651/2000, vae_loss=1349.1481]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1651/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1652/2000, vae_loss=1333.8583]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1652/2000 [00:24<00:05, 67.74it/s, cycle_loss=0.0000, epoch=1653/2000, vae_loss=1299.8562]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1653/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1653/2000, vae_loss=1299.8562]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1653/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1654/2000, vae_loss=1310.4897]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1654/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1655/2000, vae_loss=1283.8685]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1655/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1656/2000, vae_loss=1309.2554]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1656/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1657/2000, vae_loss=1358.0547]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1657/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1658/2000, vae_loss=1399.8339]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1658/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1659/2000, vae_loss=1324.5380]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1659/2000 [00:24<00:05, 67.79it/s, cycle_loss=0.0000, epoch=1660/2000, vae_loss=1372.6248]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1660/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1660/2000, vae_loss=1372.6248]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1660/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1661/2000, vae_loss=1305.7990]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1661/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1662/2000, vae_loss=1318.0649]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1662/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1663/2000, vae_loss=1305.4769]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1663/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1664/2000, vae_loss=1296.0244]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1664/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1665/2000, vae_loss=1299.5210]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1665/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1666/2000, vae_loss=1307.6628]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1666/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1667/2000, vae_loss=1289.9590]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1667/2000 [00:24<00:04, 68.02it/s, cycle_loss=0.0000, epoch=1668/2000, vae_loss=1341.9442]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1668/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1668/2000, vae_loss=1341.9442]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1668/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1669/2000, vae_loss=1291.6971]
Training: VAE decoder with masked batch labels:  83%|████████▎ | 1669/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1670/2000, vae_loss=1344.8279]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 1670/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1671/2000, vae_loss=1328.5203]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 1671/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1672/2000, vae_loss=1321.0828]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 1672/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1673/2000, vae_loss=1347.6102]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 1673/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1674/2000, vae_loss=1316.8215]
Training: VAE decoder with masked batch labels:  84%|████████▎ | 1674/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1675/2000, vae_loss=1325.4230]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1675/2000 [00:24<00:04, 68.85it/s, cycle_loss=0.0000, epoch=1676/2000, vae_loss=1334.6609]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1676/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1676/2000, vae_loss=1334.6609]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1676/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1677/2000, vae_loss=1291.6096]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1677/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1678/2000, vae_loss=1324.8867]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1678/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1679/2000, vae_loss=1300.3038]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1679/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1680/2000, vae_loss=1278.7391]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1680/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1681/2000, vae_loss=1336.5532]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1681/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1682/2000, vae_loss=1318.0491]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1682/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1683/2000, vae_loss=1297.3354]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1683/2000 [00:24<00:04, 69.08it/s, cycle_loss=0.0000, epoch=1684/2000, vae_loss=1341.0769]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1684/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1684/2000, vae_loss=1341.0769]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1684/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1685/2000, vae_loss=1361.2362]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1685/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1686/2000, vae_loss=1332.1077]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1686/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1687/2000, vae_loss=1390.5515]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1687/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1688/2000, vae_loss=1291.0619]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1688/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1689/2000, vae_loss=1339.8776]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1689/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1690/2000, vae_loss=1318.7843]
Training: VAE decoder with masked batch labels:  84%|████████▍ | 1690/2000 [00:24<00:04, 69.52it/s, cycle_loss=0.0000, epoch=1691/2000, vae_loss=1340.8723]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1691/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1691/2000, vae_loss=1340.8723]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1691/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1692/2000, vae_loss=1316.3384]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1692/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1693/2000, vae_loss=1238.3992]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1693/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1694/2000, vae_loss=1339.8882]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1694/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1695/2000, vae_loss=1331.2056]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1695/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1696/2000, vae_loss=1309.0330]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1696/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1697/2000, vae_loss=1312.0801]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1697/2000 [00:24<00:04, 69.30it/s, cycle_loss=0.0000, epoch=1698/2000, vae_loss=1286.3379]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1698/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1698/2000, vae_loss=1286.3379]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1698/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1699/2000, vae_loss=1290.3240]
Training: VAE decoder with masked batch labels:  85%|████████▍ | 1699/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1700/2000, vae_loss=1302.5575]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1700/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1701/2000, vae_loss=1332.2411]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1701/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1702/2000, vae_loss=1263.1580]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1702/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1703/2000, vae_loss=1351.0887]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1703/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1704/2000, vae_loss=1348.1765]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1704/2000 [00:24<00:04, 69.13it/s, cycle_loss=0.0000, epoch=1705/2000, vae_loss=1320.0919]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1705/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1705/2000, vae_loss=1320.0919]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1705/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1706/2000, vae_loss=1269.0757]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1706/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1707/2000, vae_loss=1275.3782]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1707/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1708/2000, vae_loss=1313.7131]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1708/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1709/2000, vae_loss=1311.1318]
Training: VAE decoder with masked batch labels:  85%|████████▌ | 1709/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1710/2000, vae_loss=1304.6377]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1710/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1711/2000, vae_loss=1283.2111]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1711/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1712/2000, vae_loss=1359.3295]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1712/2000 [00:24<00:04, 69.32it/s, cycle_loss=0.0000, epoch=1713/2000, vae_loss=1295.9883]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1713/2000 [00:24<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1713/2000, vae_loss=1295.9883]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1713/2000 [00:25<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1714/2000, vae_loss=1293.4810]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1714/2000 [00:25<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1715/2000, vae_loss=1312.6224]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1715/2000 [00:25<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1716/2000, vae_loss=1305.7362]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1716/2000 [00:25<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1717/2000, vae_loss=1277.2866]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1717/2000 [00:25<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1718/2000, vae_loss=1323.7866]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1718/2000 [00:25<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1719/2000, vae_loss=1293.0195]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1719/2000 [00:25<00:04, 69.93it/s, cycle_loss=0.0000, epoch=1720/2000, vae_loss=1290.3300]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1720/2000 [00:25<00:04, 69.63it/s, cycle_loss=0.0000, epoch=1720/2000, vae_loss=1290.3300]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1720/2000 [00:25<00:04, 69.63it/s, cycle_loss=0.0000, epoch=1721/2000, vae_loss=1322.9823]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1721/2000 [00:25<00:04, 69.63it/s, cycle_loss=0.0000, epoch=1722/2000, vae_loss=1278.9375]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1722/2000 [00:25<00:03, 69.63it/s, cycle_loss=0.0000, epoch=1723/2000, vae_loss=1353.2736]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1723/2000 [00:25<00:03, 69.63it/s, cycle_loss=0.0000, epoch=1724/2000, vae_loss=1295.1899]
Training: VAE decoder with masked batch labels:  86%|████████▌ | 1724/2000 [00:25<00:03, 69.63it/s, cycle_loss=0.0000, epoch=1725/2000, vae_loss=1364.0820]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 1725/2000 [00:25<00:03, 69.63it/s, cycle_loss=0.0000, epoch=1726/2000, vae_loss=1306.4504]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 1726/2000 [00:25<00:03, 69.63it/s, cycle_loss=0.0000, epoch=1727/2000, vae_loss=1277.4614]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 1727/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1727/2000, vae_loss=1277.4614]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 1727/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1728/2000, vae_loss=1283.8884]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 1728/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1729/2000, vae_loss=1309.8344]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 1729/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1730/2000, vae_loss=1332.0024]
Training: VAE decoder with masked batch labels:  86%|████████▋ | 1730/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1731/2000, vae_loss=1326.2728]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1731/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1732/2000, vae_loss=1321.9216]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1732/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1733/2000, vae_loss=1287.5765]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1733/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1734/2000, vae_loss=1330.7128]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1734/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1734/2000, vae_loss=1330.7128]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1734/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1735/2000, vae_loss=1260.8656]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1735/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1736/2000, vae_loss=1314.5845]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1736/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1737/2000, vae_loss=1285.2070]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1737/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1738/2000, vae_loss=1308.7036]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1738/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1739/2000, vae_loss=1309.6304]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1739/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1740/2000, vae_loss=1295.7383]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1740/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1741/2000, vae_loss=1333.2306]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1741/2000 [00:25<00:03, 69.32it/s, cycle_loss=0.0000, epoch=1742/2000, vae_loss=1305.7155]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1742/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1742/2000, vae_loss=1305.7155]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1742/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1743/2000, vae_loss=1252.7716]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1743/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1744/2000, vae_loss=1276.0156]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1744/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1745/2000, vae_loss=1314.7426]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1745/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1746/2000, vae_loss=1387.5028]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1746/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1747/2000, vae_loss=1332.4827]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1747/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1748/2000, vae_loss=1292.1936]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1748/2000 [00:25<00:03, 69.96it/s, cycle_loss=0.0000, epoch=1749/2000, vae_loss=1269.7925]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1749/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1749/2000, vae_loss=1269.7925]
Training: VAE decoder with masked batch labels:  87%|████████▋ | 1749/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1750/2000, vae_loss=1355.2673]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1750/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1751/2000, vae_loss=1333.3672]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1751/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1752/2000, vae_loss=1301.2635]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1752/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1753/2000, vae_loss=1328.1091]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1753/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1754/2000, vae_loss=1345.2922]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1754/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1755/2000, vae_loss=1290.2749]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1755/2000 [00:25<00:03, 69.88it/s, cycle_loss=0.0000, epoch=1756/2000, vae_loss=1289.5859]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1756/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1756/2000, vae_loss=1289.5859]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1756/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1757/2000, vae_loss=1266.9144]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1757/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1758/2000, vae_loss=1341.0399]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1758/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1759/2000, vae_loss=1338.3896]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1759/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1760/2000, vae_loss=1288.5316]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1760/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1761/2000, vae_loss=1263.7579]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1761/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1762/2000, vae_loss=1301.9952]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1762/2000 [00:25<00:03, 69.34it/s, cycle_loss=0.0000, epoch=1763/2000, vae_loss=1328.8788]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1763/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1763/2000, vae_loss=1328.8788]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1763/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1764/2000, vae_loss=1342.5563]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1764/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1765/2000, vae_loss=1341.5469]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1765/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1766/2000, vae_loss=1284.3035]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1766/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1767/2000, vae_loss=1330.0245]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1767/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1768/2000, vae_loss=1349.8696]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1768/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1769/2000, vae_loss=1305.5099]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1769/2000 [00:25<00:03, 69.38it/s, cycle_loss=0.0000, epoch=1770/2000, vae_loss=1303.5098]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1770/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1770/2000, vae_loss=1303.5098]
Training: VAE decoder with masked batch labels:  88%|████████▊ | 1770/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1771/2000, vae_loss=1377.8685]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 1771/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1772/2000, vae_loss=1271.8958]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 1772/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1773/2000, vae_loss=1260.7310]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 1773/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1774/2000, vae_loss=1297.9419]
Training: VAE decoder with masked batch labels:  89%|████████▊ | 1774/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1775/2000, vae_loss=1296.8865]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1775/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1776/2000, vae_loss=1277.0956]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1776/2000 [00:25<00:03, 68.83it/s, cycle_loss=0.0000, epoch=1777/2000, vae_loss=1375.1792]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1777/2000 [00:25<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1777/2000, vae_loss=1375.1792]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1777/2000 [00:25<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1778/2000, vae_loss=1307.6268]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1778/2000 [00:25<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1779/2000, vae_loss=1266.3766]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1779/2000 [00:25<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1780/2000, vae_loss=1239.3217]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1780/2000 [00:25<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1781/2000, vae_loss=1302.9723]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1781/2000 [00:25<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1782/2000, vae_loss=1320.0670]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1782/2000 [00:26<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1783/2000, vae_loss=1327.4169]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1783/2000 [00:26<00:03, 68.59it/s, cycle_loss=0.0000, epoch=1784/2000, vae_loss=1291.7170]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1784/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1784/2000, vae_loss=1291.7170]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1784/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1785/2000, vae_loss=1375.3550]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1785/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1786/2000, vae_loss=1260.4039]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1786/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1787/2000, vae_loss=1296.7871]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1787/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1788/2000, vae_loss=1271.3708]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1788/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1789/2000, vae_loss=1270.3167]
Training: VAE decoder with masked batch labels:  89%|████████▉ | 1789/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1790/2000, vae_loss=1359.1375]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1790/2000 [00:26<00:03, 68.86it/s, cycle_loss=0.0000, epoch=1791/2000, vae_loss=1289.3115]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1791/2000 [00:26<00:03, 68.61it/s, cycle_loss=0.0000, epoch=1791/2000, vae_loss=1289.3115]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1791/2000 [00:26<00:03, 68.61it/s, cycle_loss=0.0000, epoch=1792/2000, vae_loss=1316.9116]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1792/2000 [00:26<00:03, 68.61it/s, cycle_loss=0.0000, epoch=1793/2000, vae_loss=1366.2252]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1793/2000 [00:26<00:03, 68.61it/s, cycle_loss=0.0000, epoch=1794/2000, vae_loss=1364.2593]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1794/2000 [00:26<00:03, 68.61it/s, cycle_loss=0.0000, epoch=1795/2000, vae_loss=1279.6310]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1795/2000 [00:26<00:02, 68.61it/s, cycle_loss=0.0000, epoch=1796/2000, vae_loss=1357.6530]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1796/2000 [00:26<00:02, 68.61it/s, cycle_loss=0.0000, epoch=1797/2000, vae_loss=1335.5601]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1797/2000 [00:26<00:02, 68.61it/s, cycle_loss=0.0000, epoch=1798/2000, vae_loss=1302.0476]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1798/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1798/2000, vae_loss=1302.0476]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1798/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1799/2000, vae_loss=1277.8285]
Training: VAE decoder with masked batch labels:  90%|████████▉ | 1799/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1800/2000, vae_loss=1266.0773]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1800/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1801/2000, vae_loss=1346.4944]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1801/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1802/2000, vae_loss=1250.1246]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1802/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1803/2000, vae_loss=1299.6680]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1803/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1804/2000, vae_loss=1276.6881]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1804/2000 [00:26<00:02, 68.47it/s, cycle_loss=0.0000, epoch=1805/2000, vae_loss=1296.5629]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1805/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1805/2000, vae_loss=1296.5629]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1805/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1806/2000, vae_loss=1317.0432]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1806/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1807/2000, vae_loss=1313.8650]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1807/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1808/2000, vae_loss=1237.7559]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1808/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1809/2000, vae_loss=1289.0792]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1809/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1810/2000, vae_loss=1297.0607]
Training: VAE decoder with masked batch labels:  90%|█████████ | 1810/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1811/2000, vae_loss=1290.4590]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1811/2000 [00:26<00:02, 68.04it/s, cycle_loss=0.0000, epoch=1812/2000, vae_loss=1340.9399]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1812/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1812/2000, vae_loss=1340.9399]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1812/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1813/2000, vae_loss=1366.9827]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1813/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1814/2000, vae_loss=1245.1455]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1814/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1815/2000, vae_loss=1281.7844]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1815/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1816/2000, vae_loss=1285.6986]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1816/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1817/2000, vae_loss=1297.6777]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1817/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1818/2000, vae_loss=1309.1633]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1818/2000 [00:26<00:02, 67.94it/s, cycle_loss=0.0000, epoch=1819/2000, vae_loss=1282.6357]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1819/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1819/2000, vae_loss=1282.6357]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1819/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1820/2000, vae_loss=1357.5048]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1820/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1821/2000, vae_loss=1303.7500]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1821/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1822/2000, vae_loss=1310.2532]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1822/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1823/2000, vae_loss=1295.5127]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1823/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1824/2000, vae_loss=1284.8435]
Training: VAE decoder with masked batch labels:  91%|█████████ | 1824/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1825/2000, vae_loss=1353.1681]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 1825/2000 [00:26<00:02, 67.61it/s, cycle_loss=0.0000, epoch=1826/2000, vae_loss=1318.5699]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 1826/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1826/2000, vae_loss=1318.5699]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 1826/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1827/2000, vae_loss=1329.7765]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 1827/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1828/2000, vae_loss=1262.3679]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 1828/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1829/2000, vae_loss=1232.2921]
Training: VAE decoder with masked batch labels:  91%|█████████▏| 1829/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1830/2000, vae_loss=1305.7388]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1830/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1831/2000, vae_loss=1268.5874]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1831/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1832/2000, vae_loss=1300.6615]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1832/2000 [00:26<00:02, 67.71it/s, cycle_loss=0.0000, epoch=1833/2000, vae_loss=1257.4517]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1833/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1833/2000, vae_loss=1257.4517]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1833/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1834/2000, vae_loss=1318.0503]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1834/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1835/2000, vae_loss=1291.3090]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1835/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1836/2000, vae_loss=1292.4185]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1836/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1837/2000, vae_loss=1289.5826]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1837/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1838/2000, vae_loss=1233.3932]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1838/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1839/2000, vae_loss=1346.7170]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1839/2000 [00:26<00:02, 67.09it/s, cycle_loss=0.0000, epoch=1840/2000, vae_loss=1321.5405]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1840/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1840/2000, vae_loss=1321.5405]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1840/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1841/2000, vae_loss=1275.1777]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1841/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1842/2000, vae_loss=1241.6895]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1842/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1843/2000, vae_loss=1276.7477]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1843/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1844/2000, vae_loss=1279.3402]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1844/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1845/2000, vae_loss=1314.5391]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1845/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1846/2000, vae_loss=1247.0781]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1846/2000 [00:26<00:02, 67.05it/s, cycle_loss=0.0000, epoch=1847/2000, vae_loss=1325.8572]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1847/2000 [00:26<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1847/2000, vae_loss=1325.8572]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1847/2000 [00:26<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1848/2000, vae_loss=1284.0280]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1848/2000 [00:26<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1849/2000, vae_loss=1270.7382]
Training: VAE decoder with masked batch labels:  92%|█████████▏| 1849/2000 [00:27<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1850/2000, vae_loss=1302.2637]
Training: VAE decoder with masked batch labels:  92%|█████████▎| 1850/2000 [00:27<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1851/2000, vae_loss=1285.9451]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1851/2000 [00:27<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1852/2000, vae_loss=1379.8364]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1852/2000 [00:27<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1853/2000, vae_loss=1291.1998]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1853/2000 [00:27<00:02, 67.28it/s, cycle_loss=0.0000, epoch=1854/2000, vae_loss=1319.6832]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1854/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1854/2000, vae_loss=1319.6832]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1854/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1855/2000, vae_loss=1325.0092]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1855/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1856/2000, vae_loss=1306.0354]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1856/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1857/2000, vae_loss=1254.6284]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1857/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1858/2000, vae_loss=1288.8250]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1858/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1859/2000, vae_loss=1286.6445]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1859/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1860/2000, vae_loss=1273.9718]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1860/2000 [00:27<00:02, 67.33it/s, cycle_loss=0.0000, epoch=1861/2000, vae_loss=1328.3180]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1861/2000 [00:27<00:02, 66.97it/s, cycle_loss=0.0000, epoch=1861/2000, vae_loss=1328.3180]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1861/2000 [00:27<00:02, 66.97it/s, cycle_loss=0.0000, epoch=1862/2000, vae_loss=1274.9271]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1862/2000 [00:27<00:02, 66.97it/s, cycle_loss=0.0000, epoch=1863/2000, vae_loss=1300.8440]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1863/2000 [00:27<00:02, 66.97it/s, cycle_loss=0.0000, epoch=1864/2000, vae_loss=1313.3441]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1864/2000 [00:27<00:02, 66.97it/s, cycle_loss=0.0000, epoch=1865/2000, vae_loss=1300.6903]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1865/2000 [00:27<00:02, 66.97it/s, cycle_loss=0.0000, epoch=1866/2000, vae_loss=1305.8683]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1866/2000 [00:27<00:02, 66.97it/s, cycle_loss=0.0000, epoch=1867/2000, vae_loss=1309.6248]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1867/2000 [00:27<00:01, 66.97it/s, cycle_loss=0.0000, epoch=1868/2000, vae_loss=1301.7286]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1868/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1868/2000, vae_loss=1301.7286]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1868/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1869/2000, vae_loss=1295.7738]
Training: VAE decoder with masked batch labels:  93%|█████████▎| 1869/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1870/2000, vae_loss=1296.0135]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 1870/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1871/2000, vae_loss=1276.9500]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 1871/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1872/2000, vae_loss=1299.1581]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 1872/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1873/2000, vae_loss=1290.6246]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 1873/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1874/2000, vae_loss=1267.4092]
Training: VAE decoder with masked batch labels:  94%|█████████▎| 1874/2000 [00:27<00:01, 66.81it/s, cycle_loss=0.0000, epoch=1875/2000, vae_loss=1297.5295]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1875/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1875/2000, vae_loss=1297.5295]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1875/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1876/2000, vae_loss=1326.4237]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1876/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1877/2000, vae_loss=1280.5266]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1877/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1878/2000, vae_loss=1259.5287]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1878/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1879/2000, vae_loss=1252.5344]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1879/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1880/2000, vae_loss=1301.1235]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1880/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1881/2000, vae_loss=1347.0350]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1881/2000 [00:27<00:01, 67.09it/s, cycle_loss=0.0000, epoch=1882/2000, vae_loss=1241.2532]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1882/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1882/2000, vae_loss=1241.2532]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1882/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1883/2000, vae_loss=1340.8477]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1883/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1884/2000, vae_loss=1275.5852]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1884/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1885/2000, vae_loss=1272.0729]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1885/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1886/2000, vae_loss=1313.8500]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1886/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1887/2000, vae_loss=1282.2134]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1887/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1888/2000, vae_loss=1289.1964]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1888/2000 [00:27<00:01, 67.20it/s, cycle_loss=0.0000, epoch=1889/2000, vae_loss=1265.4839]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1889/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1889/2000, vae_loss=1265.4839]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1889/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1890/2000, vae_loss=1279.2794]
Training: VAE decoder with masked batch labels:  94%|█████████▍| 1890/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1891/2000, vae_loss=1284.0586]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1891/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1892/2000, vae_loss=1261.9091]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1892/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1893/2000, vae_loss=1269.2496]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1893/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1894/2000, vae_loss=1319.4355]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1894/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1895/2000, vae_loss=1240.7212]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1895/2000 [00:27<00:01, 66.52it/s, cycle_loss=0.0000, epoch=1896/2000, vae_loss=1309.8113]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1896/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1896/2000, vae_loss=1309.8113]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1896/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1897/2000, vae_loss=1273.4442]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1897/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1898/2000, vae_loss=1276.2511]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1898/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1899/2000, vae_loss=1324.7328]
Training: VAE decoder with masked batch labels:  95%|█████████▍| 1899/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1900/2000, vae_loss=1335.2888]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1900/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1901/2000, vae_loss=1292.6957]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1901/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1902/2000, vae_loss=1308.4772]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1902/2000 [00:27<00:01, 67.05it/s, cycle_loss=0.0000, epoch=1903/2000, vae_loss=1306.6268]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1903/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1903/2000, vae_loss=1306.6268]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1903/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1904/2000, vae_loss=1253.6021]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1904/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1905/2000, vae_loss=1278.1232]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1905/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1906/2000, vae_loss=1260.4659]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1906/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1907/2000, vae_loss=1308.6180]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1907/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1908/2000, vae_loss=1301.3107]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1908/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1909/2000, vae_loss=1272.5096]
Training: VAE decoder with masked batch labels:  95%|█████████▌| 1909/2000 [00:27<00:01, 67.07it/s, cycle_loss=0.0000, epoch=1910/2000, vae_loss=1254.5376]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1910/2000 [00:27<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1910/2000, vae_loss=1254.5376]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1910/2000 [00:27<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1911/2000, vae_loss=1256.9265]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1911/2000 [00:27<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1912/2000, vae_loss=1246.0784]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1912/2000 [00:27<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1913/2000, vae_loss=1341.0967]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1913/2000 [00:27<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1914/2000, vae_loss=1294.8558]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1914/2000 [00:27<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1915/2000, vae_loss=1323.1440]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1915/2000 [00:27<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1916/2000, vae_loss=1314.6099]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1916/2000 [00:28<00:01, 66.89it/s, cycle_loss=0.0000, epoch=1917/2000, vae_loss=1286.9479]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1917/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1917/2000, vae_loss=1286.9479]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1917/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1918/2000, vae_loss=1259.9476]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1918/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1919/2000, vae_loss=1310.1597]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1919/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1920/2000, vae_loss=1297.8594]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1920/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1921/2000, vae_loss=1274.9758]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1921/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1922/2000, vae_loss=1304.2805]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1922/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1923/2000, vae_loss=1324.3547]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1923/2000 [00:28<00:01, 67.36it/s, cycle_loss=0.0000, epoch=1924/2000, vae_loss=1330.7589]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1924/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1924/2000, vae_loss=1330.7589]
Training: VAE decoder with masked batch labels:  96%|█████████▌| 1924/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1925/2000, vae_loss=1384.8302]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 1925/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1926/2000, vae_loss=1310.1067]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 1926/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1927/2000, vae_loss=1316.9067]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 1927/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1928/2000, vae_loss=1285.7321]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 1928/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1929/2000, vae_loss=1290.9927]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 1929/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1930/2000, vae_loss=1306.9219]
Training: VAE decoder with masked batch labels:  96%|█████████▋| 1930/2000 [00:28<00:01, 67.44it/s, cycle_loss=0.0000, epoch=1931/2000, vae_loss=1270.2321]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1931/2000 [00:28<00:01, 67.72it/s, cycle_loss=0.0000, epoch=1931/2000, vae_loss=1270.2321]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1931/2000 [00:28<00:01, 67.72it/s, cycle_loss=0.0000, epoch=1932/2000, vae_loss=1317.4822]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1932/2000 [00:28<00:01, 67.72it/s, cycle_loss=0.0000, epoch=1933/2000, vae_loss=1259.7972]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1933/2000 [00:28<00:00, 67.72it/s, cycle_loss=0.0000, epoch=1934/2000, vae_loss=1289.5548]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1934/2000 [00:28<00:00, 67.72it/s, cycle_loss=0.0000, epoch=1935/2000, vae_loss=1266.2667]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1935/2000 [00:28<00:00, 67.72it/s, cycle_loss=0.0000, epoch=1936/2000, vae_loss=1274.2362]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1936/2000 [00:28<00:00, 67.72it/s, cycle_loss=0.0000, epoch=1937/2000, vae_loss=1334.3076]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1937/2000 [00:28<00:00, 67.72it/s, cycle_loss=0.0000, epoch=1938/2000, vae_loss=1269.2219]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1938/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1938/2000, vae_loss=1269.2219]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1938/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1939/2000, vae_loss=1269.5369]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1939/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1940/2000, vae_loss=1351.4806]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1940/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1941/2000, vae_loss=1325.8052]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1941/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1942/2000, vae_loss=1279.9391]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1942/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1943/2000, vae_loss=1311.1466]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1943/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1944/2000, vae_loss=1272.8057]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1944/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1945/2000, vae_loss=1266.0328]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1945/2000 [00:28<00:00, 68.24it/s, cycle_loss=0.0000, epoch=1946/2000, vae_loss=1273.9651]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1946/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1946/2000, vae_loss=1273.9651]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1946/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1947/2000, vae_loss=1298.9998]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1947/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1948/2000, vae_loss=1293.0259]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1948/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1949/2000, vae_loss=1315.6462]
Training: VAE decoder with masked batch labels:  97%|█████████▋| 1949/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1950/2000, vae_loss=1253.8564]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1950/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1951/2000, vae_loss=1276.3246]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1951/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1952/2000, vae_loss=1299.9067]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1952/2000 [00:28<00:00, 69.12it/s, cycle_loss=0.0000, epoch=1953/2000, vae_loss=1321.0936]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1953/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1953/2000, vae_loss=1321.0936]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1953/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1954/2000, vae_loss=1308.7262]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1954/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1955/2000, vae_loss=1335.9668]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1955/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1956/2000, vae_loss=1241.7452]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1956/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1957/2000, vae_loss=1333.4175]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1957/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1958/2000, vae_loss=1284.5188]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1958/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1959/2000, vae_loss=1328.2904]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1959/2000 [00:28<00:00, 69.13it/s, cycle_loss=0.0000, epoch=1960/2000, vae_loss=1308.8260]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1960/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1960/2000, vae_loss=1308.8260]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1960/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1961/2000, vae_loss=1338.9868]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1961/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1962/2000, vae_loss=1327.3114]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1962/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1963/2000, vae_loss=1286.7753]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1963/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1964/2000, vae_loss=1290.0354]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1964/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1965/2000, vae_loss=1284.7401]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1965/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1966/2000, vae_loss=1286.9379]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1966/2000 [00:28<00:00, 69.19it/s, cycle_loss=0.0000, epoch=1967/2000, vae_loss=1326.7842]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1967/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1967/2000, vae_loss=1326.7842]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1967/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1968/2000, vae_loss=1291.8156]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1968/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1969/2000, vae_loss=1256.7991]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1969/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1970/2000, vae_loss=1260.3309]
Training: VAE decoder with masked batch labels:  98%|█████████▊| 1970/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1971/2000, vae_loss=1331.5244]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 1971/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1972/2000, vae_loss=1269.3910]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 1972/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1973/2000, vae_loss=1327.7831]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 1973/2000 [00:28<00:00, 68.76it/s, cycle_loss=0.0000, epoch=1974/2000, vae_loss=1292.1373]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 1974/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1974/2000, vae_loss=1292.1373]
Training: VAE decoder with masked batch labels:  99%|█████████▊| 1974/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1975/2000, vae_loss=1320.1296]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1975/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1976/2000, vae_loss=1283.9827]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1976/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1977/2000, vae_loss=1312.8158]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1977/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1978/2000, vae_loss=1292.1143]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1978/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1979/2000, vae_loss=1272.0242]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1979/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1980/2000, vae_loss=1236.1462]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1980/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1981/2000, vae_loss=1257.6567]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1981/2000 [00:28<00:00, 68.73it/s, cycle_loss=0.0000, epoch=1982/2000, vae_loss=1329.5616]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1982/2000 [00:28<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1982/2000, vae_loss=1329.5616]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1982/2000 [00:28<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1983/2000, vae_loss=1281.7383]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1983/2000 [00:28<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1984/2000, vae_loss=1297.0486]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1984/2000 [00:28<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1985/2000, vae_loss=1265.9558]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1985/2000 [00:29<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1986/2000, vae_loss=1252.7952]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1986/2000 [00:29<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1987/2000, vae_loss=1237.0658]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1987/2000 [00:29<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1988/2000, vae_loss=1265.2443]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1988/2000 [00:29<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1989/2000, vae_loss=1281.8132]
Training: VAE decoder with masked batch labels:  99%|█████████▉| 1989/2000 [00:29<00:00, 69.15it/s, cycle_loss=0.0000, epoch=1990/2000, vae_loss=1253.0830]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1990/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1990/2000, vae_loss=1253.0830]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1990/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1991/2000, vae_loss=1292.7471]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1991/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1992/2000, vae_loss=1329.1687]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1992/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1993/2000, vae_loss=1280.9882]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1993/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1994/2000, vae_loss=1350.1234]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1994/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1995/2000, vae_loss=1318.3496]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1995/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1996/2000, vae_loss=1268.3060]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1996/2000 [00:29<00:00, 69.36it/s, cycle_loss=0.0000, epoch=1997/2000, vae_loss=1276.2795]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1997/2000 [00:29<00:00, 69.17it/s, cycle_loss=0.0000, epoch=1997/2000, vae_loss=1276.2795]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1997/2000 [00:29<00:00, 69.17it/s, cycle_loss=0.0000, epoch=1998/2000, vae_loss=1248.8373]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1998/2000 [00:29<00:00, 69.17it/s, cycle_loss=0.0000, epoch=1999/2000, vae_loss=1292.2915]
Training: VAE decoder with masked batch labels: 100%|█████████▉| 1999/2000 [00:29<00:00, 69.17it/s, cycle_loss=0.0000, epoch=2000/2000, vae_loss=1300.7505]
Training: VAE decoder with masked batch labels: 100%|██████████| 2000/2000 [00:29<00:00, 68.48it/s, cycle_loss=0.0000, epoch=2000/2000, vae_loss=1300.7505]

After training the abaco model we can use it to reconstruct the AD dataset without the batch variance while keeping the biological variance.


ABaCo data reconstruction#

To reconstruct the dataset we use the method metaABaco.correct().

# Reconstruct the dataset using the trained ABaCo model
corrected_dataset = model.correct(seed=42)

# 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.

Conclusion#

The goal was to:

✅ correct the batch effect (reduce clustering of points by colour)

✅ maintain biological variance (maintain separation of circles and sequares)

A brief visual inspection of the PCoA of the reconstructed AD data suggests that ABaCo reduced the batch effect associated with processing the samples on different days, while still retaining the variance due to the experimental condition of lower vs higher phenol concentration.