Hello, I’ve run my TFX pipeline on VertexAI and the output from the ExampleGen
component has been saved to a location in GCS - is there a way I could load those examples in to an InteractiveContext
within a notebook so I can view the Facets output?
For example:
statistics_gen = StatisticsGen(examples="? examples processed and saved in GCS")
context.run(statistics_gen)
context.show(statistics_gen.outputs['statistics'])
Or, is there a way of loading the statistics that have already been emitted by the pipeline?
It looks like the stats were saved to locations:
StatisticsGen/statistics/40/Split-train
StatisticsGen/statistics/40/Split-eval
Could I use the metadata DB for this purpose?
So many questions Thanks!