mirror of
https://github.com/wiltodelta/remove-ai-watermarks.git
synced 2026-07-04 23:47:49 +02:00
719c7e9313
21k user-pull images under data/spaces/ were untracked but not ignored, so a stray `git add -A` could have committed them. Add the ignore entry alongside the other local-data paths; the dir stays local analysis only, never a committed corpus. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
# Dependencies
|
|
.venv/
|
|
__pycache__/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Environment secrets
|
|
.env
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# SynthID corpus reference fills (synthetic black/white calibration tiles,
|
|
# regenerable; the labeled pos/neg/cleaned images ARE tracked, see README)
|
|
data/synthid_corpus/refs/
|
|
|
|
# Reference materials
|
|
_refs/
|
|
|
|
# Downloaded model weights
|
|
yolov8n.pt
|
|
.coverage
|
|
|
|
# Claude Code local settings
|
|
.claude/settings.local.json
|
|
.claude/scheduled_tasks.lock
|
|
|
|
# Visible-watermark alpha calibration. The solid black/gray/white CAPTURES are
|
|
# committed (content-free: a solid colour + the watermark; the source for
|
|
# scripts/visible_alpha_solve.py so the alpha assets are reproducible). The
|
|
# synthetic seeds (regenerable) and any real-content validation download (a real
|
|
# generated scene, kept local for privacy) are NOT committed.
|
|
data/doubao_capture/seeds/
|
|
data/jimeng_capture/seeds/
|
|
data/jimeng_capture/captures/jimeng_content_*.png
|
|
data/gemini_capture/seeds/
|
|
data/gemini_capture/captures/gemini_content_*.png
|
|
data/samsung_capture/seeds/
|
|
data/samsung_capture/captures/samsung_content_*
|
|
|
|
# Leftover GFPGAN weights dir from the retired face-restore experiments
|
|
# (GFPGAN wrote RetinaFace/parsing weights to a CWD ./gfpgan/weights/ working
|
|
# dir on first use). Runtime artifact, never committed.
|
|
gfpgan/
|
|
|
|
# Qwen ControlNet experiment outputs (throwaway eval; never the committed corpus)
|
|
scripts/_qwen_exp_out/
|
|
|
|
# Local-only working data for analysis (not a committed corpus; never tracked)
|
|
data/spaces/
|