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.
1from transformers import AutoModel
2model = AutoModel.from_pretrained("vinhsmoke/image_reflection_removal", trust_remote_code = True)