├── .circleci └── config.yml ├── Bayes2 ├── Dockerfile └── jupyter_notebook_config.py ├── Bayesian_docker └── Dockerfile ├── DL_GPU └── Dockerfile ├── DS_base └── Dockerfile ├── ES_Download └── Dockerfile ├── Honeypot └── Dockerfile ├── Huggingface_gpu ├── Dockerfile ├── custom.js └── jupyter_notebook_config.py ├── ML_class └── Dockerfile ├── Miniconda3 └── Dockerfile ├── fbprophet ├── Dockerfile ├── custom.js └── jupyter_notebook_config.py ├── gaussian_process ├── Dockerfile ├── custom.js └── jupyter_notebook_config.py ├── huggingface ├── Dockerfile ├── custom.js └── jupyter_notebook_config.py ├── nips └── Dockerfile ├── pytorch_GPU ├── Dockerfile └── jupyter_notebook_config.py ├── rl ├── Dockerfile └── jupyter_notebook_config.py └── tensorflow_cpu ├── Dockerfile └── jupyter_notebook_config.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /Bayes2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Bayes2/Dockerfile -------------------------------------------------------------------------------- /Bayes2/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Bayes2/jupyter_notebook_config.py -------------------------------------------------------------------------------- /Bayesian_docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Bayesian_docker/Dockerfile -------------------------------------------------------------------------------- /DL_GPU/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/DL_GPU/Dockerfile -------------------------------------------------------------------------------- /DS_base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/DS_base/Dockerfile -------------------------------------------------------------------------------- /ES_Download/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/ES_Download/Dockerfile -------------------------------------------------------------------------------- /Honeypot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Honeypot/Dockerfile -------------------------------------------------------------------------------- /Huggingface_gpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Huggingface_gpu/Dockerfile -------------------------------------------------------------------------------- /Huggingface_gpu/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Huggingface_gpu/custom.js -------------------------------------------------------------------------------- /Huggingface_gpu/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Huggingface_gpu/jupyter_notebook_config.py -------------------------------------------------------------------------------- /ML_class/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/ML_class/Dockerfile -------------------------------------------------------------------------------- /Miniconda3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/Miniconda3/Dockerfile -------------------------------------------------------------------------------- /fbprophet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/fbprophet/Dockerfile -------------------------------------------------------------------------------- /fbprophet/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/fbprophet/custom.js -------------------------------------------------------------------------------- /fbprophet/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/fbprophet/jupyter_notebook_config.py -------------------------------------------------------------------------------- /gaussian_process/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/gaussian_process/Dockerfile -------------------------------------------------------------------------------- /gaussian_process/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/gaussian_process/custom.js -------------------------------------------------------------------------------- /gaussian_process/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/gaussian_process/jupyter_notebook_config.py -------------------------------------------------------------------------------- /huggingface/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/huggingface/Dockerfile -------------------------------------------------------------------------------- /huggingface/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/huggingface/custom.js -------------------------------------------------------------------------------- /huggingface/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/huggingface/jupyter_notebook_config.py -------------------------------------------------------------------------------- /nips/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/nips/Dockerfile -------------------------------------------------------------------------------- /pytorch_GPU/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/pytorch_GPU/Dockerfile -------------------------------------------------------------------------------- /pytorch_GPU/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/pytorch_GPU/jupyter_notebook_config.py -------------------------------------------------------------------------------- /rl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/rl/Dockerfile -------------------------------------------------------------------------------- /rl/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/rl/jupyter_notebook_config.py -------------------------------------------------------------------------------- /tensorflow_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/tensorflow_cpu/Dockerfile -------------------------------------------------------------------------------- /tensorflow_cpu/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachinruk/Dockerfiles/HEAD/tensorflow_cpu/jupyter_notebook_config.py --------------------------------------------------------------------------------