Building A Drag & Drop Machine Learning App with Streamlit

Building Machine learning models can be time consuming and tedious,but with the advent of Auto ML services and application we can reduce our burden . In this tutorial we will be building a Semi – Automated ML app with streamlit. It is going to be a drag and drop machine learning app that features  Exploratory …

Building A Drag & Drop Machine Learning App with Streamlit Read More »

Building and Publishing Packages with Poetry

In this tutorial we will be looking at a nice python tool for building and publishing python packages and libraries. Poetry is a python dependency management tool that enables us to manage several python dependencies on your system. It comes with the ability to create virtual environment just like pipenv. Just like pipenv, it manages …

Building and Publishing Packages with Poetry Read More »

Building A Document Redactor NLP App with Streamlit,Spacy and Python

In this tutorial we will be building a document redaction app. Document redaction refers to the process of sanitizing and censoring a document based on selected terms. It is one of the applications of NLP – natural language processing. This image shows some of it use. In this case the important terms have been blacked …

Building A Document Redactor NLP App with Streamlit,Spacy and Python Read More »

How to Use Displacy in Flask For Named Entity Recognition

In this tutorial we will be see how to render the named entities of a text extracted using spacy’s displacy in flask. First of all the basic requirement is to use the following packages Flask Spacy Flask-Markdown To install the various packages we will be using pip as below pip install flask Flask-Markdown spacy To …

How to Use Displacy in Flask For Named Entity Recognition Read More »

Summarizer and Named Entity Checker App with Streamlit and SpaCy

In this tutorial, we will be building a summarization app as well as a named entity checker app using streamlit, spacy,gensim and sumy. The NLP app will consist of three parts. Summarizer Entity Checker Entity Checker of Text Extracted from a URL We will be using displacy from spacy to display our Named Entity in …

Summarizer and Named Entity Checker App with Streamlit and SpaCy Read More »

4 Ways to Productionize Your Machine Learning Models

Artificial Intelligence which includes Machine learning,Deep Learning,etc has changed the world and it is going to continue to change our lives. As we begin to accumulate more data via the smart technologies we used, there is going to be a huge demand for storage of these data. But that is not all, there is also …

4 Ways to Productionize Your Machine Learning Models Read More »