From 386e0e04e49bb3ed9f2f5af67d436307bbe25c72 Mon Sep 17 00:00:00 2001 From: ejm714 Date: Thu, 1 Dec 2022 14:48:29 -0800 Subject: [PATCH] release v2.3.0 --- HISTORY.md | 6 ++++++ docs/docs/changelog/index.md | 6 ++++++ docs/docs/models/depth.md | 2 +- setup.cfg | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 403d4223..4a2438f1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,11 @@ # `zamba` changelog +## v2.3.0 (2022-12-01) + +### Model release + +* Adds a depth estimation module for predicting the distance between animals and the camera ([PR #247](https://github.com/drivendataorg/zamba/pull/247)). This model comes from one of the winning solutions in the [Deep Chimpact: Depth Estimation for Wildlife Conservation](https://www.drivendata.org/competitions/82/competition-wildlife-video-depth-estimation/) machine learning challenge hosted by DrivenData. + ## v2.2.4 (2022-11-10) * Do not cache videos if the `VIDEO_CACHE_DIR` environment variable is an empty string or zero ([PR #245](https://github.com/drivendataorg/zamba/pull/245)) diff --git a/docs/docs/changelog/index.md b/docs/docs/changelog/index.md index 403d4223..4a2438f1 100644 --- a/docs/docs/changelog/index.md +++ b/docs/docs/changelog/index.md @@ -1,5 +1,11 @@ # `zamba` changelog +## v2.3.0 (2022-12-01) + +### Model release + +* Adds a depth estimation module for predicting the distance between animals and the camera ([PR #247](https://github.com/drivendataorg/zamba/pull/247)). This model comes from one of the winning solutions in the [Deep Chimpact: Depth Estimation for Wildlife Conservation](https://www.drivendata.org/competitions/82/competition-wildlife-video-depth-estimation/) machine learning challenge hosted by DrivenData. + ## v2.2.4 (2022-11-10) * Do not cache videos if the `VIDEO_CACHE_DIR` environment variable is an empty string or zero ([PR #245](https://github.com/drivendataorg/zamba/pull/245)) diff --git a/docs/docs/models/depth.md b/docs/docs/models/depth.md index e3715ba7..78c29ab2 100644 --- a/docs/docs/models/depth.md +++ b/docs/docs/models/depth.md @@ -2,7 +2,7 @@ ## Background -Our depth estimation model is useful for predicting the distance an animal is from the camera, which is an input into models used to estimate animal abundance. +Our depth estimation model is useful for predicting the distance an animal is from the camera, which is an input into models used to estimate animal abundance. The depth model comes from one of the winners of the [Deep Chimpact: Depth Estimation for Wildlife Conservation](https://www.drivendata.org/competitions/82/competition-wildlife-video-depth-estimation/) machine learning challenge hosted by DrivenData. The goal of this challenge was to use machine learning and advances in monocular (single-lens) depth estimation techniques to automatically estimate the distance between a camera trap and an animal contained in its video footage. The challenge drew on a unique labeled dataset from research teams from the Max Planck Institute for Evolutionary Anthropology (MPI-EVA) and the Wild Chimpanzee Foundation (WCF). diff --git a/setup.cfg b/setup.cfg index 49407463..06635f73 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = zamba -version = 2.2.4 +version = 2.3.0 author = DrivenData author_email = info@drivendata.org description = Zamba is a command line tool and Python package to identify animals in camera trap videos and train custom models for new species and habitats.