Example #1
0
File: sieve.py Project: bgshin/mps
def load_data(config):
    data = conll.load_data(config['general']['data_dir'],
                                config['general']['suffix'])
    print len(data)
Example #2
0
def load_data(config):
    data = conll.load_data(config['general']['data_dir'],
                           config['general']['suffix'])
    print len(data)
Example #3
0
File: sieve.py Project: bgshin/mps
 def load_data(self):
     self.data = conll.load_data(self.config['general']['data_dir'],
                                 self.config['general']['suffix'])
     print True if 0 == len(self.data) else False
Example #4
0
 def load_data(self):
     self.data = conll.load_data(self.config['general']['data_dir'],
                                 self.config['general']['suffix'])
     print True if 0 == len(self.data) else False