mirror of
https://github.com/aloshdenny/reverse-SynthID.git
synced 2026-08-09 07:26:03 +02:00
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.
12 lines
237 B
Bash
Executable File
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
|