This file contains hidden or 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
this is the first line . | |
this is the second line . | |
this is the third line . |
This file contains hidden or 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
import os | |
import torch | |
import lineflow as lf | |
class Dictionary(object): | |
def __init__(self): | |
self.word2idx = {} | |
self.idx2word = [] | |
def add_word(self, word): |
OlderNewer