Text Classification with Flair – Pytorch NLP Framework

In today’s tutorial we will be exploring another powerful natural language processing library called Flair. We will be seeing how to use Flair for text classification. Specifically we will learn how to build a model to predict or classify text as either offensive or non-offensive. What is Flair? Flair is a state of the art(SOTA) …

Text Classification with Flair – Pytorch NLP Framework Read More »

How to Split Dataset into Training and Testing Dataset For Machine Learning

One of the most important activities when building models is the ability to test and evaluate your model and have something to compare with that shows that your model actually worked. In order to do this you will need to have enough data to train and build a working model and also to test the …

How to Split Dataset into Training and Testing Dataset For Machine Learning Read More »

How to Run Streamlit Apps From Google’s Colab

The simplicity that streamlit offers for building apps is so cool and useful. But sometimes you may be constrained by lack of compute or incompatible  working environment on your local computer. In most cases Colab solves that problem. But what if you want to share your streamlit app with others from Colab. In this tutorial …

How to Run Streamlit Apps From Google’s Colab Read More »

Exploratory Data Analysis of Drug Review Dataset using Python

Exploratory Data Analysis is an important aspect of any data science project. It forms the initial steps before moving into the Machine learning aspects. In this tutorial we will be exploring the drug review dataset using python in an elaborate way.  In doing EDA (exploratory data analysis) it is recommended to keep in mind the …

Exploratory Data Analysis of Drug Review Dataset using Python Read More »

Building A Calculator with Streamlit Components and HTML

Streamlit components have so much potential. With the introduction of the components system in streamlit, we can now build additional features and integrate into the web apps we have been building. You can check out the docs on the components here. In this tutorial we will explore one of the components  – .html(). We will …

Building A Calculator with Streamlit Components and HTML Read More »

Clustering Countries into Continents using Unsupervised Machine Learning

Unsupervised Machine learning has several applications among them include its usage in identifying patterns and for clustering similar data into clusters or groups. In this tutorial we will see how to use unsupervised ML to perform a simple task of identifying the right continents a country belongs to given the longitude and the latitude. Unsupervised …

Clustering Countries into Continents using Unsupervised Machine Learning Read More »

Simple NLP app with Spacy-Streamlit

In this tutorial we will build a simple natural language processing(NLP) app with an awesome package called Spacy-Streamlit. Spacy-Streamlit is a python package that is useful for visualizing spaCy models and building interactive spaCy-powered apps with Streamlit. It has several functions and utils for visualizing spacy’s essential NLP features such as Tokenization using visualize_tokens() NER(Named …

Simple NLP app with Spacy-Streamlit Read More »

Machine Learning with PyCaret in Python

In this fourth industrial age – the Age of AI, the knowledge and applications of machine learning is essential for every business and industry. It has a lot of potential and benefit when incorporated into your business . But not everyone has the time and the energy to learn the intricacies of Data Science and …

Machine Learning with PyCaret in Python Read More »