Unofficial python API for DeepStack. Provides class for making requests to the object detection endpoint, and functions for processing the result. See the Jupyter notebooks for usage. Run deepstack (CPU, noAVX mode):
docker run -e VISION-DETECTION=True -e VISION-FACE=True -e MODE=High -d \
-v localstorage:/datastore -p 5000:5000 \
-e API-KEY="Mysecretkey" \
--name deepstack deepquestai/deepstack:noavx
- Use
venv->source venv/bin/activate pip install -r requirements-dev.txt- Run tests with
venv/bin/pytest tests/* - Black format with
venv/bin/black deepstack/core.pyandvenv/bin/black tests/test_deepstack.py