Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 673 Bytes

README.md

File metadata and controls

23 lines (21 loc) · 673 Bytes

satellite_forests_generation

Generating forests on satellite images

Pre-Install (If you want to use GPU)

  1. Install Docker
  2. Install Nvidia Docker Container Runtime
  3. Set "default-runtime" : "nvidia" in /etc/docker/daemon.json:
    {
        "default-runtime": "nvidia",
        "runtimes": {
            "nvidia": {
                "path": "nvidia-container-runtime",
                "runtimeArgs": []
            }
        }
    }
  4. Restart Docker:
sudo systemctl restart docker