tfx/v1/dsl/standard_annotations.py (13 lines of code) (raw):
# Copyright 2023 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Public API for base type annotations."""
# List of MLMD base artifact type annotations.
from tfx.types.system_artifacts import Dataset, Model, Statistics, Metrics
# List of MLMD base execution type annotations.
from tfx.types.system_executions import Train, Transform, Process, Evaluate, Deploy
__all__ = [
"Dataset",
"Deploy",
"Evaluate",
"Metrics",
"Model",
"Process",
"Statistics",
"Train",
"Transform",
]