Evan Muzzall
Evan Muzzall
line 134 not behaving as expected... model$results[as.integer(rownames(model$bestTune)), ]
Replace lda = LatentDirichletAllocation(n_topics=10, max_iter=20, random_state=0) with lda = LatentDirichletAllocation(n_components=10, max_iter=20, random_state=0) in 02-unsupervised.ipynb and 02-unupervised-solutions.ipynb for newer versions of sklearn?
Update print("Cosine similarity between first and second book:") cosine_similarity needs updating
import nltk nltk.download('punkt')
in lda = LatentDirichletAllocation() change parameter `n_topics=` to `n_components=` Also, remove the deprecation warning.
Intro to Python Machine Learning as a *recommended* prerequisite for Text Analysis Fundamentals? Preface this in the README and slides/intro materials - perhaps something like: "We strongly recommend you take...