project,

Score Your Face Photo: a ML & Wechaty practice

huyingxi huyingxi Follow Sep 18, 2017 · 2 mins read
Score Your Face Photo: a ML & Wechaty practice

Recently I found a fun and easy middleware to use for WeChat, called Wechaty.

Wechaty can help developers quickly build applications based on Wechat, and it was born with a huge number of Potential users.

So I build a fun application based on Wechaty, called wechaty_selfie, which is a ChatBot that can score self-portraits.

selfie pear

Say goodbye to your choice of difficulty!

Screenshot of the application

selfie demo

Our development steps


Once you have a little nodejs knowledge, and a little deep learning basis, you can build it. :)

  1. Crawl data: The most important of this application is data. We crawled data(eg. picture URL, release time, the number of praise, the number of comments) with ‘selfie’ label from instagram.
  2. Filter data: In order to make the training data more convincing, we crawl the data with earlier release time. It is obviously that if a selfie has just been released, then it must not get enough exposure, so the number of comments and comments at this time is unstable. Considering this, we set the realease time threshold to 2000 seconds. We will filter out data which have realease time smaller than the threshold.
  3. Scoring strategy selection: We get the data(picture URL, the number of praise, the number of comments) for visual analysis, and found that most of the number of praise are between 0-10, so we simply consider the number of praise as the selfie’s score.
  4. Download pictures: We download the selfies that we will use by URL that we already have, and reshape them into 224 * 224 dimensions.
  5. Build DL model: In order to build the neural network quickly, we choose the pre-build model VGG16 in keras, and add five full connection layer on the top of it. The top of our model is a softMax layer with 10 categories.
  6. Build project & training model: Build wechaty project and the training of deep learning model.
  7. Debugging, success!

Appendix, packages we used

  • pylab: for drawing
  • matplotlib: for drawing
  • requests: handle http requests
  • numpy: matrix operations
  • h5py: formatting data sets
  • keras: deep learning
  • Wechaty: wechat middleware
  • Fs: transfer pictures

Some optimization recommendations

If you are interested what I have done and would like to Develop a similar application.

  • If you want to use pictures from Instagram that have the selfie label as the training data, you should crawl the pictures with earlier release time.
  • You may try several different scoring strategies.
  • You can build a more complex deep learning model.

Finally

I strongly recommend that you now click on the link below, there are surprises waiting for you!

And more details about my selfie bot, you can find in my github repository at: wechaty_selfie

Author: @huyingxi enjoying ML&Wechaty at BUPT

Join Newsletter
Get the latest news right in your inbox. We never spam!
Written by huyingxi
enjoying ML&Wechaty at BUPT. She is a graduate student studying at BUPT, who has very good experience related with ChatBot & Machine Learning and Chinese NLP.