Solution Review: Plot Topic Distribution
This is the in-depth solution review of the coding challenge "Plot Topic Distribution."
We'll cover the following...
Solution
Here is a sample solution for the challenge in the previous lesson.
Press + to interact
# Importing the necessary librariesfrom pycaret.nlp import *from pycaret.datasets import get_data# Load the datasetdata = get_data('kiva')# Get 1st 2000 instances of the datasetdata = data.iloc[0:2000]# Initializing the PyCaret NLP environmentnlp_setup=setup(data = data, target = 'en', session_id = 123)# Create the modellda_model = create_model('lda')# Plot the modelplot_model(lda_model, plot = 'topic_distribution')
Explanation
-
Lines 3–4: We import the necessary libraries ...