File size: 998 Bytes
2a630ca
 
eaadfaf
 
2a630ca
eaadfaf
7946e82
2a630ca
7946e82
2a630ca
eaadfaf
 
7946e82
 
 
2a630ca
7946e82
2a630ca
 
7946e82
 
 
 
250d4a0
2a630ca
 
7946e82
 
 
 
 
 
 
 
eaadfaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
library_name: diffusers
pipeline_tag: image-to-image
license: mit
---

## EQ-VAE: Equivariance Regularized Latent Space for Improved Generative Image Modeling

**EQ-VAE** regularizes the latent space of pretrained autoencoders by enforcing equivariance under scaling and rotation transformations. 

Project page: https://eq-vae.github.io/.

---
#### Model Description 
This model is a regularized version of [SD-VAE](https://github.com/CompVis/latent-diffusion). We finetune it with EQ-VAE regularization  for 5 epochs on OpenImages.

## Model Usage


2. **Loading the Model**  
   You can load the model from the Hugging Face Hub:
   ```python
   from transformers import AutoencoderKL
   model = AutoencoderKL.from_pretrained("zelaki/eq-vae")

#### Metrics
Reconstruction performance of eq-vae-ema on Imagenet Validation Set.

| **Metric** | **Score** |
|------------|-----------|
| **FID**    | 0.82      |
| **PSNR**   | 25.95     |
| **LPIPS**  | 0.141     |
| **SSIM**   | 0.72      |
---