Skip to content

Files

Latest commit

0994165 · Mar 27, 2021

History

History
69 lines (48 loc) · 3.37 KB

2017-09-18-wechaty-selfie-bot.md

File metadata and controls

69 lines (48 loc) · 3.37 KB
title author categories tags image
Score Your Face Photo: a ML & Wechaty practice
huyingxi
project
code
featured
machine-learning
game
/assets/2017/wechaty-selfie-pear.jpg

Author: @huyingxi enjoying ML&Wechaty at BUPT

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