Skip to content

Commit

Permalink
Update pipeline.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiverse01 authored Jul 29, 2024
1 parent 500343b commit 49334ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from tfx.components import CsvExampleGen, StatisticsGen, SchemaGen, ExampleValidator, Transform, Trainer, Evaluator, Pusher
from tfx.orchestration import pipeline
from tfx.orchestration.local import local_dag_runner
from tfx.orchestration.local import LocalDagRunner
from tfx.orchestration.metadata import sqlite_metadata_connection_config
from tfx.proto import example_gen_pb2, trainer_pb2, eval_config_pb2, pusher_pb2

Expand Down Expand Up @@ -89,4 +89,4 @@ def preprocessing_fn(inputs):
)

if __name__ == '__main__':
local_dag_runner.LocalDagRunner().run(create_pipeline())
LocalDagRunner().run(create_pipeline())

0 comments on commit 49334ad

Please sign in to comment.