sonnetsCounts.mat file

2 Ansichten (letzte 30 Tage)
Peter Mayhew
Peter Mayhew am 23 Dez. 2018
Kommentiert: Walter Roberson am 26 Dez. 2018
Does anyone know how the sonnetsCounts.mat file was created on the following MATLAB page: https://uk.mathworks.com/help/textanalytics/ref/ldamodel.predict.html
Predict Top LDA Topics of Word Count Matrix
Load the example data. sonnetsCounts.mat contains a matrix of word counts and a corresponding vocabulary of preprocessed versions of Shakespeare's sonnets.
load sonnetsCounts.mat
size(counts)
ans = 1×2
154 3092
When I open the sonnetsCounts.mat file, it has the following data
val =
(1,1) 1
(106,1) 1
(131,1) 2
(154,1) 1
(1,2) 1
(143,2) 1
I presume the second column in the frequency of words. But I'm not sure if the vector in the first column represents two words?
Peter

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 24 Dez. 2018
Bearbeitet: Walter Roberson am 24 Dez. 2018
The counts is a sparse matrix.
(143,2) 1
means that sonnet #143, unique word #2, had a count of 1.
  4 Kommentare
Peter Mayhew
Peter Mayhew am 26 Dez. 2018
Bearbeitet: Peter Mayhew am 26 Dez. 2018
OK, so if I understand correctly. I would perform the following command
bag = bagOfWords(documents);
Then check the counts property of variable bag.
Walter Roberson
Walter Roberson am 26 Dez. 2018
Counts with a capital C, but Yes.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by