wm-detection / run.py
TheFrenchDemos's picture
first app - tokenization works
b0c3821
raw
history blame
260 Bytes
"""
Main entry point for the watermark detection application.
Run with: python run.py
docker build -t wm-detector .
docker run -p 7860:7860 wm-detector
"""
from wm_detector.web.app import app
if __name__ == "__main__":
app.run(host='0.0.0.0', port=7860)