|
| 1 | +# |
| 2 | +# Copyright 2021 IBM |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | +# |
| 16 | +# Configuration file for the Sphinx documentation builder. |
| 17 | +# |
| 18 | +# This file only contains a selection of the most common options. For a full |
| 19 | +# list see the documentation: |
| 20 | +# https://www.sphinx-doc.org/en/master/usage/configuration.html |
| 21 | +# |
| 22 | +# Authors: Mudhakar Srivatsa <msrivats@us.ibm.com> |
| 23 | +# Raghu Ganti <rganti@us.ibm.com> |
| 24 | +# Carlos Costa <chcost@us.ibm.com> |
| 25 | +# |
| 26 | +# |
| 27 | + |
1 | 28 | """codeflare.pipelines.Datamodel |
2 | 29 | The core data model structures are defined here. These include the various aspects for creating a DAG, the |
3 | 30 | input and output to the DAG itself. |
|
11 | 38 | - :class:`~codeflare.pipelines.Datamodel.PipelineParam`: Finally, the data model allows for morphing of pipeline based on parameterizations, these parameterizations can be for grid search or for other such similar reasons. |
12 | 39 | """ |
13 | 40 |
|
14 | | -# Authors: Mudhakar Srivatsa <msrivats@us.ibm.com> |
15 | | -# Raghu Ganti <rganti@us.ibm.com> |
16 | | -# Carlos Costa <chcost@us.ibm.com> |
17 | | -# |
18 | | -# License: Apache v2.0 |
19 | | - |
20 | 41 | from abc import ABC, abstractmethod |
21 | 42 | from enum import Enum |
22 | 43 |
|
|
0 commit comments