Skip to content

Commit

Permalink
Update some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nikelite committed Nov 27, 2024
1 parent 157ff40 commit 3550744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ def _create_pipeline(
filesystem=tfx.proto.PushDestination.Filesystem(
base_directory=serving_model_dir)))

# Note: Because TFMA 0.47.0 doesn't support custom model evaluation,
# the evaluator step is ruled out here.
return tfx.dsl.Pipeline(
pipeline_name=pipeline_name,
pipeline_root=pipeline_root,
Expand Down
3 changes: 2 additions & 1 deletion tfx/examples/penguin/penguin_pipeline_local_e2e_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ def testPenguinPipelineLocalWithTuner(self):

@parameterized.parameters(('keras',), ('flax_experimental',),
('tfdf_experimental',))
@pytest.mark.xfail(run=False, reason="Keras model is not working with bulk inference now. Need to fix")
@pytest.mark.xfail(run=False,
reason="Exported Keras model with TF 1.16 is not working with bulk inference currently. Needs to be fixed.")
def testPenguinPipelineLocalWithBulkInferrer(self, model_framework):
if model_framework == 'tfdf_experimental':
# Skip if TFDF is not available or incompatible.
Expand Down

0 comments on commit 3550744

Please sign in to comment.