gitextract_gz1rnp0c/ ├── LICENSE ├── README.md ├── cloud_run/ │ └── twilio_vision/ │ ├── Dockerfile │ ├── README.md │ └── src/ │ ├── requirements.txt │ └── whats_that.py ├── datalab/ │ └── facets/ │ ├── README.md │ └── facets_snippets.ipynb └── ml/ ├── README.md ├── automl/ │ └── tables/ │ ├── kfp_e2e/ │ │ ├── README.md │ │ ├── create_dataset_for_tables/ │ │ │ ├── tables_component.py │ │ │ └── tables_component.yaml │ │ ├── create_model_for_tables/ │ │ │ ├── tables_component.py │ │ │ ├── tables_component.yaml │ │ │ ├── tables_eval_component.py │ │ │ ├── tables_eval_component.yaml │ │ │ ├── tables_eval_metrics_component.py │ │ │ └── tables_eval_metrics_component.yaml │ │ ├── deploy_model_for_tables/ │ │ │ ├── convert_oss.py │ │ │ ├── exported_model_deploy.py │ │ │ ├── instances.json │ │ │ ├── model_serve_template.yaml │ │ │ ├── tables_deploy_component.py │ │ │ └── tables_deploy_component.yaml │ │ ├── import_data_from_bigquery/ │ │ │ ├── tables_component.py │ │ │ ├── tables_component.yaml │ │ │ ├── tables_schema_component.py │ │ │ └── tables_schema_component.yaml │ │ ├── tables_containers/ │ │ │ └── model-service-launcher/ │ │ │ ├── Dockerfile │ │ │ └── build.sh │ │ ├── tables_pipeline_caip.py │ │ └── tables_pipeline_kf.py │ ├── model_export/ │ │ ├── Dockerfile.template │ │ ├── automl_tables_model_export_cloud_run.md │ │ ├── convert_oss.py │ │ └── instances.json │ └── xai/ │ ├── README.md │ ├── automl_tables_xai.ipynb │ └── bigquery_examples.md ├── census_train_and_eval/ │ ├── README.md │ ├── config_custom_gpus.yaml │ ├── hptuning_config.yaml │ ├── test.json │ ├── trainer/ │ │ ├── __init__.py │ │ ├── model.py │ │ └── task.py │ └── using_tf.estimator.train_and_evaluate.ipynb ├── kubeflow-pipelines/ │ ├── README.md │ ├── README_github_summ.md │ ├── README_taxidata_examples.md │ ├── components/ │ │ ├── README.md │ │ ├── automl/ │ │ │ ├── container/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ └── dataset_train/ │ │ │ └── dataset_model.py │ │ ├── cmle/ │ │ │ ├── containers/ │ │ │ │ ├── base/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build.sh │ │ │ │ └── cmle_deploy/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ └── deploy/ │ │ │ └── deploy_model.py │ │ └── older/ │ │ ├── dataflow/ │ │ │ ├── containers/ │ │ │ │ ├── base/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build.sh │ │ │ │ ├── tfma/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build.sh │ │ │ │ └── tft/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ ├── taxi_schema/ │ │ │ │ └── taxi_schema/ │ │ │ │ ├── __init__.py │ │ │ │ └── taxi_schema.py │ │ │ ├── tfma/ │ │ │ │ ├── analysis/ │ │ │ │ │ └── setup.py │ │ │ │ ├── model_analysis-taxi.py │ │ │ │ └── tfma_expers.ipynb │ │ │ └── tft/ │ │ │ ├── mcsv_coder.py │ │ │ ├── preprocessing.py │ │ │ ├── preprocessing2.py │ │ │ ├── schema.pbtxt │ │ │ ├── taxi_preprocess_bq.py │ │ │ └── transform/ │ │ │ └── setup.py │ │ ├── kubeflow/ │ │ │ ├── containers/ │ │ │ │ ├── launcher/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build.sh │ │ │ │ ├── tf-serving/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build.sh │ │ │ │ ├── tf-serving-gh/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build.sh │ │ │ │ └── trainer/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ ├── launcher/ │ │ │ │ ├── train.py │ │ │ │ └── train.template.yaml │ │ │ ├── taxi_model/ │ │ │ │ ├── __init__.py │ │ │ │ ├── data/ │ │ │ │ │ ├── eval/ │ │ │ │ │ │ └── data.csv │ │ │ │ │ └── train/ │ │ │ │ │ └── data.csv │ │ │ │ ├── schema.pbtxt │ │ │ │ ├── setup.py │ │ │ │ └── trainer/ │ │ │ │ ├── __init__.py │ │ │ │ ├── model.py │ │ │ │ ├── task.py │ │ │ │ └── taxi.py │ │ │ ├── tf-serving/ │ │ │ │ ├── chicago_taxi_client.py │ │ │ │ ├── deploy-tf-serve.py │ │ │ │ ├── schema.pbtxt │ │ │ │ └── tf-serve-template.yaml │ │ │ └── tf-serving-gh/ │ │ │ ├── deploy-tf-serve.py │ │ │ └── tf-serve-template.yaml │ │ └── t2t/ │ │ ├── containers/ │ │ │ ├── base/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ ├── t2t_app/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ ├── t2t_proc/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ ├── t2t_train/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ └── webapp-launcher/ │ │ │ ├── Dockerfile │ │ │ └── build.sh │ │ ├── t2t-app/ │ │ │ └── app/ │ │ │ ├── ghsumm/ │ │ │ │ ├── __init__.py │ │ │ │ ├── setup.py │ │ │ │ └── trainer/ │ │ │ │ ├── __init__.py │ │ │ │ └── problem.py │ │ │ ├── github_issues_sample.csv │ │ │ ├── main.py │ │ │ └── templates/ │ │ │ └── index.html │ │ ├── t2t-proc/ │ │ │ └── ghsumm/ │ │ │ ├── __init__.py │ │ │ ├── setup.py │ │ │ └── trainer/ │ │ │ ├── __init__.py │ │ │ └── problem.py │ │ ├── t2t-train/ │ │ │ ├── ghsumm/ │ │ │ │ ├── __init__.py │ │ │ │ ├── setup.py │ │ │ │ └── trainer/ │ │ │ │ ├── __init__.py │ │ │ │ └── problem.py │ │ │ └── train_model.py │ │ └── webapp-launcher/ │ │ ├── deploy-webapp.py │ │ └── t2tapp-template.yaml │ ├── keras_tuner/ │ │ ├── README.md │ │ ├── components/ │ │ │ ├── eval_metrics_component.yaml │ │ │ ├── kubeflow-resources/ │ │ │ │ ├── bikesw_training/ │ │ │ │ │ ├── bikes_weather_limited.py │ │ │ │ │ ├── bw_hptune_standalone.py │ │ │ │ │ ├── bwmodel/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── model.py │ │ │ │ │ ├── deploy_tuner.py │ │ │ │ │ ├── eval_metrics.py │ │ │ │ │ ├── kchief_deployment_templ.yaml │ │ │ │ │ └── ktuners_deployment_templ.yaml │ │ │ │ ├── cloudbuild.yaml │ │ │ │ ├── containers/ │ │ │ │ │ ├── bikesw_training/ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── cloudbuild.yaml │ │ │ │ │ │ └── copydir.sh │ │ │ │ │ ├── bikesw_training_hptune/ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── cloudbuild.yaml │ │ │ │ │ │ └── copydir.sh │ │ │ │ │ ├── deploy_jobs/ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── cloudbuild.yaml │ │ │ │ │ │ └── copydir.sh │ │ │ │ │ └── tf-serving/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── cloudbuild.yaml │ │ │ │ │ └── copydir.sh │ │ │ │ └── tf-serving/ │ │ │ │ ├── deploy-tfserve.py │ │ │ │ └── tf-serve-template.yaml │ │ │ ├── serve_component.yaml │ │ │ ├── tfdv/ │ │ │ │ ├── Dockerfile │ │ │ │ ├── requirements.txt │ │ │ │ ├── tfdv.py │ │ │ │ └── tfdv_compare.py │ │ │ ├── tfdv_component.yaml │ │ │ ├── tfdv_drift_component.yaml │ │ │ └── train_component.yaml │ │ ├── example_pipelines/ │ │ │ ├── bw_ktune.py │ │ │ ├── bw_ktune_metrics.py │ │ │ ├── bw_tfdv.py │ │ │ ├── bw_train.py │ │ │ └── bw_train_metrics.py │ │ └── notebooks/ │ │ └── metrics_eval_component.ipynb │ ├── samples/ │ │ ├── automl/ │ │ │ ├── README.md │ │ │ └── dataset_and_train.py │ │ └── kubeflow-tf/ │ │ ├── README.md │ │ └── older/ │ │ ├── README.md │ │ ├── gh_summ.py │ │ ├── gh_summ_serve.py │ │ ├── pipelines-kubecon.ipynb │ │ ├── workflow1.py │ │ └── workflow2.py │ └── sbtb/ │ ├── README.md │ ├── components/ │ │ ├── kubeflow-resources/ │ │ │ ├── bikesw_training/ │ │ │ │ └── bikes_weather.py │ │ │ ├── containers/ │ │ │ │ ├── bikesw_training/ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build.sh │ │ │ │ └── tf-serving/ │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ └── tf-serving/ │ │ │ ├── deploy-tfserve.py │ │ │ └── tf-serve-template.yaml │ │ ├── serve_component.yaml │ │ └── train_component.yaml │ └── example_pipelines/ │ └── bw.py ├── notebook_examples/ │ ├── TF_linear_regressor.ipynb │ ├── caipp/ │ │ ├── caipp_connect.ipynb │ │ └── kfp_in_a_notebook.ipynb │ ├── functions/ │ │ ├── hosted_kfp_gcf.ipynb │ │ ├── main.py │ │ └── requirements.txt │ ├── hosted_kfp/ │ │ └── event_triggered_kfp_pipeline_bw.ipynb │ ├── keras_linear_regressor.ipynb │ └── mnist_estimator.ipynb └── vertex_pipelines/ └── pytorch/ └── cifar/ ├── Dockerfile ├── Dockerfile-gpu ├── Dockerfile-gpu-ct ├── LICENSE ├── README.md ├── input.json ├── pytorch-pipeline/ │ ├── .gitignore │ ├── README.md │ ├── cifar10_datamodule.py │ ├── cifar10_pytorch.py │ ├── cifar10_train.py │ ├── process_test.py │ ├── pytorch_pipeline/ │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── components/ │ │ │ ├── base/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base_component.py │ │ │ │ └── base_executor.py │ │ │ └── trainer/ │ │ │ ├── __init__.py │ │ │ ├── component.py │ │ │ ├── executor.py │ │ │ └── generic_executor.py │ │ └── examples/ │ │ ├── __init__.py │ │ └── cifar10/ │ │ ├── cifar10_datamodule.py │ │ ├── cifar10_pre_process.py │ │ ├── cifar10_pytorch.py │ │ ├── cifar10_train.py │ │ ├── input.json │ │ └── utils.py │ └── training_task.py ├── pytorch_cifar10_vertex_pipelines.ipynb └── requirements.txt