https://github.com/vocalpy/cmacbench
CMACBench: Computational Methods for Acoustic Communication Benchmark
https://github.com/vocalpy/cmacbench
Last synced: about 1 year ago
JSON representation
CMACBench: Computational Methods for Acoustic Communication Benchmark
- Host: GitHub
- URL: https://github.com/vocalpy/cmacbench
- Owner: vocalpy
- License: mit
- Created: 2024-03-26T23:58:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-10T18:23:23.000Z (almost 2 years ago)
- Last Synced: 2025-02-17T11:26:28.709Z (over 1 year ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 2.61 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CMACBench
## The Computational Methods for Acoustic Communication Benchmark
This project hosts the code and documentation for the Computational methods for Acoustic Communcation Benchmark (CMACBench).
CMACBench builds on and extends publicly available datasets, to provide benchmarks for methods used by researchers that study how animals communicate with sound.
## Set-up
### Pre-requisites
You will need:
1. git for version control
(you can install git from [Github](https://help.github.com/en/github/getting-started-with-github/set-up-git),
with your operating system package manager, or using conda.)
### Set up environment and install code
Code is developed on [Pop!_OS 22.04](https://pop.system76.com/).
It will be easiest to set up in a similar Linux environment (e.g., Ubuntu).
1. Clone this repository with git:
```
git clone git@github.com:vocalpy/BioSoundSegBench.git
cd BioSoundSegBench
```
2. Set up the virtual environment with the code installed into it:
```
virtualenv .venv
. .venv/bin/activate
pip install -e .
```
You will then want to run all code inside the activated virtual environment:
```console
. .venv/bin/activate
```