Source code for rastervision.core.data.label_source.label_source_config

from rastervision.pipeline.config import Config, register_config


[docs]@register_config('label_source') class LabelSourceConfig(Config): """Configure a :class:`.LabelSource`."""
[docs] def build(self, class_config, crs_transformer, extent, tmp_dir): raise NotImplementedError()
[docs] def update(self, pipeline=None, scene=None): pass