Quickstart#
Install Anaconda
Perform the installation by copying and pasting the following comands into your Anaconda Prompt (Windows) or Terminal (Max/Linux)
Create a new anaconda environment:
conda create -yn skoots python=3.10Activate the anaconda environment:
conda activate skoots

You will have to activate the skoots conda environment every time you re launch terminal!
Install pytorch for CPU ONLY:
conda install pytorch torchvision cpuonly -c pytorchInstall skoots and dependencies:
pip install skoots --upgrade

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

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"