Skip to content

Commit 6e3a829

Browse files
committed
Merge branch '1.16' of https://github.com/nikelite/tfx into 1.16
2 parents 53e530f + af06dc0 commit 6e3a829

File tree

3 files changed

+4
-46
lines changed

3 files changed

+4
-46
lines changed

tfx/examples/penguin/penguin_pipeline_kubeflow.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -503,8 +503,8 @@ def main():
503503

504504
dag_runner = tfx.orchestration.experimental.KubeflowV2DagRunner(
505505
config=tfx.orchestration.experimental.KubeflowV2DagRunnerConfig(),
506-
output_filename=_pipeline_definition_file)
507-
506+
output_filename=_pipeline_definition_file,
507+
)
508508
dag_runner.run(
509509
create_pipeline(
510510
pipeline_name=_pipeline_name,
@@ -521,7 +521,8 @@ def main():
521521
use_aip=use_aip,
522522
use_vertex=use_vertex,
523523
serving_model_dir=_serving_model_dir,
524-
))
524+
)
525+
)
525526

526527

527528
# To compile the pipeline:

tfx/v1/orchestration/experimental/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""TFX orchestration.experimental module."""
15-
1615
try:
1716
from tfx.orchestration.kubeflow.decorators import exit_handler # pylint: disable=g-import-not-at-top
1817
from tfx.orchestration.kubeflow.decorators import FinalStatusStr # pylint: disable=g-import-not-at-top

tfx/v1/proto/__init__.py

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -233,45 +233,3 @@
233233
PairedExampleSkew.__doc__ = """
234234
Configurations related to Example Diff on feature pairing level.
235235
"""
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-
]

0 commit comments

Comments
 (0)