simpleml.registries.sqlalchemy_registry

Meta class to auto register new classes with sqlalchemy bases

Module Contents

Classes

DatasetRegistry

Metaclass for defining Abstract Base Classes (ABCs).

MetaRegistry

Metaclass for defining Abstract Base Classes (ABCs).

MetricRegistry

Metaclass for defining Abstract Base Classes (ABCs).

ModelRegistry

Metaclass for defining Abstract Base Classes (ABCs).

PipelineRegistry

Metaclass for defining Abstract Base Classes (ABCs).

simpleml.registries.sqlalchemy_registry.DATASET_REGISTRY[source]
simpleml.registries.sqlalchemy_registry.METRIC_REGISTRY[source]
simpleml.registries.sqlalchemy_registry.MODEL_REGISTRY[source]
simpleml.registries.sqlalchemy_registry.MetaBase[source]
simpleml.registries.sqlalchemy_registry.PIPELINE_REGISTRY[source]
simpleml.registries.sqlalchemy_registry.SIMPLEML_REGISTRY[source]
simpleml.registries.sqlalchemy_registry.__author__ = Elisha Yadgaran[source]
class simpleml.registries.sqlalchemy_registry.DatasetRegistry[source]

Bases: simpleml.registries.sqlalchemy_registry.MetaRegistry

Metaclass for defining Abstract Base Classes (ABCs).

Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as ‘virtual subclasses’ – these and their descendants will be considered subclasses of the registering ABC by the built-in issubclass() function, but the registering ABC won’t show up in their MRO (Method Resolution Order) nor will method implementations defined by the registering ABC be callable (not even via super()).

class simpleml.registries.sqlalchemy_registry.MetaRegistry[source]

Bases: MetaBase, abc.ABCMeta

Metaclass for defining Abstract Base Classes (ABCs).

Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as ‘virtual subclasses’ – these and their descendants will be considered subclasses of the registering ABC by the built-in issubclass() function, but the registering ABC won’t show up in their MRO (Method Resolution Order) nor will method implementations defined by the registering ABC be callable (not even via super()).

class simpleml.registries.sqlalchemy_registry.MetricRegistry[source]

Bases: simpleml.registries.sqlalchemy_registry.MetaRegistry

Metaclass for defining Abstract Base Classes (ABCs).

Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as ‘virtual subclasses’ – these and their descendants will be considered subclasses of the registering ABC by the built-in issubclass() function, but the registering ABC won’t show up in their MRO (Method Resolution Order) nor will method implementations defined by the registering ABC be callable (not even via super()).

class simpleml.registries.sqlalchemy_registry.ModelRegistry[source]

Bases: simpleml.registries.sqlalchemy_registry.MetaRegistry

Metaclass for defining Abstract Base Classes (ABCs).

Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as ‘virtual subclasses’ – these and their descendants will be considered subclasses of the registering ABC by the built-in issubclass() function, but the registering ABC won’t show up in their MRO (Method Resolution Order) nor will method implementations defined by the registering ABC be callable (not even via super()).

class simpleml.registries.sqlalchemy_registry.PipelineRegistry[source]

Bases: simpleml.registries.sqlalchemy_registry.MetaRegistry

Metaclass for defining Abstract Base Classes (ABCs).

Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as ‘virtual subclasses’ – these and their descendants will be considered subclasses of the registering ABC by the built-in issubclass() function, but the registering ABC won’t show up in their MRO (Method Resolution Order) nor will method implementations defined by the registering ABC be callable (not even via super()).