Source code for lib.sedna.algorithms.seen_task_learning.artifact

# Copyright 2023 The KubeEdge Authors.
#
# 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.

from typing import List

__all__ = ('Task', 'TaskGroup', 'Model')


[docs]class Task: def __init__(self, entry, samples, meta_attr=None): self.entry = entry self.samples = samples self.meta_attr = meta_attr self.test_samples = None # assign on task definition and use in TRD self.model = None # assign on running self.result = None # assign on running
[docs]class TaskGroup: def __init__(self, entry, tasks: List[Task]): self.entry = entry self.tasks = tasks self.samples = None # assign with task_relation_discover algorithms self.model = None # assign on train
[docs]class Model: def __init__(self, index: int, entry, model, result): self.index = index # integer self.entry = entry self.model = model self.result = result self.meta_attr = None # assign on running