Skip to content

Commit c7f0fc3

Browse files
committedNov 17, 2017
fix minor typo
1 parent 79a0be2 commit c7f0fc3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎07-working-with-text-data.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1092,9 +1092,9 @@
10921092
"from sklearn.decomposition import LatentDirichletAllocation\n",
10931093
"lda = LatentDirichletAllocation(n_topics=10, learning_method=\"batch\",\n",
10941094
" max_iter=25, random_state=0)\n",
1095-
"# be build the model and transform the data in one step\n",
1096-
"# computing transform takes some time,\n",
1097-
"# and we can save time by doing both at once.\n",
1095+
"# We build the model and transform the data in one step\n",
1096+
"# Computing transform takes some time,\n",
1097+
"# and we can save time by doing both at once\n",
10981098
"document_topics = lda.fit_transform(X)"
10991099
]
11001100
},

0 commit comments

Comments
 (0)
Please sign in to comment.