Spaces:
Running
Running
| """ | |
| 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) |