Skip to content

Commit 9c16db6

Browse files
AleksMattflite-support-robot
authored andcommitted
Replace unicode escaped characters in ipynb files
PiperOrigin-RevId: 853903781
1 parent a205654 commit 9c16db6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tensorflow_lite_support/examples/colab/on_device_text_to_image_search_tflite.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@
758758
"# We train the first three epochs with the learning rate of 0.001 and\n",
759759
"# decrease it exponentially later on.\n",
760760
"def lr_scheduler(epoch, lr):\n",
761-
" if epoch \u003c 3:\n",
761+
" if epoch < 3:\n",
762762
" return lr\n",
763763
" else:\n",
764764
" return max(lr * tf.math.exp(-0.1), lr * 0.1)\n",
@@ -1193,7 +1193,7 @@
11931193
"id": "JGAsS4mQ3dnX"
11941194
},
11951195
"source": [
1196-
"We will not show the image here due to copyright issues. You can set `show_images=True` to display them (note that you can't set it to `True` unless you've downloaded the images at [this cell](#scrollTo=Ke6EeKAqj1vB\u0026line=12\u0026uniqifier=1)). Please check the post links for the license of each image."
1196+
"We will not show the image here due to copyright issues. You can set `show_images=True` to display them (note that you can't set it to `True` unless you've downloaded the images at [this cell](#scrollTo=Ke6EeKAqj1vB&line=12&uniqifier=1)). Please check the post links for the license of each image."
11971197
]
11981198
},
11991199
{

0 commit comments

Comments
 (0)