-
Notifications
You must be signed in to change notification settings - Fork 392
Description
🚀 Feature
When creating a SemanticSegmentation**GeoDataConfig**
(maybe other use-cases than segmentaion too ? my experience is limited to this one), the scene_to_dataset
creates a GeoDataset
based on options from the sampling config. As WindowSamplingConfig
has no normalize
flag, the created dataset can only be created with normalize=True
; which is undesired.
The requested feature is to create the normalize
flag in the WindowSamplingConfig
class and passing it down where required.
Motivation
When creating a SemanticSegmentation**GeoDataConfig**
, I want my dataset to be sampled without built-in normalization.
Pitch
The class WindowSamplingConfig
should have the additional normalize
pydantic field.
Alternatives
Creating my own custom class similar to SemanticSegmentationGeoDataConfig
but with the enforces normalize
flag set to false.