@@ -77,7 +77,7 @@ def __init__(
77
77
allow_substring_split_file : bool = True ,
78
78
dataset_bands : list [HLSBands | int ] | None = None ,
79
79
predict_dataset_bands : list [HLSBands | int ] | None = None ,
80
- output_bands : list [HLSBands | int ] | None = None ,
80
+ input_bands : list [HLSBands | int ] | None = None ,
81
81
constant_scale : float = 1 ,
82
82
rgb_indices : list [int ] | None = None ,
83
83
train_transform : A .Compose | None | list [A .BasicTransform ] = None ,
@@ -112,7 +112,7 @@ def __init__(
112
112
matches (e.g. eurosat). Defaults to True.
113
113
dataset_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
114
114
predict_dataset_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
115
- output_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
115
+ input_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
116
116
constant_scale (float, optional): _description_. Defaults to 1.
117
117
rgb_indices (list[int] | None, optional): _description_. Defaults to None.
118
118
train_transform (Albumentations.Compose | None): Albumentations transform
@@ -152,7 +152,7 @@ def __init__(
152
152
153
153
self .dataset_bands = dataset_bands
154
154
self .predict_dataset_bands = predict_dataset_bands if predict_dataset_bands else dataset_bands
155
- self .output_bands = output_bands
155
+ self .input_bands = input_bands
156
156
self .rgb_indices = rgb_indices
157
157
self .expand_temporal_dimension = expand_temporal_dimension
158
158
@@ -178,7 +178,7 @@ def setup(self, stage: str) -> None:
178
178
ignore_split_file_extensions = self .ignore_split_file_extensions ,
179
179
allow_substring_split_file = self .allow_substring_split_file ,
180
180
dataset_bands = self .dataset_bands ,
181
- output_bands = self .output_bands ,
181
+ input_bands = self .input_bands ,
182
182
constant_scale = self .constant_scale ,
183
183
rgb_indices = self .rgb_indices ,
184
184
transform = self .train_transform ,
@@ -193,7 +193,7 @@ def setup(self, stage: str) -> None:
193
193
ignore_split_file_extensions = self .ignore_split_file_extensions ,
194
194
allow_substring_split_file = self .allow_substring_split_file ,
195
195
dataset_bands = self .dataset_bands ,
196
- output_bands = self .output_bands ,
196
+ input_bands = self .input_bands ,
197
197
constant_scale = self .constant_scale ,
198
198
rgb_indices = self .rgb_indices ,
199
199
transform = self .val_transform ,
@@ -208,7 +208,7 @@ def setup(self, stage: str) -> None:
208
208
ignore_split_file_extensions = self .ignore_split_file_extensions ,
209
209
allow_substring_split_file = self .allow_substring_split_file ,
210
210
dataset_bands = self .dataset_bands ,
211
- output_bands = self .output_bands ,
211
+ input_bands = self .input_bands ,
212
212
constant_scale = self .constant_scale ,
213
213
rgb_indices = self .rgb_indices ,
214
214
transform = self .test_transform ,
@@ -220,7 +220,7 @@ def setup(self, stage: str) -> None:
220
220
self .predict_root ,
221
221
self .num_classes ,
222
222
dataset_bands = self .predict_dataset_bands ,
223
- output_bands = self .output_bands ,
223
+ input_bands = self .input_bands ,
224
224
constant_scale = self .constant_scale ,
225
225
rgb_indices = self .rgb_indices ,
226
226
transform = self .test_transform ,
@@ -277,7 +277,7 @@ def _dataloader_factory(self, split: str) -> DataLoader[dict[str, Tensor]]:
277
277
# allow_substring_split_file: bool = True,
278
278
# dataset_bands: list[HLSBands | int] | None = None,
279
279
# predict_dataset_bands: list[HLSBands | int] | None = None,
280
- # output_bands : list[HLSBands | int] | None = None,
280
+ # input_bands : list[HLSBands | int] | None = None,
281
281
# constant_scale: float = 1,
282
282
# rgb_indices: list[int] | None = None,
283
283
# train_transform: A.Compose | None | list[A.BasicTransform] = None,
@@ -311,7 +311,7 @@ def _dataloader_factory(self, split: str) -> DataLoader[dict[str, Tensor]]:
311
311
# matches (e.g. eurosat). Defaults to True.
312
312
# dataset_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
313
313
# predict_dataset_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
314
- # output_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
314
+ # input_bands (list[HLSBands | int] | None, optional): _description_. Defaults to None.
315
315
# constant_scale (float, optional): _description_. Defaults to 1.
316
316
# rgb_indices (list[int] | None, optional): _description_. Defaults to None.
317
317
# train_transform (Albumentations.Compose | None): Albumentations transform
@@ -350,7 +350,7 @@ def _dataloader_factory(self, split: str) -> DataLoader[dict[str, Tensor]]:
350
350
# self.constant_scale = constant_scale
351
351
# self.dataset_bands = dataset_bands
352
352
# self.predict_dataset_bands = predict_dataset_bands if predict_dataset_bands else dataset_bands
353
- # self.output_bands = output_bands
353
+ # self.input_bands = input_bands
354
354
# self.rgb_indices = rgb_indices
355
355
356
356
# # self.aug = AugmentationSequential(
@@ -372,7 +372,7 @@ def _dataloader_factory(self, split: str) -> DataLoader[dict[str, Tensor]]:
372
372
# ignore_split_file_extensions=self.ignore_split_file_extensions,
373
373
# allow_substring_split_file=self.allow_substring_split_file,
374
374
# dataset_bands=self.dataset_bands,
375
- # output_bands =self.output_bands ,
375
+ # input_bands =self.input_bands ,
376
376
# constant_scale=self.constant_scale,
377
377
# rgb_indices=self.rgb_indices,
378
378
# transform=self.train_transform,
@@ -386,7 +386,7 @@ def _dataloader_factory(self, split: str) -> DataLoader[dict[str, Tensor]]:
386
386
# ignore_split_file_extensions=self.ignore_split_file_extensions,
387
387
# allow_substring_split_file=self.allow_substring_split_file,
388
388
# dataset_bands=self.dataset_bands,
389
- # output_bands =self.output_bands ,
389
+ # input_bands =self.input_bands ,
390
390
# constant_scale=self.constant_scale,
391
391
# rgb_indices=self.rgb_indices,
392
392
# transform=self.val_transform,
@@ -400,7 +400,7 @@ def _dataloader_factory(self, split: str) -> DataLoader[dict[str, Tensor]]:
400
400
# ignore_split_file_extensions=self.ignore_split_file_extensions,
401
401
# allow_substring_split_file=self.allow_substring_split_file,
402
402
# dataset_bands=self.dataset_bands,
403
- # output_bands =self.output_bands ,
403
+ # input_bands =self.input_bands ,
404
404
# constant_scale=self.constant_scale,
405
405
# rgb_indices=self.rgb_indices,
406
406
# transform=self.test_transform,
@@ -412,7 +412,7 @@ def _dataloader_factory(self, split: str) -> DataLoader[dict[str, Tensor]]:
412
412
# self.predict_dataset = self.dataset_class(
413
413
# self.predict_root,
414
414
# dataset_bands=self.predict_dataset_bands,
415
- # output_bands =self.output_bands ,
415
+ # input_bands =self.input_bands ,
416
416
# constant_scale=self.constant_scale,
417
417
# rgb_indices=self.rgb_indices,
418
418
# transform=self.test_transform,
0 commit comments