...

/

Solution Review: Plot Topic Distribution

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 libraries
from pycaret.nlp import *
from pycaret.datasets import get_data
# Load the dataset
data = get_data('kiva')
# Get 1st 2000 instances of the dataset
data = data.iloc[0:2000]
# Initializing the PyCaret NLP environment
nlp_setup=setup(data = data, target = 'en', session_id = 123)
# Create the model
lda_model = create_model('lda')
# Plot the model
plot_model(lda_model, plot = 'topic_distribution')

Explanation

  • Lines 3–4: We import the necessary libraries ...