Skip to content

Commit 10445f5

Browse files
Removed exit() call in topic extraction example
1 parent d21a297 commit 10445f5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

examples/applications/topics_extraction_with_nmf_lda.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ def print_top_words(model, feature_names, n_top_words):
7676
% (n_samples, n_features))
7777
t0 = time()
7878
nmf = NMF(n_components=n_topics, random_state=1, alpha=.1, l1_ratio=.5).fit(tfidf)
79-
exit()
8079
print("done in %0.3fs." % (time() - t0))
8180

8281
print("\nTopics in NMF model:")

0 commit comments

Comments
 (0)