Unverified Commit fad60753 authored by derekjchow's avatar derekjchow Committed by GitHub
Browse files

Merge pull request #3029 from tidyjiang8/tidyjiang8-patch-1

compatible with tensorflow 1.4.1
parents 928e5555 196d173a
...@@ -36,8 +36,8 @@ ...@@ -36,8 +36,8 @@
"from matplotlib import pyplot as plt\n", "from matplotlib import pyplot as plt\n",
"from PIL import Image\n", "from PIL import Image\n",
"\n", "\n",
"if tf.__version__ != '1.4.0':\n", "if tf.__version__ < '1.4.0':\n",
" raise ImportError('Please upgrade your tensorflow installation to v1.4.0!')\n" " raise ImportError('Please upgrade your tensorflow installation to v1.4.* or later!')\n"
] ]
}, },
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment