├── .gitignore ├── Procfile ├── README.md ├── app.py ├── assets ├── dash_detr.gif └── default.min.css ├── model.py ├── random_urls.txt ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/model.cpython-37.pyc 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:server --workers 2 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-detr/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-detr/HEAD/app.py -------------------------------------------------------------------------------- /assets/dash_detr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-detr/HEAD/assets/dash_detr.gif -------------------------------------------------------------------------------- /assets/default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-detr/HEAD/assets/default.min.css -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-detr/HEAD/model.py -------------------------------------------------------------------------------- /random_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-detr/HEAD/random_urls.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-detr/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.6 --------------------------------------------------------------------------------