Docker ensures everything is preconfigured, set up, and ready to go.
Requirements:
Run the following terminal command from the root of this project:
docker build --no-cache -t model-oid-seg .Once you have the Docker instance built, you can spin it up and run a specific python script:
docker run --name fbc model-oid-seg python3 get_masks.py trainIf you are on a high-end computer with an Nvidia Graphics Card that supports CUDA, you can add the --gpus=all to docker run to enable CUDA support. Just replace docker run with docker run --gpus=all
