Skip to content

ssciwr/iSparrow

Repository files navigation

tests codecov Quality Gate Status Supported OS: Linux | macOS | Windows Documentation License: Apache 2.0

faunanet - A bioacoustics platform based on birdnetlib using neural networks

What is it?

faunanet is an extension of Birdnet-Analyzer, and uses birdnetlib as its basis. faunanet was developed with the goal to provide a platform for bioacoustics research projects, started at the Interdisciplinary center for scientific computing at the University of Heidelberg.

Features

Using the birdnetv2.4 model by default, faunanet provides three core features:

  • Easily and arbitrarily exchange the underlying maching learning model for bioacoustics.
  • Easy configuration using YAML files which are stored alongside the analysis results.
  • Integrated, extendible REPL with which to interact with which to interact with a running instance.

The main element of faunanet is a 'watcher' class that continuously monitors a folder for incoming data files and allows for on-the-fly model- or parameter-change via the REPL. It can also be used as a library in your python project. By extending elements of bridnetlib rather, faunanet conserves the latter's capabilities while still adding its own functionality on top of it.

Getting started

Please refer to the 'Getting faunanet up and running' section in the documentation for an introduction.

Bugs, issues and feature requests

Please use the issue tab of the github page to report any bugs or feature requests.

Contributions

Feel free to contribute to this project by opening a pull request here.

Usage

Installation

Currently, faunanet does not have a pypi package, so you need to install it from source. To do this, clone the repository, create a python virtual environment, and install faunanet:

    cd path/to/dir/where/faunanet/should/live 

    git clone https://github.com/ssciwr/iSparrow.git

    python3 -m venv ./path/to/faunanet/venv

    source ./path/to/where/venv/bin/activate 

    cd ./faunanet 

    python3 -m pip install .[tensorflow]  # or .[tensorflow-lite] for tflite models

On windows, the line source ./path/to/faunanet/venv/bin/activate must be replaced with python3 ./path/to/faunanet/venv/scripts/activate. You can also select which installation options you want in the last line, either tensorflow or tensorflow-lite. Additionally, if you want to do further development, the installation must be modified by replacing the install command, adding 'editable' mode and development dependencies.

    python3 -m pip install  -e .[tensorflow, dev]

For building the documentation locally, you have to install with yet another set of dependencies:

Setup

faunanet needs three destinations on your filesystem in order to run:

  • a directory where the machine learning models for sound classification should be stored
  • a directory where incoming data files are stored.
  • a directory where the analysis results should be stored

faunanet has a method set_up for this purpose, that is called with the path to a .yml configuration file. This file contains all the necessary information to set up a working faunanet installation. This method must be called upon first usage in order to have a fully functioning faunanet installation that documents its state correctly upon usage. Below is an example of the structure faunanet demands:

Directories: 
  home: ~/faunanet
  data: ~/faunanet_data
  models: ~/faunanet/models 
  output: ~/faunanet_output

You can copy the above into a .yml file and customize the paths to whatever you want them to be. The ~ will be automatically expanded to the path to your home directory. The method can be used as follows in python code

    from faunanet import faunanet_setup as sps 
    filepath = Path("path", "to", "the", "install_config.yml")

    sps.set_up(filepath)

It is important to have an outermost node called Directories. Aside from creating the directories named in the installation config file, the installation method will download the default tensorflow models from hugginface and will create faunanet directories in you OS default config and cache folders. On Linux, these would be ~/.config and ~/.cache, respectively.

In the repl, this would work like this:

   faunanet # enter repl 

   set_up --cfg=./path/to/custom/install_config.yml 

This does the same as the call to sps.set_up call above, so you can refer to the documentation of that function for further information, too.

Using faunanet as a library

faunanet can be used as a library in your own application. Just add

import faunanet 

to have it available in your module, and make sure you use the correct virtual environment in which faunanet is installed. Keep in mind that faunanet in itself extends birdnetlib, so make sure to check the latter's documentation, too.

Running faunanet

faunanet provides its own, small, REPL for interacting with a running instance. This can be used to start, stop, pause or continue it, to change classifier models or to query it's current state, input and output folders and so on. To get an overview over the available commands, you can just type faunanet in a terminal with the virtual environment being activated that faunanet has been installed into. Alternatively, refer to the documentation.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages