Have you ever heard or even use service like Shazam? Cool, right? No, we are not going to make something as magical as it ? But using chromaprint we can create audio fingerprint so that we can do music search by using a music sample. Before we can use chromaprint python library, pyacoustid, we need to install chromaprint… Read More
Tag: python
Keras VGG16 flat-features extractor
Using pre-trained deep learning model as feature extractor is a proven way to improve classification accuracy. One of the famous model is Oxford’s VGG16, which is trained using million images to recognize 1,000 classes ranging from animals, vehicles and other stuffs. Now, to use VGG16 as part of another neural network is relatively easy, especially… Read More
Simple Facebook Messenger bot using Python Flask and PyAIML
We require only 3 easy steps to create a simple Facebook Messenger using Flask & PyAIML ? Create a webservice to accept & reply message Deploy the webservice online so it could be accessed by Facebook Create a Faceboook Messenger app and register the webservice as a webhook Create a webservice Verify identity by comparing… Read More