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