├── .gitignore ├── Airflow └── README.md ├── CONTRIBUTING.md ├── Kubeflow └── README.md ├── README.md ├── TFX └── README.md ├── images ├── airflow_pipe.png ├── components.png ├── frameworks.png ├── infra-cmp.png ├── infra_tooling.png ├── k8s_pipe.png ├── kubeflow_pipe.png ├── lifecycle.png ├── mlprojects.png ├── post-deploy.png ├── prioritize.png ├── testing.png ├── tfx_comp.png └── tfx_config.png └── other-languages └── Chinese(Simplified).md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Airflow/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Kubeflow/README.md: -------------------------------------------------------------------------------- 1 | TBD 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/README.md -------------------------------------------------------------------------------- /TFX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/TFX/README.md -------------------------------------------------------------------------------- /images/airflow_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/airflow_pipe.png -------------------------------------------------------------------------------- /images/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/components.png -------------------------------------------------------------------------------- /images/frameworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/frameworks.png -------------------------------------------------------------------------------- /images/infra-cmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/infra-cmp.png -------------------------------------------------------------------------------- /images/infra_tooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/infra_tooling.png -------------------------------------------------------------------------------- /images/k8s_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/k8s_pipe.png -------------------------------------------------------------------------------- /images/kubeflow_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/kubeflow_pipe.png -------------------------------------------------------------------------------- /images/lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/lifecycle.png -------------------------------------------------------------------------------- /images/mlprojects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/mlprojects.png -------------------------------------------------------------------------------- /images/post-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/post-deploy.png -------------------------------------------------------------------------------- /images/prioritize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/prioritize.png -------------------------------------------------------------------------------- /images/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/testing.png -------------------------------------------------------------------------------- /images/tfx_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/tfx_comp.png -------------------------------------------------------------------------------- /images/tfx_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/images/tfx_config.png -------------------------------------------------------------------------------- /other-languages/Chinese(Simplified).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezadir/Production-Level-Deep-Learning/HEAD/other-languages/Chinese(Simplified).md --------------------------------------------------------------------------------