Quickstart#

  1. Install Anaconda

  2. Perform the installation by copying and pasting the following comands into your Anaconda Prompt (Windows) or Terminal (Max/Linux)

  3. Create a new anaconda environment: conda create -yn skoots python=3.10

  4. Activate the anaconda environment: conda activate skoots

Warning

You will have to activate the skoots conda environment every time you re launch terminal!

  1. Install pytorch for CPU ONLY: conda install pytorch torchvision cpuonly -c pytorch

  2. Install skoots and dependencies: pip install skoots --upgrade

Warning

It is strongly recommended you follow the installation guide for correct installation!

Warning

Follow the detailed installation guide to enable GPU acceleration.

Train a SKOOTS model:

  • Create a configuration file for training

  • Run in terminal: skoots-train --config-file "path/to/config/file.yaml"

Evalulate a SKOOTS model:

  • Run in terminal: skoots --pretrained-checkpoint "model.trch" --image "image.tif"