PVNet 5.3.6__py3-none-any.whl → 5.3.7__py3-none-any.whl
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/utils.py +13 -17
- {pvnet-5.3.6.dist-info → pvnet-5.3.7.dist-info}/METADATA +1 -1
- {pvnet-5.3.6.dist-info → pvnet-5.3.7.dist-info}/RECORD +6 -6
- {pvnet-5.3.6.dist-info → pvnet-5.3.7.dist-info}/WHEEL +1 -1
- {pvnet-5.3.6.dist-info → pvnet-5.3.7.dist-info}/licenses/LICENSE +0 -0
- {pvnet-5.3.6.dist-info → pvnet-5.3.7.dist-info}/top_level.txt +0 -0
pvnet/utils.py
CHANGED
|
@@ -129,26 +129,22 @@ def validate_batch_against_config(
|
|
|
129
129
|
|
|
130
130
|
# Satellite validation
|
|
131
131
|
if model.include_sat:
|
|
132
|
-
if "satellite_actual"
|
|
133
|
-
raise ValueError(
|
|
134
|
-
"Model uses satellite data but 'satellite_actual' missing from batch."
|
|
135
|
-
)
|
|
132
|
+
if (sat_data := batch.get("satellite_actual")) is None:
|
|
133
|
+
raise ValueError("Model uses sat data but 'satellite_actual' missing from batch.")
|
|
136
134
|
|
|
137
135
|
enc = model.sat_encoder
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
enc.image_size_pixels,
|
|
146
|
-
)
|
|
147
|
-
actual_shape = tuple(batch["satellite_actual"].shape)
|
|
148
|
-
if actual_shape != expected_shape:
|
|
149
|
-
raise ValueError(
|
|
150
|
-
f"Satellite shape mismatch: expected {expected_shape}, got {actual_shape}"
|
|
136
|
+
exp_ch = enc.in_channels - int(model.add_image_embedding_channel)
|
|
137
|
+
_, actual_seq, actual_ch, h, w = sat_data.shape
|
|
138
|
+
|
|
139
|
+
if actual_ch != exp_ch or h != enc.image_size_pixels or w != enc.image_size_pixels:
|
|
140
|
+
msg = (
|
|
141
|
+
f"Sat mismatch: Exp {exp_ch}ch, {enc.image_size_pixels}px. "
|
|
142
|
+
f"Got {actual_ch}ch, {h}x{w}px"
|
|
151
143
|
)
|
|
144
|
+
raise ValueError(msg)
|
|
145
|
+
|
|
146
|
+
if actual_seq < enc.sequence_length:
|
|
147
|
+
raise ValueError(f"Sat too short: exp {enc.sequence_length}, got {actual_seq}")
|
|
152
148
|
|
|
153
149
|
key = "generation"
|
|
154
150
|
if key in batch:
|
|
@@ -2,7 +2,7 @@ pvnet/__init__.py,sha256=TAZm88TJ5ieL1XjEyRg1LciIGuSScEucdAruQLfM92I,25
|
|
|
2
2
|
pvnet/datamodule.py,sha256=wc1RQfFhgW9Hxyw7vrpFERhOd2FmjDsO1x49J2erOYk,5750
|
|
3
3
|
pvnet/load_model.py,sha256=P1QODX_mJRnKZ_kIll9BlOjK_A1W4YM3QG-mZd-2Mcc,3852
|
|
4
4
|
pvnet/optimizers.py,sha256=DZ74KcFQV226zwu7-qAzofTMTYeIyScox4Kqbq30WWY,6440
|
|
5
|
-
pvnet/utils.py,sha256=
|
|
5
|
+
pvnet/utils.py,sha256=Nnc-DaqeJJwv8WtIXc_mpJXkCxXSHN8RScQT1mZ28GA,5880
|
|
6
6
|
pvnet/models/__init__.py,sha256=owzZ9xkD0DRTT51mT2Dx_p96oJjwDz57xo_MaMIEosk,145
|
|
7
7
|
pvnet/models/base_model.py,sha256=V-vBqtzZc_c8Ho5hVo_ikq2wzZ7hsAIM7I4vhzGDfNc,16051
|
|
8
8
|
pvnet/models/ensemble.py,sha256=USpNQ0O5eiffapLPE9T6gR-uK9f_3E4pX3DK7Lmkn2U,2228
|
|
@@ -22,8 +22,8 @@ pvnet/training/__init__.py,sha256=FKxmPZ59Vuj5_mXomN4saJ3En5M-aDMxSs6OttTQOcg,49
|
|
|
22
22
|
pvnet/training/lightning_module.py,sha256=hmvne9DQauWpG61sRK-t8MTZRVwdywaEFCs0VFVRuMs,13522
|
|
23
23
|
pvnet/training/plots.py,sha256=7JtjA9zIotuoKZ2l0fbS-FZDB48TcIk_-XLA2EWVMv4,2448
|
|
24
24
|
pvnet/training/train.py,sha256=Sry2wYgggUmtIB-k_umFts7xMr2roEL76NCu9ySbLUY,4107
|
|
25
|
-
pvnet-5.3.
|
|
26
|
-
pvnet-5.3.
|
|
27
|
-
pvnet-5.3.
|
|
28
|
-
pvnet-5.3.
|
|
29
|
-
pvnet-5.3.
|
|
25
|
+
pvnet-5.3.7.dist-info/licenses/LICENSE,sha256=tKUnlSmcLBWMJWkHx3UjZGdrjs9LidGwLo0jsBUBAwU,1077
|
|
26
|
+
pvnet-5.3.7.dist-info/METADATA,sha256=Ce405a8g81_se67GP7MMHpiO2wjT63nc2HcGz8h1kaY,16479
|
|
27
|
+
pvnet-5.3.7.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
28
|
+
pvnet-5.3.7.dist-info/top_level.txt,sha256=4mg6WjeW05SR7pg3-Q4JRE2yAoutHYpspOsiUzYVNv0,6
|
|
29
|
+
pvnet-5.3.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|