From fbbbd9e64f1564af5e95bf243b661abd36263cf6 Mon Sep 17 00:00:00 2001 From: Tom Andersson Date: Sun, 14 Jul 2024 00:06:01 +0100 Subject: [PATCH] Bump version --- CITATION.cff | 4 ++-- README.md | 4 ++-- setup.cfg | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 94fbe7f1..1374c6b0 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -38,5 +38,5 @@ keywords: - neural processes - active learning license: MIT -version: 0.3.6 -date-released: '2024-02-02' +version: 0.3.7 +date-released: '2024-07-14' diff --git a/README.md b/README.md index 08d27a9d..1104a29e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ data with neural processes

----------- -[![release](https://img.shields.io/badge/release-v0.3.6-green?logo=github)](https://github.com/alan-turing-institute/deepsensor/releases) +[![release](https://img.shields.io/badge/release-v0.3.7-green?logo=github)](https://github.com/alan-turing-institute/deepsensor/releases) [![Latest Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://alan-turing-institute.github.io/deepsensor/) ![Tests](https://github.com/alan-turing-institute/deepsensor/actions/workflows/tests.yml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/alan-turing-institute/deepsensor/badge.svg?branch=main)](https://coveralls.io/github/alan-turing-institute/deepsensor?branch=main) @@ -112,7 +112,7 @@ ds = data_processor(ds_raw) # Set up task loader task_loader = TaskLoader(context=ds, target=ds) -# Set up model +# Set up ConvNP, which by default instantiates a ConvCNP with Gaussian marginals model = ConvNP(data_processor, task_loader) # Generate training tasks with up 100 grid cells as context and all grid cells diff --git a/setup.cfg b/setup.cfg index 6555244c..61aa5274 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = deepsensor -version = 0.3.6 +version = 0.3.7 author = Tom R. Andersson author_email = tomandersson3@gmail.com description = A Python package for modelling xarray and pandas data with neural processes.