gitextract_v2ir0_h2/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── .travis.yaml ├── LICENSE ├── README.md ├── autopep_stuff.sh ├── ch03/ │ ├── example_secret.yaml │ ├── linux_install.sh │ ├── mac_install.sh │ └── minio.sh ├── ch04/ │ ├── code/ │ │ ├── ControlStructures.ipynb │ │ ├── ControlStructures.py │ │ ├── Lightweight Pipeline.ipynb │ │ ├── Lightweight Pipeline.py │ │ ├── RecommenderPipeline.ipynb │ │ ├── RecommenderPipeline.py │ │ └── download_components.sh │ └── install/ │ ├── deployment.yaml │ └── virtualservice.yaml ├── ch06/ │ ├── MLflow.ipynb │ ├── MLflow.py │ ├── Metadata.ipynb │ ├── Metadata.py │ ├── docker/ │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── run.sh │ └── install/ │ └── mlflowchart/ │ ├── .helmignore │ ├── Chart.yaml │ ├── templates/ │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ └── mlflow.yaml │ └── values.yaml ├── ch10/ │ ├── experiment.yaml │ ├── hptuning.py │ └── random.yaml ├── ch2/ │ ├── Dockerfile │ ├── build-and-push.sh │ └── query-endpoint.py ├── ch2_seldon_examples/ │ ├── pipeline_role.yaml │ ├── pipeline_rolebinding.yaml │ ├── pv-claim.yaml │ ├── pv-volume.yaml │ ├── request_example.ipynb │ ├── run_example.sh │ ├── setup_example.sh │ ├── tf_mnist_no_seldon_pipeline.py │ ├── tiller_rbac.yaml │ └── train_pipeline.py ├── ch9/ │ └── ctscans/ │ ├── DICOM Denoising Pipeline.ipynb │ ├── calculate-basis-vectors/ │ │ ├── Dockerfile │ │ ├── build-component.sh │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── scala/ │ │ └── org/ │ │ └── rawkintrevo/ │ │ └── covid/ │ │ └── App.scala │ ├── download-dicom/ │ │ ├── Dockerfile │ │ ├── build-component.sh │ │ └── run.sh │ ├── process-dicoms-into-vectors/ │ │ ├── Dockerfile │ │ ├── build-component.sh │ │ ├── data/ │ │ │ └── s.150.csv │ │ ├── process-dicoms-into-vectors.yaml │ │ └── src/ │ │ └── program.py │ └── visualize-basis-vectors/ │ ├── Dockerfile │ ├── build-component.sh │ └── src/ │ └── program.py ├── ci.sh ├── convert_notebooks.sh ├── data-extraction/ │ ├── README.md │ ├── github_comments_query.bsql │ ├── github_issues_query.bsql │ ├── iot/ │ │ ├── basic.yaml │ │ └── build.sh │ ├── python-notebook/ │ │ ├── AddSpamassassinDockerfile │ │ ├── MailingListDataPrep.ipynb │ │ ├── MailingListDataPrep.py │ │ └── RunNBDockerfile │ ├── python-spark/ │ │ ├── Dockerfile │ │ ├── LaunchSparkJobs.ipynb │ │ ├── LaunchSparkJobs.py │ │ ├── fake_job.py │ │ └── requirements.txt │ ├── python-spark-notebook/ │ │ ├── AddGCSDockerfile │ │ ├── AddPython3.6Dockerfile │ │ ├── Dockerfile │ │ ├── SparkMailingListForKF.ipynb │ │ ├── SparkMailingListForKF.py │ │ ├── build.sh │ │ ├── dr.yaml │ │ ├── no-saprk-tls.yaml │ │ ├── spark-driver-service.yaml │ │ └── virt_service.yaml │ ├── spark-hello-world/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── hello_world_pipeline.py │ │ ├── lr_demo/ │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── build.sbt │ │ │ ├── project/ │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── sample.csv │ │ │ ├── sbt/ │ │ │ │ └── sbt │ │ │ └── src/ │ │ │ ├── main/ │ │ │ │ └── scala/ │ │ │ │ └── com/ │ │ │ │ └── introtomlwithkubeflow/ │ │ │ │ └── spark/ │ │ │ │ └── demo/ │ │ │ │ └── lr/ │ │ │ │ ├── TrainingApp.scala │ │ │ │ └── TrainingPipeline.scala │ │ │ └── test/ │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── introtomlwithkubeflow/ │ │ │ └── spark/ │ │ │ └── demo/ │ │ │ └── lr/ │ │ │ └── TrainingPipelineTest.scala │ │ ├── setup.sh │ │ ├── spark-pi-min.yaml │ │ └── spark-pi.yaml │ ├── stack_overflow_questions.bsql │ └── tfx/ │ ├── TFDV.ipynb │ ├── TFDV.py │ ├── install_tfx.sh │ ├── requirements.txt │ └── run_on_dataflow_ex.py ├── dev-setup/ │ ├── install-argo.sh │ ├── install-kf-pipeline-sdk.sh │ ├── install-kf.sh │ ├── install-kubectl.sh │ ├── install-kustomize.sh │ ├── install-microk8s.sh │ └── jsonnet.sh ├── feature-prep/ │ ├── README.md │ ├── spark/ │ │ ├── SparkMailingListFeaturePrep.ipynb │ │ └── SparkMailingListFeaturePrep.py │ └── tft/ │ ├── requirements.txt │ └── transform.py ├── gcp-setup/ │ ├── cloudshell_scrip.sh │ └── setup-gcp.sh ├── kfctl_gcp_iap.v1.0.1.yaml ├── pipelines/ │ ├── ControlStructures.ipynb │ ├── Lightweight Pipeline.ipynb │ ├── RecommenderPipeline.ipynb │ └── download_components.sh ├── recommender/ │ ├── Dockerfile │ ├── Recommender_Kubeflow.ipynb │ ├── Recommender_Kubeflow.py │ ├── docker/ │ │ ├── Dockerfile │ │ └── build.sh │ └── tfservingchart/ │ ├── .helmignore │ ├── Chart.yaml │ ├── templates/ │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── minioaccess.yaml │ │ ├── tfserving.yaml │ │ └── tfserving1.yaml │ └── values.yaml ├── runthrough.sh └── scikitLearn/ └── python/ └── IncomePrediction.ipynb