From c4e87bdaec3acc398bbdb9791bdaa3ab75c52972 Mon Sep 17 00:00:00 2001 From: Jacob Bieker Date: Thu, 9 Jun 2022 10:08:52 +0100 Subject: [PATCH 1/4] Fix #29 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f4d5af..49d6764 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Pretrained weights will be available soon through [HuggingFace Hub](https://hugg from dgmr import DGMR, Sampler, Generator, Discriminator, LatentConditioningStack, ContextConditioningStack model = DGMR.from_pretrained("openclimatefix/dgmr") sampler = Sampler.from_pretrained("openclimatefix/dgmr-sampler") -discriminator = Discriminator.from_pretrained("openclimagefix/dgmr-discriminator") +discriminator = Discriminator.from_pretrained("openclimatefix/dgmr-discriminator") latent_stack = LatentConditioningStack.from_pretrained("openclimatefix/dgmr-latent-conditioning-stack") context_stack = ContextConditioningStack.from_pretrained("openclimatefix/dgmr-context-conditioning-stack") generator = Generator(conditioning_stack=context_stack, latent_stack=latent_stack, sampler=sampler) From 0f29f1528f4133e7117e3ff9887f6141e8960872 Mon Sep 17 00:00:00 2001 From: BumpVersion Action Date: Thu, 9 Jun 2022 09:09:55 +0000 Subject: [PATCH 2/4] =?UTF-8?q?Bump=20version:=201.2.26=20=E2=86=92=201.2.?= =?UTF-8?q?27?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 46f021b..5d75753 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.2.26 +current_version = 1.2.27 [bumpversion:file:setup.py] search = version="{current_version}" diff --git a/setup.py b/setup.py index 8455a1e..01d4557 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="dgmr", - version="1.2.26", + version="1.2.27", packages=find_packages(), url="https://github.com/openclimatefix/skillful_nowcasting", license="MIT License", From 76201a92851e382a7a1124313477e2a4c2fdaead Mon Sep 17 00:00:00 2001 From: Jacob Bieker Date: Thu, 9 Jun 2022 10:18:14 +0100 Subject: [PATCH 3/4] Update to incldue MRMS dataset availability #minor --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 49d6764..208cd3b 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,21 @@ from datasets import load_dataset dataset = load_dataset("openclimatefix/nimrod-uk-1km", "sample", streaming=True) ``` +The authors also used [MRMS](https://www.nssl.noaa.gov/projects/mrms/) US precipitation radar data as another comparison. While that dataset was not released, the MRMS data is publicly available, and we have made that data available on HuggingFace Datasets as well [here](https://huggingface.co/datasets/openclimatefix/mrms). This dataset is the raw 3500x7000 contiguous US MRMS data for 2016 through May 2022, is a few hundred GBs in size, with sporadic updates to more recent data planned. This dataset is in Zarr format, and can be streamed without caching locally through + +```python +from datasets import load_dataset + +dataset = load_dataset("openclimatefix/mrms", "default_sequence", streaming=True) +``` + +This steams the data with 24 timesteps per example, just like the UK DGMR dataset. To get individual MRMS frames, instead of a sequence, this can be achieved through + +```python +from datasets import load_dataset + +dataset = load_dataset("openclimatefix/mrms", "default", streaming=True) +``` ## Pretrained Weights From 34d8d343dc33af0d7c4f8bb8454d0a223663fb84 Mon Sep 17 00:00:00 2001 From: BumpVersion Action Date: Thu, 9 Jun 2022 09:19:16 +0000 Subject: [PATCH 4/4] =?UTF-8?q?Bump=20version:=201.2.27=20=E2=86=92=201.3.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5d75753..baa788a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.2.27 +current_version = 1.3.0 [bumpversion:file:setup.py] search = version="{current_version}" diff --git a/setup.py b/setup.py index 01d4557..07f3560 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="dgmr", - version="1.2.27", + version="1.3.0", packages=find_packages(), url="https://github.com/openclimatefix/skillful_nowcasting", license="MIT License",