PVNet 5.3.11__tar.gz → 5.3.12__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.3.11 → pvnet-5.3.12}/PKG-INFO +1 -1
- {pvnet-5.3.11 → pvnet-5.3.12}/PVNet.egg-info/PKG-INFO +1 -1
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/utils.py +2 -2
- {pvnet-5.3.11 → pvnet-5.3.12}/LICENSE +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/PVNet.egg-info/SOURCES.txt +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/PVNet.egg-info/dependency_links.txt +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/PVNet.egg-info/requires.txt +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/PVNet.egg-info/top_level.txt +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/README.md +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/__init__.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/datamodule.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/load_model.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/__init__.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/base_model.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/ensemble.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/__init__.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/basic_blocks.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/encoders/__init__.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/encoders/basic_blocks.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/encoders/encoders3d.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/late_fusion.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/linear_networks/__init__.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/linear_networks/basic_blocks.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/linear_networks/networks.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/site_encoders/__init__.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/site_encoders/basic_blocks.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/models/late_fusion/site_encoders/encoders.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/optimizers.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/training/__init__.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/training/lightning_module.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/training/plots.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pvnet/training/train.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/pyproject.toml +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/setup.cfg +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/tests/test_datamodule.py +0 -0
- {pvnet-5.3.11 → pvnet-5.3.12}/tests/test_end2end.py +0 -0
|
@@ -98,7 +98,7 @@ def validate_batch_against_config(
|
|
|
98
98
|
model: "BaseModel",
|
|
99
99
|
) -> None:
|
|
100
100
|
"""Validates tensor shapes in batch against model configuration."""
|
|
101
|
-
logger.info("Performing batch shape validation against model config
|
|
101
|
+
logger.info("Performing batch shape validation against model config...")
|
|
102
102
|
|
|
103
103
|
# NWP validation
|
|
104
104
|
if model.include_nwp:
|
|
@@ -163,7 +163,7 @@ def validate_batch_against_config(
|
|
|
163
163
|
f"Generation data shape mismatch: expected {expected_shape}, got {actual_shape}"
|
|
164
164
|
)
|
|
165
165
|
|
|
166
|
-
logger.info("Batch shape validation successful
|
|
166
|
+
logger.info("Batch shape validation successful.")
|
|
167
167
|
|
|
168
168
|
|
|
169
169
|
def validate_gpu_config(config: DictConfig) -> None:
|
|
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
|