deepsensor 0.4.1__tar.gz → 0.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {deepsensor-0.4.1 → deepsensor-0.4.2}/PKG-INFO +2 -2
- {deepsensor-0.4.1 → deepsensor-0.4.2}/README.md +1 -1
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/model/pred.py +2 -2
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor.egg-info/PKG-INFO +2 -2
- {deepsensor-0.4.1 → deepsensor-0.4.2}/setup.cfg +1 -1
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/active_learning/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/active_learning/acquisition_fns.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/active_learning/algorithms.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/config.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/data/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/data/loader.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/data/processor.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/data/sources.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/data/task.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/data/utils.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/errors.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/eval/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/eval/metrics.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/model/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/model/convnp.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/model/defaults.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/model/model.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/model/nps.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/plot.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/py.typed +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/tensorflow/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/torch/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/train/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor/train/train.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor.egg-info/SOURCES.txt +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor.egg-info/dependency_links.txt +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor.egg-info/not-zip-safe +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor.egg-info/requires.txt +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/deepsensor.egg-info/top_level.txt +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/pyproject.toml +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/setup.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/__init__.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/test_active_learning.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/test_data_processor.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/test_model.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/test_plotting.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/test_task.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/test_task_loader.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/test_training.py +0 -0
- {deepsensor-0.4.1 → deepsensor-0.4.2}/tests/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: deepsensor
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: A Python package for modelling xarray and pandas data with neural processes.
|
|
5
5
|
Home-page: https://github.com/alan-turing-institute/deepsensor
|
|
6
6
|
Author: Tom R. Andersson
|
|
@@ -44,7 +44,7 @@ data with neural processes</p>
|
|
|
44
44
|
|
|
45
45
|
-----------
|
|
46
46
|
|
|
47
|
-
[](https://github.com/alan-turing-institute/deepsensor/releases)
|
|
48
48
|
[](https://alan-turing-institute.github.io/deepsensor/)
|
|
49
49
|

|
|
50
50
|
[](https://coveralls.io/github/alan-turing-institute/deepsensor?branch=main)
|
|
@@ -11,7 +11,7 @@ data with neural processes</p>
|
|
|
11
11
|
|
|
12
12
|
-----------
|
|
13
13
|
|
|
14
|
-
[](https://github.com/alan-turing-institute/deepsensor/releases)
|
|
15
15
|
[](https://alan-turing-institute.github.io/deepsensor/)
|
|
16
16
|

|
|
17
17
|
[](https://coveralls.io/github/alan-turing-institute/deepsensor?branch=main)
|
|
@@ -205,7 +205,7 @@ class Prediction(dict):
|
|
|
205
205
|
index = (lead_times[i], date)
|
|
206
206
|
else:
|
|
207
207
|
index = date
|
|
208
|
-
self[var_ID]
|
|
208
|
+
self[var_ID].loc[index, prediction_parameter] = pred
|
|
209
209
|
elif prediction_parameter == "samples":
|
|
210
210
|
assert len(data.shape) == 3, (
|
|
211
211
|
f"If prediction_parameter is 'samples', and mode is 'off-grid', data must"
|
|
@@ -219,7 +219,7 @@ class Prediction(dict):
|
|
|
219
219
|
index = (lead_times[i], date)
|
|
220
220
|
else:
|
|
221
221
|
index = date
|
|
222
|
-
self[var_ID][f"sample_{sample_i}"]
|
|
222
|
+
self[var_ID].loc[index, f"sample_{sample_i}"] = pred
|
|
223
223
|
|
|
224
224
|
|
|
225
225
|
def create_empty_spatiotemporal_xarray(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: deepsensor
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: A Python package for modelling xarray and pandas data with neural processes.
|
|
5
5
|
Home-page: https://github.com/alan-turing-institute/deepsensor
|
|
6
6
|
Author: Tom R. Andersson
|
|
@@ -44,7 +44,7 @@ data with neural processes</p>
|
|
|
44
44
|
|
|
45
45
|
-----------
|
|
46
46
|
|
|
47
|
-
[](https://github.com/alan-turing-institute/deepsensor/releases)
|
|
48
48
|
[](https://alan-turing-institute.github.io/deepsensor/)
|
|
49
49
|

|
|
50
50
|
[](https://coveralls.io/github/alan-turing-institute/deepsensor?branch=main)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|