Build a Video Conferencing App in 15 minutes
Tokenizing Words and Sentences, Stopwords Removal (NLP part 1)
Welcome to the first blog on our NLP course. In this we will be talking about Tokenization of words and sentences and stopwords removal from a text. Why Tokenization? Tokenization is done in order to process your data in a strict singular entity form. This means that, for example, if we tokenize my text into... Continue Reading →
Python Connection with PostgreSQL
PostgreSQL is a powerful, open source object-relational database system. PostgreSQL runs on all major operating systems. PostgreSQL follows ACID property of DataBase system and has the support of triggers, updatable views and materialized views, foreign keys. To connect PostgreSQL we use psycopg2 . It is the best and most friendly Database adapter in python language. It is both... Continue Reading →
Natural Language Processing (Beginners)
Natural Language Processing, or NLP, is a very trendy topic these days. But let me remind you, it all started in around 1990~ when people started to link our language with the computers. It was known as Information Retrieval at that time, which was researched a lot by companies like Yahoo and similar to create... Continue Reading →
Random Forest Algorithm | Machine Learning
Prerequisites: https://www.geeksforgeeks.org/decision-tree/ Random Forest Algorithm Random forest algorithm can use both for classification and the regression kind of problems. Random Forest is a supervised learning algorithm. It creates a forest to evaluate results. Random Forest builds multiple decision trees by picking 'K' number of data points point from the dataset and merges them together to... Continue Reading →
API in Backend Development
Most people ask - Do you work in Frontend or Backend? So what exactly is the difference? What does Backend Development even include? Backend Development (Web or Application) includes all the Server-Side code (not only databases) of the application. This means, all the processing of information, logical analysis, prediction, CPU driven tasks, data handling and... Continue Reading →
Using MongoDB in Flask (Basics)
Hey peeps, I imagine you all have gone through with understanding of REST api in our previous blogs, basically this and this. Also, do see the REST URL naming conventions to follow the best practises and grow your code in the best way. MongoDB The purpose of showing MongoDB to you introduce you guys to NoSQL... Continue Reading →
Logistic Regression in Layman Language
This blog post is to help programmers understand logistic regression to it's best in layman terms.
Python Selenium | Instagram Login
Selenium: Selenium Python bindings provide a convenient API to access Selenium Web Driver like Firefox, Chrome, etc. What is webdriver? Selenium WebDriver is an automation testing tool. When I say automation, it means it automates test scripts written in Selenium. Webdriver Install Chrome: https://sites.google.com/a/chromium.org/chromedriver/downloads Library Imported from selenium import webdriver import time Before we start... Continue Reading →
RESTapi URL Naming Conventions
Topics to be covered in this article - Basic URL naming conventions. Conventions for an API using a specific resource by using its ID. We have already discussed the HTTP verbs and their usage in this post. Basic URL Naming Conventions Well, this looks easy, anyone can name/design the URL anyway he wishes. But it... Continue Reading →