BaseRegistry¶
-
class
tfsnippet.utils.BaseRegistry(ignore_case=False)¶ Bases:
objectA base class for implement a type or object registry.
Usage:
registry = BaseRegistry() registry.register('MNIST', spt.datasets.MNIST())
Attributes Summary
ignore_caseWhether or not to ignore the case? Methods Summary
get(name)Get an object. register(name, obj)Register an object. Attributes Documentation
-
ignore_case¶ Whether or not to ignore the case?
Methods Documentation
-