File tree Expand file tree Collapse file tree 3 files changed +4
-46
lines changed
orchestration/experimental Expand file tree Collapse file tree 3 files changed +4
-46
lines changed Original file line number Diff line number Diff line change @@ -503,8 +503,8 @@ def main():
503
503
504
504
dag_runner = tfx .orchestration .experimental .KubeflowV2DagRunner (
505
505
config = tfx .orchestration .experimental .KubeflowV2DagRunnerConfig (),
506
- output_filename = _pipeline_definition_file )
507
-
506
+ output_filename = _pipeline_definition_file ,
507
+ )
508
508
dag_runner .run (
509
509
create_pipeline (
510
510
pipeline_name = _pipeline_name ,
@@ -521,7 +521,8 @@ def main():
521
521
use_aip = use_aip ,
522
522
use_vertex = use_vertex ,
523
523
serving_model_dir = _serving_model_dir ,
524
- ))
524
+ )
525
+ )
525
526
526
527
527
528
# To compile the pipeline:
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
"""TFX orchestration.experimental module."""
15
-
16
15
try :
17
16
from tfx .orchestration .kubeflow .decorators import exit_handler # pylint: disable=g-import-not-at-top
18
17
from tfx .orchestration .kubeflow .decorators import FinalStatusStr # pylint: disable=g-import-not-at-top
Original file line number Diff line number Diff line change 233
233
PairedExampleSkew .__doc__ = """
234
234
Configurations related to Example Diff on feature pairing level.
235
235
"""
236
-
237
- __all__ = [
238
- "orchestration" ,
239
- "ClassifyOutput" ,
240
- "CustomConfig" ,
241
- "DataSpec" ,
242
- "DistributionValidatorConfig" ,
243
- "EnvVar" ,
244
- "EnvVarSource" ,
245
- "EvalArgs" ,
246
- "ExampleDiffConfig" ,
247
- "FeatureComparator" ,
248
- "FeatureSlicingSpec" ,
249
- "Filesystem" ,
250
- "Input" ,
251
- "KubernetesConfig" ,
252
- "LocalDockerConfig" ,
253
- "ModelSpec" ,
254
- "Output" ,
255
- "OutputColumnsSpec" ,
256
- "OutputExampleSpec" ,
257
- "PairedExampleSkew" ,
258
- "PodOverrides" ,
259
- "PredictOutput" ,
260
- "PredictOutputCol" ,
261
- "PushDestination" ,
262
- "RangeConfig" ,
263
- "RegressOutput" ,
264
- "RequestSpec" ,
265
- "RollingRange" ,
266
- "SecretKeySelector" ,
267
- "ServingSpec" ,
268
- "SingleSlicingSpec" ,
269
- "SplitConfig" ,
270
- "SplitsConfig" ,
271
- "StaticRange" ,
272
- "TensorFlowServing" ,
273
- "TensorFlowServingRequestSpec" ,
274
- "TrainArgs" ,
275
- "TuneArgs" ,
276
- "ValidationSpec" ,
277
- ]
You can’t perform that action at this time.
0 commit comments