From 15afaccd8a5bc1f6af35b4484a3092e70bc26531 Mon Sep 17 00:00:00 2001 From: Hyunsu Lee Date: Thu, 30 Mar 2017 14:21:31 +0900 Subject: [PATCH 1/2] update gitignore ./idea - pycharm stuff /logs - tensorboard stuff --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index f423750..4787532 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,9 @@ MNIST_data/ /in_vis.png /word2vec.png /pred_vis.png + +# pycharm stuff: +.idea/ + +#tensorboard logs +logs/ \ No newline at end of file From e36a1841ba187b1d51a1a8e5491b46171f95c1a0 Mon Sep 17 00:00:00 2001 From: Hyunsu Lee Date: Mon, 3 Apr 2017 12:59:17 +0900 Subject: [PATCH 2/2] add ignoring for python notebook stuff --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4787532..ff77f9b 100644 --- a/.gitignore +++ b/.gitignore @@ -66,4 +66,7 @@ MNIST_data/ .idea/ #tensorboard logs -logs/ \ No newline at end of file +logs/ + +#ipython notebook +.ipynb_checkpoints/ \ No newline at end of file