Last active
May 22, 2020 17:25
-
-
Save aravindpai/0658a8e560a86e48a54795f218122784 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#merge the frequent pair in corpus | |
corpus = merge_vocab(best, corpus) | |
print("After Merging:", corpus) | |
#convert a tuple to a string | |
best = "".join(list(best)) | |
#append to merge list and vocabulary | |
merges = [] | |
merges.append(best) | |
vocab.append(best) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment