diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f875e..20b92ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # CyFi changelog -### v0.1.0 - 2023-xx-xx +### v1.0.0 - 2023-10-10 + +CyFi is a command line tool that uses satellite imagery and machine learning to estimate cyanobacteria levels in small, inland water bodies. CyFi has its origins in the [Tick Tick Bloom](https://www.drivendata.org/competitions/143/tick-tick-bloom/) machine learning competition, hosted by DrivenData and created on behalf of [NASA](https://www.nasa.gov/). The goal in that challenge was to detect and classify the severity of cyanobacteria blooms in small, inland water bodies using publicly available satellite, climate, and elevation data. Labels were based on "in situ" samples that were collected manually by [many organizations](https://www.drivendata.org/competitions/143/tick-tick-bloom/page/651/#about-the-project-team) across the U.S. The model in CyFi is based on the [winning solutions](https://github.com/drivendataorg/tick-tick-bloom) from that challenge, and has been optimized for generalizability and efficiency. diff --git a/cyfi/__init__.py b/cyfi/__init__.py index e69de29..9d06cde 100644 --- a/cyfi/__init__.py +++ b/cyfi/__init__.py @@ -0,0 +1,3 @@ +from cyfi.version import __version__ + +__version__ diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 41f875e..20b92ea 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -1,5 +1,7 @@ # CyFi changelog -### v0.1.0 - 2023-xx-xx +### v1.0.0 - 2023-10-10 + +CyFi is a command line tool that uses satellite imagery and machine learning to estimate cyanobacteria levels in small, inland water bodies. CyFi has its origins in the [Tick Tick Bloom](https://www.drivendata.org/competitions/143/tick-tick-bloom/) machine learning competition, hosted by DrivenData and created on behalf of [NASA](https://www.nasa.gov/). The goal in that challenge was to detect and classify the severity of cyanobacteria blooms in small, inland water bodies using publicly available satellite, climate, and elevation data. Labels were based on "in situ" samples that were collected manually by [many organizations](https://www.drivendata.org/competitions/143/tick-tick-bloom/page/651/#about-the-project-team) across the U.S. The model in CyFi is based on the [winning solutions](https://github.com/drivendataorg/tick-tick-bloom) from that challenge, and has been optimized for generalizability and efficiency. diff --git a/pyproject.toml b/pyproject.toml index 76f026a..6f5b58d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "cyfi" -version = "0.1.0" +version = "1.0.0" authors = [ {name = "DrivenData", email = "info@drivendata.org"} ]