When running the Demo code on Docker, it took me a while before noticing that I needed to bind both $PWD/data and $PWD/temp (if I want the raw scores) when running the container. I would suggest adding a section to the README about executing the Demo on Docker and include something like the following snippet:
docker run -it \
--rm \
--name midas \
--volume $PWD/data:/MIDAS/data \
--volume $PWD/temp:/MIDAS/temp \
midas
Any thoughts?