In this three-part series, we will teach you everything you need to build and deploy your own Chatbot. This is the first part of the series, where the rest of the series will cover the following topics:
We use a Jupyter Python 3 notebook as a collaborative coding environment for this project, and other bits of code for the…
This tutorial makes use of 3 cleaned data sets, as discussed and prepared in part 1 of this series.
The goal is to train a LDA model on the sentiment data and use that model to predict the sentiment of each covid-19 tweet.
The code accompanying this tutorial can be found here: https://github.com/aletna/Covid-19-Tweets-Classification.git
We will be using the following libraries:
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn import metrics
import pandas…