mirror of
https://github.com/wiltodelta/remove-ai-watermarks.git
synced 2026-06-05 02:28:00 +02:00
729f5f2ecd
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
582 B
Python
15 lines
582 B
Python
"""Remove-AI-Watermarks: Unified tool for removing visible and invisible AI watermarks."""
|
|
|
|
import os as _os
|
|
import warnings as _warnings
|
|
|
|
# transformers prints a noisy deprecation for the Siglip2ImageProcessorFast
|
|
# alias when it is imported (by the optional GPU/ML path). Silence it before
|
|
# any submodule pulls transformers in, so the CLI startup stays quiet. Uses
|
|
# setdefault so a user-set TRANSFORMERS_VERBOSITY still wins.
|
|
_os.environ.setdefault("TRANSFORMERS_VERBOSITY", "error")
|
|
_warnings.filterwarnings("ignore", message=r".*ImageProcessorFast.*")
|
|
|
|
|
|
__version__ = "0.8.2"
|