ConceptTypes

class hybrid_learning.concepts.concepts.ConceptTypes(value)[source]

Bases: Enum

Types the data of a concept can have.

Public Data Attributes:

SEGMENTATION

IMAGE_LEVEL

BBOX

Inherited from : py: class:Enum

Special Methods:

__new__(value)

Inherited from : py: class:Enum

__repr__()

Return repr(self).

__str__()

Return str(self).

__dir__()

Returns all members and all public methods

__format__(format_spec)

Returns format using actual value type unless __str__ has been overridden.

__hash__()

Return hash(self).

__reduce_ex__(proto)

Helper for pickle.


BBOX = 'bbox'
IMAGE_LEVEL = 'image_level'
SEGMENTATION = 'segmentation'