Metadata-Version: 2.1
Name: pumaguard
Version: 19.post16
Summary: 
Home-page: http://pumaguard.rtfd.io/
Author: Nicolas Bock
Author-email: nicolasbock@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: and-cuda
Requires-Dist: matplotlib (>=3.10,<4.0)
Requires-Dist: packaging (>=25.0,<26.0)
Requires-Dist: pandas (>=2.3,<3.0)
Requires-Dist: pillow (>=11.1,<12.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: requests (>=2.32,<3.0)
Requires-Dist: tensorflow (>=2.20,<3.0)
Requires-Dist: ultralytics (>=8.3,<9.0)
Project-URL: Repository, https://github.com/PEEC-Nature-Youth-Group/pumaguard
Description-Content-Type: text/markdown

# PumaGuard

[![Build and Test Webpage](https://github.com/PEEC-Nature-Youth-Group/pumaguard/actions/workflows/build-webpage.yaml/badge.svg)](https://github.com/PEEC-Nature-Youth-Group/pumaguard/actions/workflows/build-webpage.yaml)

[![Test and package code](https://github.com/PEEC-Nature-Youth-Group/pumaguard/actions/workflows/test-and-package.yaml/badge.svg)](https://github.com/PEEC-Nature-Youth-Group/pumaguard/actions/workflows/test-and-package.yaml)

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/PEEC-Nature-Youth-Group/pumaguard)

[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com)

## Introduction

Please visit <http://pumaguard.rtfd.io/> for more information.

## Get PumaGuard

[![PyPI - Version](https://img.shields.io/pypi/v/pumaguard)](https://pypi.org/project/pumaguard/)

## GitHub Codespaces

If you do not want to install any new software on your computer you can use
GitHub Codespaces, which provide a development environment in your browser.

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/PEEC-Nature-Youth-Group/pumaguard/)

## Local Development Environment

A local development environment can be created by using the `poetry` tool,
which can be installed with

```console
sudo apt install python3-poetry
```

Run

```console
poetry install
```

To install all of the necessary Python modules.

## Running the scripts on colab.research.google.com

[Google Colab](https://colab.research.google.com/) offers runtimes with GPUs
and TPUs, which make training a model much faster. In order to run the
[training script](scripts/train.py) in [Google
Colab](https://colab.research.google.com/), do the following from the terminal:

```console
git clone https://github.com/PEEC-Nature-Youth-Group/pumaguard.git
cd pumaguard
scripts/train.py --help
```

For example, if you want to train the model from row 1 in the notebook,

```console
scripts/train.py --notebook 1
```

## Running the server

The `pumaguard-server` watches a folder and classifies new files as they are
added to that folder. Run with

```console
poetry run pumaguard-server FOLDER
```

Where `FOLDER` is the folder to watch.

![Server Demo Session](docs/source/_static/server-demo.gif)

## Training new models

For reproducibility, training new models should be done via the train script
and all necessary data, i.e. images, and the resulting weights and history
should be committed to the repository.

1. Get a TPU instance on Colab or run the script on your local machine.
2. Open a terminal and run

    ```console
    git clone https://github.com/PEEC-Nature-Youth-Group/pumaguard.git
    cd pumaguard
    ```

3. Get help on how to use the script

    On Colab, run

    ```console
    ./scripts/pumaguard --help
    ./scripts/pumaguard train --help
    ```

    On your local machine, run

    ```console
    sudo apt install nvidia-cudnn
    poetry install
    poetry run pumaguard --help
    poetry run pumaguard train --help
    ```

4. Train the model from scratch

    ```console
    ./scripts/pumaguard train --no-load --settings pumaguard-models/model_settings_6_pre-trained_512_512.yaml
    ```

