Skip to content

Latest commit

 

History

History
85 lines (71 loc) · 6.52 KB

experiments.md

File metadata and controls

85 lines (71 loc) · 6.52 KB

Experiments

In this note you can find a brief overview of the current setup and dataset description.

While working on the project, I encountered various aspects, including the ease of conducting experiments. All parts of the neural network are implemented in a highly flexible manner and configured through JSON. Integration with Weights&Biases is also implemented.

The configs/experiments folder contains the configuration files for the experiments, along with some optional customizations for them. You can start the training process for an experiment using the following command:

python3 train.py --config configs/basic.json --config configs/experiments/[config name 1] --config configs/experiments/[config name N]

More about the command-line arguments can be found in the scripts.md file.

Folder structure and brief description of some of the currently available experiments:

  • single-pass folder contains the experiments with single-pass restorator, which is the simplest one.
  • autoregressive folder contains the experiments with autoregressive restorator.
    • autoregressive/direction.json - in this experiment, the decoder is trained to predict the direction from the current color towards correct one. During the inference, the sampler starts from the random color and then iteratively restores the original color.
    • autoregressive/ar-ddim-extended.json - this is tweaked version of the diffusion approach implemented in terms of autoregressive restorator and interpolants.
    • autoregressive/ar-ddim-extended-V.json - same as above, but with the V-objective (predicting the mix of the initial noise and the correct value).
  • diffusion folder contains the experiments with diffusion restorator.
    • diffusion/ddpm.json - diffusion restorator that uses DDPM sampler.
    • diffusion/ddim.json - exactly the same as above, but restorator uses the DDIM sampler instead of the DDPM one. This sampler skips the steps of the diffusion process, so it is faster.

In the root of the configs/experiments folder, there are some common customizations for the experiments:

  • complex-encoder.json - This config file contains customizations for the encoder. It uses a more complex encoder architecture that provides more flexibility for feature extraction from the input image.
  • masking.json - Enables the masking of the input image during the training process. The input image is split into 16x16 grid of patches, and then random masking is applied to up to 75% of the patches. The neural network should not only restore the color of the image but also the masked patches. You can see the example of the masked image here. (other masking-*.json are the same, but with different grid sizes and other parameters)
  • sd-halton.json - customize the way noise is sampled during the training process. In some cases, quasi-random sequences can be used as a replacement for normally distributed noise. The specified range is -4 to 4, which corresponds to 4 sigmas of the normal distribution.
  • sd-resampled.json - This config file is similar to the previous one, but it uses resampled noise instead of quasi-random noise.

Reports, results, and todo-list

NOTE: please be aware that the training process involves a significant level of sparsity, which leads to very noisy metrics. When it was reasonable, I tried to run the training process multiple times and then averaged the results. However, in some cases, I had to use the results from a single run.

Models to be trained:

  • Train with 8x8 masking grid, residual predictions, huber-10 loss
    • Single-pass
    • Autoregressive direction
    • Autoregressive DDIM with V-objective
  • Single-pass restorator
    • Basic
    • With masking (up to 75% of patches are masked)
      • 16x16 grid
      • 8x8 grid
      • 4x4 grid
      • Other grid sizes
    • With complex encoder
  • Diffusion restorator
    • DDPM sampler (save each epoch to cherry-pick the best one later for each parameters set of the DDIM sampler)
      • Basic
      • With halton quasi-random noise
      • With loss weighting
  • Autoregressive restorator
    • Direction
    • DDIM extended with V-objective

Studies to be conducted:

  • Compare with and without masking
  • Compare with and without complex encoder
  • Compare different parameters for DDIM sampler, compare with DDPM
  • Compare different parameters for autoregressive "direction" restorator sampler
  • Visualize the trajectories of the color values during the sampling process
  • Compare different model sizes (600k, x4, x16?)
  • Compare different noise sampling methods (normal, halton, resampled)
  • Try to use different random generator to sample points for training (uniform, halton, structured, structured noisy)
  • Investigation of incorporating additional information into the input image, such as edge detection and adding it as an extra channel
  • Comparison of inference times for different models
  • Utilization of masks with sizes based on prime numbers
  • Compare learnable time encoding with cosine time encoding
  • Study the impact of encoder architecture
    • complex encoder
    • attention
    • transformers
    • MLP mixers
    • backbone networks
    • batch/group normalization
  • Study the impact of decoder architecture (shared/autoregressive blocks, single MLP block)
  • Training on CelebA-HQ dataset (input size 64x64, but the supervised loss is calculated on 1024x1024, instead of 178x178)
  • Stronger augmentations (shifts, scaling, blurring)
  • Train diffusion restorator until convergence (instead of 15 epochs) and check the influence of the noise projection parameter
  • Compare performance of different encoders kernels (1x1, 3x3, 5x5 (default), 7x7)