Views
No views yet
final_logits = audio_logits / T + w(a, x, t) * log(prior + eps)w(a, x, t) is a small gating MLP conditioned on audio confidence, prior confidence, location, and time-of-year. T and eps are learned scalars.1# Clone the repository
2git clone https://github.com/leharris3/birdnoise.git
3cd birdnoise
4
5# Install dependencies
6uv sync
7cd NatureLM-audio && uv pip install -r requirements.txt && cd ..
8
9# Log in to HuggingFace
10huggingface-cli login1from Models import HFStageBModel
2
3# Download weights from the Hub
4model = HFStageBModel.from_pretrained("leharris3/FINCH")w(a, x, t) + learned T, eps (warm-started from Stage A)1@article{ovanger2026adaptive,
2 title = {Adaptive Evidence Weighting for Audio-Spatiotemporal Fusion},
3 author = {Oscar Ovanger and Levi Harris and Timothy H. Keitt},
4 journal = {arXiv preprint arXiv:2602.03817},
5 year = {2026},
6 url = {https://arxiv.org/abs/2602.03817}
7}