Data Science Processes with the Google Cloud AI-Platform as an example
The presentation were created in the scope of a project on tensorflow and Google Cloud Platform together with Fabien Tarrade, please visit github/tarrade/proj_DL_models_and_pipelines_with_GCP for latest developments.
Slides for
Install Anaconda Distribution on your system. This provides you with the most important packages on your system.
Install Jupter Notebook extension into base environment.
conda activate base
conda install -c conda-forge jupyter_contrib_nbextensions #triggers system-wide installation
git clone https://github.com/enryH/gcp_ml_engine_talk/
This will provide you a virtual environment of python packages needed to run the code.
create a python env based on a list of packages from environment.yml
conda env create -f environment.yml -n gcp_dl
activate the env
conda activate gcp_dl
In case of issue clean all the cache in conda
conda clean -a
In case you want to use nbdime for checking differences in notebooks:
nbdime config-git --enable --global
In case you want to use interactive slides using RISE:
conda activate gcp_dl
conda install -c conda_forge rise
update a python env based on a list of packages from environment.yml
conda env update -f environment.yml -n gcp_dl
delete the env to recreate it when too many changes are done
conda env remove -n gcp_dl
conda activate gcp_dl
tensorboard --logdir ./results
http://<something>:6006