mirror of
https://github.com/aloshdenny/reverse-SynthID.git
synced 2026-05-01 02:57:50 +02:00
b308c4b341
Images are now hosted at https://huggingface.co/datasets/aoxo/reverse-synthid to keep the git repo lightweight (~1.3GB of images removed). Changes: - Remove gemini_black/, gemini_white/, gemini_random/, gemini_*_nb_pro/ from git - Add these folders to .gitignore - Add scripts/download_images.py to fetch images from HF - Update README: contribution guide points to HF dataset, add download instructions Relates to #15
45 lines
487 B
Plaintext
45 lines
487 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
.venv/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
*.npy
|
|
*.pkl
|
|
!artifacts/codebook/*.pkl
|
|
|
|
# Reference images (hosted on HF: https://huggingface.co/datasets/aoxo/reverse-synthid)
|
|
gemini_black/
|
|
gemini_white/
|
|
gemini_random/
|
|
gemini_black_nb_pro/
|
|
gemini_white_nb_pro/
|
|
|
|
# Secrets
|
|
.env
|
|
|
|
# Temporary
|
|
*.tmp
|
|
*.log
|
|
_temp_*
|
|
_output_*
|
|
push_randomly.sh
|
|
synthid_bypass.py.final
|