PVNet 5.1.3__tar.gz → 5.2.1__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.1.3 → pvnet-5.2.1}/PKG-INFO +2 -2
- {pvnet-5.1.3 → pvnet-5.2.1}/PVNet.egg-info/PKG-INFO +2 -2
- {pvnet-5.1.3 → pvnet-5.2.1}/PVNet.egg-info/requires.txt +1 -1
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/datamodule.py +1 -1
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/training/lightning_module.py +1 -1
- {pvnet-5.1.3 → pvnet-5.2.1}/pyproject.toml +1 -1
- {pvnet-5.1.3 → pvnet-5.2.1}/LICENSE +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/PVNet.egg-info/SOURCES.txt +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/PVNet.egg-info/dependency_links.txt +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/PVNet.egg-info/top_level.txt +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/README.md +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/__init__.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/load_model.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/__init__.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/base_model.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/ensemble.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/__init__.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/basic_blocks.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/encoders/__init__.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/encoders/basic_blocks.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/encoders/encoders3d.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/late_fusion.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/linear_networks/__init__.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/linear_networks/basic_blocks.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/linear_networks/networks.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/site_encoders/__init__.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/site_encoders/basic_blocks.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/models/late_fusion/site_encoders/encoders.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/optimizers.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/training/__init__.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/training/plots.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/training/train.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/pvnet/utils.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/setup.cfg +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/tests/test_datamodule.py +0 -0
- {pvnet-5.1.3 → pvnet-5.2.1}/tests/test_end2end.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PVNet
|
|
3
|
-
Version: 5.1
|
|
3
|
+
Version: 5.2.1
|
|
4
4
|
Summary: PVNet
|
|
5
5
|
Author-email: Peter Dudfield <info@openclimatefix.org>
|
|
6
6
|
Requires-Python: >=3.11
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
License-File: LICENSE
|
|
9
|
-
Requires-Dist: ocf-data-sampler>=0.
|
|
9
|
+
Requires-Dist: ocf-data-sampler>=0.6.0
|
|
10
10
|
Requires-Dist: numpy
|
|
11
11
|
Requires-Dist: pandas
|
|
12
12
|
Requires-Dist: matplotlib
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PVNet
|
|
3
|
-
Version: 5.1
|
|
3
|
+
Version: 5.2.1
|
|
4
4
|
Summary: PVNet
|
|
5
5
|
Author-email: Peter Dudfield <info@openclimatefix.org>
|
|
6
6
|
Requires-Python: >=3.11
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
License-File: LICENSE
|
|
9
|
-
Requires-Dist: ocf-data-sampler>=0.
|
|
9
|
+
Requires-Dist: ocf-data-sampler>=0.6.0
|
|
10
10
|
Requires-Dist: numpy
|
|
11
11
|
Requires-Dist: pandas
|
|
12
12
|
Requires-Dist: matplotlib
|
|
@@ -8,7 +8,7 @@ from ocf_data_sampler.numpy_sample.collate import stack_np_samples_into_batch
|
|
|
8
8
|
from ocf_data_sampler.numpy_sample.common_types import NumpySample, TensorBatch
|
|
9
9
|
from ocf_data_sampler.torch_datasets.datasets.pvnet_uk import PVNetUKRegionalDataset
|
|
10
10
|
from ocf_data_sampler.torch_datasets.datasets.site import SitesDataset
|
|
11
|
-
from ocf_data_sampler.torch_datasets.
|
|
11
|
+
from ocf_data_sampler.torch_datasets.utils.torch_batch_utils import batch_to_tensor
|
|
12
12
|
from torch.utils.data import DataLoader, Dataset, Subset
|
|
13
13
|
|
|
14
14
|
|
|
@@ -9,7 +9,7 @@ import torch.nn.functional as F
|
|
|
9
9
|
import wandb
|
|
10
10
|
import xarray as xr
|
|
11
11
|
from ocf_data_sampler.numpy_sample.common_types import TensorBatch
|
|
12
|
-
from ocf_data_sampler.torch_datasets.
|
|
12
|
+
from ocf_data_sampler.torch_datasets.utils.torch_batch_utils import copy_batch_to_device
|
|
13
13
|
|
|
14
14
|
from pvnet.datamodule import collate_fn
|
|
15
15
|
from pvnet.models.base_model import BaseModel
|
|
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
|