Exemplo n.º 1
0
 def __init__(self):
     self.train_set = "train_set.json"
     self.cleaning = TextCleaning()
     self.vocabulary = "vocabulary.json"
     self.voc_data = {}
Exemplo n.º 2
0
 def __init__(self):
     self.vocab = "vocabulary.json"
     self.cleaning = TextCleaning()
     self.words = VocabularyCreator()
Exemplo n.º 3
0
 def __init__(self):
     self.train_set = "800-mails.json"
     self.cleaning = TextCleaning()
     self.vocabulary = "vocabulary.json"
Exemplo n.º 4
0
 def __init__(self):
     self.vocab = "vocabulary.json"
     self.cleaning = TextCleaning()
Exemplo n.º 5
0
 def __init__(self, vocab_file):
     self.vocab    = vocab_file
     self.cleaning = TextCleaning()
     self.voc_data = {}