CoolFace
Apppublic

Anonymous-123/ImageNet-Editing

sourceHugging Facecreativeml-openrail-mupdated 4y agoView on Hugging Face
1likes
1from optimization.image_editor import ImageEditor2from optimization.arguments import get_arguments3 4 5if __name__ == "__main__":6    args = get_arguments()7    image_editor = ImageEditor(args)8    image_editor.edit_image_by_prompt()9    # image_editor.reconstruct_image()10