novembro 25, 2019 —
                                          
Posted by Charles Chen, Joe Lee, and Kenny Song on behalf of the TFX team
Run TFX in Google ColabTensorFlow Extended (TFX) is a platform for creating end-to-end machine learning pipelines. TFX was created by Google to provide the backbone of our own ML applications and services, and we’re steadily open-sourcing TFX to enable other companies and teams to easily build production-grade ML systems (le…

InteractiveContext, which manages component execution and state in the notebook.context = InteractiveContext()StatisticsGen component in a notebook. First, we instantiate a StatisticsGen component and pass in our training data (usually ingested by another TFX component, such as ExampleGen).statistics_gen = StatisticsGen(examples=example_gen.outputs['examples'])context.run() and run that cell.context.run(statistics_gen)StatisticsGen will generate statistics, at the feature-level, over your dataset. After the cell finishes running, you can review these statistics with a built-in TFX visualization by calling context.show().context.show(statistics_gen.outputs['statistics'])
context.export_to_pipeline():context.export_to_pipeline(notebook_filepath=_notebook_filepath,
                           export_filepath=_pipeline_export_filepath,
                           runner_type=_runner_type) 
novembro 25, 2019
 —
                                  
Posted by Charles Chen, Joe Lee, and Kenny Song on behalf of the TFX team
Run TFX in Google ColabTensorFlow Extended (TFX) is a platform for creating end-to-end machine learning pipelines. TFX was created by Google to provide the backbone of our own ML applications and services, and we’re steadily open-sourcing TFX to enable other companies and teams to easily build production-grade ML systems (le…