From 6eab3c41e2a00d7128d5c25c1fe43a31ee6c8ea8 Mon Sep 17 00:00:00 2001 From: Atlas7 Date: Mon, 16 Oct 2017 13:25:30 +0100 Subject: [PATCH 1/2] wrap codes in markdown codeblock --- demo.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demo.ipynb b/demo.ipynb index 8c8a306..1baa478 100644 --- a/demo.ipynb +++ b/demo.ipynb @@ -102,10 +102,11 @@ "\n", "Now we can clone Tensorflow serving into our dependency-ready container\n", "\n", + "```\n", "git clone --recursive https://github.com/tensorflow/serving\n", "cd serving/tensorflow\n", "./configure\n", - "\n", + "```\n", "\n", "Now we need to build it using Google's Bazel build tool from inside our container. Bazel manages third party dependencies at code level, downloading and building them, as long as they are also built with Bazel. \n", "\n", From 1b59a708b139d52e9ab02908ce8d5ce678fff45e Mon Sep 17 00:00:00 2001 From: Atlas7 Date: Mon, 16 Oct 2017 13:26:23 +0100 Subject: [PATCH 2/2] ignore Jupyter Notebook checkpoint --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e9d95bb --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Jupyter Notebook checkpoints +.ipynb_checkpoints/ + +# PyCharm IDE +.idea \ No newline at end of file