wm-detection / run.py
TheFrenchDemos's picture
implemented core generation + detection
f747801
raw
history blame contribute delete
269 Bytes
"""
Main entry point for the watermark detection application.
Run with: python run.py
docker build -t wm-interactive .
docker run -p 7860:7860 wm-interactive
"""
from wm_interactive.web.app import app
if __name__ == "__main__":
app.run(host='0.0.0.0', port=7860)