Skip to content

Commit

Permalink
Update face_stylizer.ipynb
Browse files Browse the repository at this point in the history
output "output_mage" variable is not declared. rather the result is stored in "reconstruct_style_image"
  • Loading branch information
kuaashish authored Jan 10, 2024
1 parent 20ff3fc commit f0b1692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/customization/face_stylizer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
"iterator = iter(eval_output_data)\n",
"\n",
"reconstruct_style_image = (tf.squeeze(iterator.get_next()).numpy())\n",
"test_output_image = cv2.cvtColor(output_image, cv2.COLOR_RGB2BGR)\n",
"test_output_image = cv2.cvtColor(reconstruct_style_image, cv2.COLOR_RGB2BGR)\n",
"print('\\nReconstructed style image')\n",
"cv2_imshow(test_output_image)"
],
Expand Down

0 comments on commit f0b1692

Please sign in to comment.