Skip to content

Commit

Permalink
Minor Comment Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SuyashLakhotia committed Jan 22, 2018
1 parent c790e81 commit a2b0980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def count_vectorize(self, **params):

def tfidf_normalize(self, norm="l1"):
"""
TF-IDF transform & normalize data_count. Do this at the very end.
TF-IDF transform & normalize data_count to data_tfidf. Do this at the very end.
"""
transformer = sklearn.feature_extraction.text.TfidfTransformer(norm=norm)
self.data_tfidf = transformer.fit_transform(self.data_count)
Expand Down

0 comments on commit a2b0980

Please sign in to comment.