INNER CODE UNIT · Python
is_immutable
dailenson/SDT · parse_config.py:39
def is_immutable(self):
return self.__dict__[AttrDict.IMMUTABLE]
__C = AttrDict()
# Consumers can get config by:
# from parse_config import cfg
cfg = __C
# Random note: avoid using '.ON' as a config key since yaml converts it to True;
# prefer 'ENABLED' instead
# ---------------------------------------------------------------------------- #
# Training options
# ---------------------------------------------------------------------------- #
__C.TRAIN = AttrDict()
# Datasets to train on