Files
reverse-SynthID/gui/Launch SynthID Cleaner.command
Aina Olaoluwa 9b0f8d1a26 Add drag-and-drop GUI for the V3 spectral bypass
Small Tkinter app: drop images in, get SynthID-cleaned copies out,
with an option to strip EXIF/XMP/IPTC metadata from the output.
Runs offline on the existing V3 codebook, no PyTorch required.
2026-07-15 13:53:59 +01:00

12 lines
237 B
Bash
Executable File

#!/bin/bash
cd "$(dirname "$0")"
if [ ! -d venv ]; then
python3 -m venv venv
source venv/bin/activate
pip install --quiet --upgrade pip
pip install --quiet -r requirements-gui.txt
else
source venv/bin/activate
fi
python gui.py