def ImageDeserializer(filename, streams): ''' Configures the image reader that reads images and corresponding labels from a file of the form:: <full path to image> <tab> <numerical label (0-based class id)> or:: sequenceId <tab> path <tab> label Args: filename (str): file name of the map file that associates images to classes See also: :cntkwiki:`Image reader definition <BrainScript-Image-reader>` ''' args = _process_image_deserializer_args(filename, streams, 'ImageDeserializer') return cntk_py.image_deserializer(*args)