Interesting Projects
In this section, we will show you some interesting projects that are implemented in other deep learning frameworks. These projects give significant results over very difficult problems. You may want to challenge yourself to implement these methods in TensorFlow.
Problem 17 - Interactive Deep Colorization - iDeepColor
Project link: https://richzhang.github.io/ideepcolor/
Interactive Deep Colorization is research being carried out by Richard Zhang and Jun-Yan Zun, and others, for user-guided image colorization. In this system, users can give the network a few hints of colors for some points in the image and the network will propagate user inputs along with semantic information learned from large scale data. The colorization can be performed in real time with one single forward pass.
Problem 18 - Tiny face detector
Project link: https://github.com/peiyunh/tiny
This project is a face detector that focuses on finding the small faces in the image by Peiyun Hu and Deva Ramanan. While...