Skip to content

Commit

Permalink
Readme fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Mar 13, 2021
1 parent 79aef2d commit 2af5253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ text_corpus = prepare_data(
)[0]

# Remove n-grams for BERT training
# Clean texts without n-grams has been found to be better than raw texts for BERT
# Clean texts without n-grams have been found to be better than raw texts for BERT
# Retain n-grams for LDA and TFIDF
corpus_no_ngrams = [
" ".join([t for t in text.split(" ") if "_" not in t]) for text in text_corpus
Expand Down

0 comments on commit 2af5253

Please sign in to comment.