Source code for itwinai.type

# --------------------------------------------------------------------------------------
# Part of the interTwin Project: https://www.intertwin.eu/
#
# Created by: Matteo Bunino
#
# Credit:
# - Matteo Bunino <matteo.bunino@cern.ch> - CERN
# --------------------------------------------------------------------------------------

"""Framework-independent types."""


[docs] class MLArtifact: """A framework-independent machine learning artifact."""
[docs] class MLDataset(MLArtifact): """A framework-independent machine learning dataset."""
[docs] class MLModel(MLArtifact): """A framework-independent machine learning model."""