jangada.serialization.SerializableMetatype.dataset_types#
- property SerializableMetatype.dataset_types: list[type]#
Get a list of all registered dataset types.
- Returns:
- list[type]
List of all registered dataset types (type objects only, not strings).
Notes
This property filters out string keys (qualified names) and returns only the actual type objects.
Examples
>>> types = Serializable.dataset_types >>> np.ndarray in types True >>> all(isinstance(t, type) for t in types) True