-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 478045b
Showing
68 changed files
with
4,327 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: f661d91d1a023edbc30b6dd8870bbfc6 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
www.vocalpy.org |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# The VocalPy Community | ||
|
||
VocalPy is a software community for researchers studying | ||
acoustic communication in animals: | ||
from fly buzzes to human speech, and any other vocalizations you can think of, | ||
including bird songs, bat calls, dolphin whistles, and mouse squeaks. | ||
The software consists of a set of interopable Python packages | ||
built around a core library, also named VocalPy. | ||
Our goal is to build a sustainable community | ||
of users, maintainers, and developers of the software, | ||
that will better help us all understand how and why | ||
animals communicate with sound. | ||
|
||
:::{card} Join our forum! | ||
:text-align: center | ||
{material-regular}`forum;2em` {bdg-link-primary-line}`forum.vocalpy.org<https://forum.vocalpy.org>` | ||
::: | ||
|
||
:::::{grid} 1 1 3 3 | ||
|
||
::::{grid-item} | ||
|
||
:::{card} VocalPy | ||
:link: https://vocalpy.readthedocs.io/en/latest/ | ||
:img-bottom: _static/vocalpy-logomark.png | ||
^^^ | ||
|
||
A core package for acoustic communication research | ||
|
||
+++ | ||
|
||
::: | ||
|
||
:::: | ||
|
||
::::{grid-item} | ||
|
||
|
||
:::{card} Crowsetta | ||
:link: https://crowsetta.readthedocs.io/en/latest/ | ||
:img-bottom: _static/crowsetta-logomark.png | ||
^^^ | ||
|
||
A Python tool to work with any format for annotating animal vocalizations and bioacoustics data. | ||
|
||
+++ | ||
|
||
::: | ||
|
||
:::: | ||
|
||
::::{grid-item} | ||
|
||
:::{card} vak | ||
:link: https://vak.readthedocs.io/en/latest/ | ||
:img-bottom: _static/vak-logomark.png | ||
^^^ | ||
|
||
A neural network framework for researchers studying animal acoustic communication. | ||
|
||
+++ | ||
|
||
::: | ||
|
||
:::: | ||
|
||
::::: |
1 change: 1 addition & 0 deletions
1
_sphinx_design_static/design-style.1e8bd061cd6da7fc9cf755528e8ffc24.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
var sd_labels_by_text = {}; | ||
|
||
function ready() { | ||
const li = document.getElementsByClassName("sd-tab-label"); | ||
for (const label of li) { | ||
syncId = label.getAttribute("data-sync-id"); | ||
if (syncId) { | ||
label.onclick = onLabelClick; | ||
if (!sd_labels_by_text[syncId]) { | ||
sd_labels_by_text[syncId] = []; | ||
} | ||
sd_labels_by_text[syncId].push(label); | ||
} | ||
} | ||
} | ||
|
||
function onLabelClick() { | ||
// Activate other inputs with the same sync id. | ||
syncId = this.getAttribute("data-sync-id"); | ||
for (label of sd_labels_by_text[syncId]) { | ||
if (label === this) continue; | ||
label.previousElementSibling.checked = true; | ||
} | ||
window.localStorage.setItem("sphinx-design-last-tab", syncId); | ||
} | ||
|
||
document.addEventListener("DOMContentLoaded", ready, false); |
Oops, something went wrong.