Skip to content
This repository was archived by the owner on Sep 16, 2026. It is now read-only.

Latest commit

 

History

History
35 lines (20 loc) · 1.1 KB

File metadata and controls

35 lines (20 loc) · 1.1 KB

Find By Color Logo

↤ BACK

Using Docker

Docker ensures everything is preconfigured, set up, and ready to go.

Requirements:

New Container

Run the following terminal command from the root of this project:

docker build --no-cache -t model-oid-seg .

Run CLI Commands

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 train

Run Docker in CUDA Mode

If 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


Previous Step   Next Step