PVNet 5.0.19__tar.gz → 5.0.20__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.
- {pvnet-5.0.19 → pvnet-5.0.20}/PKG-INFO +3 -1
- {pvnet-5.0.19 → pvnet-5.0.20}/PVNet.egg-info/PKG-INFO +3 -1
- {pvnet-5.0.19 → pvnet-5.0.20}/README.md +2 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/LICENSE +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/PVNet.egg-info/SOURCES.txt +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/PVNet.egg-info/dependency_links.txt +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/PVNet.egg-info/requires.txt +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/PVNet.egg-info/top_level.txt +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/data/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/data/base_datamodule.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/data/site_datamodule.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/data/uk_regional_datamodule.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/load_model.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/base_model.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/ensemble.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/basic_blocks.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/encoders/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/encoders/basic_blocks.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/encoders/encoders3d.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/late_fusion.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/linear_networks/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/linear_networks/basic_blocks.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/linear_networks/networks.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/site_encoders/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/site_encoders/basic_blocks.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/models/late_fusion/site_encoders/encoders.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/optimizers.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/training/__init__.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/training/lightning_module.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/training/plots.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/training/train.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pvnet/utils.py +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/pyproject.toml +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/setup.cfg +0 -0
- {pvnet-5.0.19 → pvnet-5.0.20}/tests/test_end2end.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PVNet
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.20
|
|
4
4
|
Summary: PVNet
|
|
5
5
|
Author-email: Peter Dudfield <info@openclimatefix.org>
|
|
6
6
|
Requires-Python: >=3.11
|
|
@@ -172,6 +172,8 @@ satellite:
|
|
|
172
172
|
|
|
173
173
|
`ocf-data-sampler` is currently set up to use 11 channels from the satellite data (the 12th, HRV, is not used).
|
|
174
174
|
|
|
175
|
+
⚠️ NB: Our publicly accessible satellite data is currently saved with a blosc2 compressor, which is not supported by the tensorstore backend PVNet relies on now. We are in the process of updating this; for now, the paths above cannot be used with this codebase.
|
|
176
|
+
|
|
175
177
|
### Training PVNet
|
|
176
178
|
|
|
177
179
|
How PVNet is run is determined by the configuration files. The example configs in `PVNet/configs.example` work with **streamed_samples** using `datamodule/streamed_samples.yaml`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PVNet
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.20
|
|
4
4
|
Summary: PVNet
|
|
5
5
|
Author-email: Peter Dudfield <info@openclimatefix.org>
|
|
6
6
|
Requires-Python: >=3.11
|
|
@@ -172,6 +172,8 @@ satellite:
|
|
|
172
172
|
|
|
173
173
|
`ocf-data-sampler` is currently set up to use 11 channels from the satellite data (the 12th, HRV, is not used).
|
|
174
174
|
|
|
175
|
+
⚠️ NB: Our publicly accessible satellite data is currently saved with a blosc2 compressor, which is not supported by the tensorstore backend PVNet relies on now. We are in the process of updating this; for now, the paths above cannot be used with this codebase.
|
|
176
|
+
|
|
175
177
|
### Training PVNet
|
|
176
178
|
|
|
177
179
|
How PVNet is run is determined by the configuration files. The example configs in `PVNet/configs.example` work with **streamed_samples** using `datamodule/streamed_samples.yaml`.
|
|
@@ -143,6 +143,8 @@ satellite:
|
|
|
143
143
|
|
|
144
144
|
`ocf-data-sampler` is currently set up to use 11 channels from the satellite data (the 12th, HRV, is not used).
|
|
145
145
|
|
|
146
|
+
⚠️ NB: Our publicly accessible satellite data is currently saved with a blosc2 compressor, which is not supported by the tensorstore backend PVNet relies on now. We are in the process of updating this; for now, the paths above cannot be used with this codebase.
|
|
147
|
+
|
|
146
148
|
### Training PVNet
|
|
147
149
|
|
|
148
150
|
How PVNet is run is determined by the configuration files. The example configs in `PVNet/configs.example` work with **streamed_samples** using `datamodule/streamed_samples.yaml`.
|
|
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
|