Unverified Commit 0d9ef8d3 authored by Mark Sandler's avatar Mark Sandler Committed by GitHub
Browse files

Fixes invalid json (#10250)

* Fixes invalid json

* Fixed invalid javascript

* fixed json
parent b66b0b05
...@@ -199,8 +199,8 @@ ...@@ -199,8 +199,8 @@
"source": [ "source": [
"# setup path and install tf-slim\n", "# setup path and install tf-slim\n",
"import sys\n", "import sys\n",
"sys.path.append('/content/models/research/slim')" "sys.path.append('/content/models/research/slim')",
"!pip install tf_slim", "!pip install tf_slim"
] ]
}, },
{ {
...@@ -232,7 +232,7 @@ ...@@ -232,7 +232,7 @@
"import tf_slim as slim\n", "import tf_slim as slim\n",
"from nets.mobilenet import mobilenet_v2\n", "from nets.mobilenet import mobilenet_v2\n",
"\n", "\n",
"tf.compat.v1.disable_eager_execution()\n" "tf.compat.v1.disable_eager_execution()\n",
"tf.reset_default_graph()\n", "tf.reset_default_graph()\n",
"\n", "\n",
"# For simplicity we just decode jpeg inside tensorflow.\n", "# For simplicity we just decode jpeg inside tensorflow.\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