Skip to main content

Run chat bot on termux

Comments

Popular posts from this blog

1) Setting up Face Recognition Basic requirements

Many are working on the computer's vision power. We are well aware in today's era voice recognition is already there in other words now our computer can hear us. By the help of NLTK the hearing power and understanding the word is much improved. By this, we are now focussing how better we can make our computer or any other machine vision improved. I got curious about this and going to invest my time in this with doing a full-time job so the process will be slow. For start, I select Python language as it is easy to understand and there are a lot of packages available. Preparing a Linux PC with Python 3X with OpenCV and its dependency may take 2 - 3 hour depending upon your machine. Note: Consider having PC with at least 4gb RAM, not because it is Python won't support less RAM but the thing we are going to do may need RAM, plus Python is a scripting language it is slow as compare to other but efficient and easy. Let's start: Requirements: 1) Python3X 2) Ope

2) Installing Dlib Library

Once the machine setup is done successfully as described in my previous post ("Click me!")  we are good to go to install one more dependency which Dlib. Posting a completely new post just for Dlib because I struggled and like almost I just saved my OS from crashing so it deserves. Installing with the correct command is all that is needed there are many tutorials available for this installation and more I refer more I got confused so after 3 to 4 hour of struggle finally I came up with the necessary command which will be enough to install Dlib on your machine and we can proceed further to install the face_recognition package. Below are the commands I used and work perfectly: sudo apt-get install build-essential cmake sudo apt-get install libgtk-3-dev sudo apt-get install libboost-all-dev wget https://bootstrap.pypa.io/get-pip.py sudo python3 get-pip.py sudo pip3 install numpy sudo pip3 install scipy sudo pip3 install scikit-image sudo pip3 install dlib  sudo pip3 i