├── .gitignore ├── LICENSE ├── README.md ├── custom_components ├── __init__.py ├── firebase_publisher.py ├── flower_densenet_trainer.py ├── flower_mobilenet_trainer.py ├── vertex_deployer.py └── vertex_uploader.py ├── figures ├── README.md ├── cloud_build_log.png ├── overall_workflow.png └── sample_architecture.png └── notebooks ├── Custom_Model_TFX.ipynb ├── Dataset_Prep.ipynb ├── Dual_Deployments_With_AutoML.ipynb ├── Model_Tests.ipynb └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/firebase_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/custom_components/firebase_publisher.py -------------------------------------------------------------------------------- /custom_components/flower_densenet_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/custom_components/flower_densenet_trainer.py -------------------------------------------------------------------------------- /custom_components/flower_mobilenet_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/custom_components/flower_mobilenet_trainer.py -------------------------------------------------------------------------------- /custom_components/vertex_deployer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/custom_components/vertex_deployer.py -------------------------------------------------------------------------------- /custom_components/vertex_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/custom_components/vertex_uploader.py -------------------------------------------------------------------------------- /figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/figures/README.md -------------------------------------------------------------------------------- /figures/cloud_build_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/figures/cloud_build_log.png -------------------------------------------------------------------------------- /figures/overall_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/figures/overall_workflow.png -------------------------------------------------------------------------------- /figures/sample_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/figures/sample_architecture.png -------------------------------------------------------------------------------- /notebooks/Custom_Model_TFX.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/notebooks/Custom_Model_TFX.ipynb -------------------------------------------------------------------------------- /notebooks/Dataset_Prep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/notebooks/Dataset_Prep.ipynb -------------------------------------------------------------------------------- /notebooks/Dual_Deployments_With_AutoML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/notebooks/Dual_Deployments_With_AutoML.ipynb -------------------------------------------------------------------------------- /notebooks/Model_Tests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/notebooks/Model_Tests.ipynb -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayakpaul/Dual-Deployments-on-Vertex-AI/HEAD/notebooks/README.md --------------------------------------------------------------------------------