File size: 455 Bytes
57708ff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ---
license: mit
---
# Image Reflection Removal Model
## Model Description
This is a Pix2Pix GAN model trained to remove reflections from images (e.g. windows, glasses). The generator is a U-Net with skip connections, trained on 512 image pairs.
## Average Performance
- PSNR : 26.9058
- SSIM : 0.8881
## Usage
```python
from transformers import AutoModel
model = AutoModel.from_pretrained("vinhsmoke/image_reflection_removal", trust_remote_code = True) |