I believe torchvision is missing from the requirements. Also, it would be great if there was a standard setuptools compatible setup.py or setup.cfg here.
Also, in Dockerfile there's a mistake on the last line:
RUN git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI & pip install easyimages
This will give:
/bin/sh: 1: git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI: not found
Perhaps you meant:
RUN pip install easyimages pycocotools
I believe
torchvisionis missing from the requirements. Also, it would be great if there was a standard setuptools compatiblesetup.pyorsetup.cfghere.Also, in Dockerfile there's a mistake on the last line:
RUN git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI & pip install easyimagesThis will give:
Perhaps you meant:
RUN pip install easyimages pycocotools