GitHunt
JA

JacobGlennAyers/microfaune_ai

Audio Bird Detection and Identification

Package python microfaune

Installation

  • Go to the folder microfaune_package
  • Run the command pip install .

With Pipenv

  • Go to the folder microfaune_package
  • Run the command pipenv run pip install .

Usage

Can be used as any package python:

from microfaune import audio

s, f = audio.load_wav("whatever.wav")

To use the detection model:

from microfaune.detection import RNNDetector

detector = RNNDetector()
global_score, local_score = detector.predict_on_wav("whatever.wav")

Documentation generation

Once built, the documentation is available by opening the file doc/build/html/index.html.

Build documentation

To generate the documentation, the packages sphinx and sphinx-rtd-theme need to be
installed.

All the commands must be launched in console from the folder doc/.

To remove the previous generated documentation:

make clean

To generate the html documentation:

make html

Languages

Python100.0%

Contributors

Created November 5, 2020
Updated November 5, 2020
JacobGlennAyers/microfaune_ai | GitHunt