(data_dir, dirname)
| 172 | |
| 173 | @staticmethod |
| 174 | def get_test_labels_only(data_dir, dirname): |
| 175 | label_file = open(os.path.join(data_dir,dirname,"{}_labels.txt".format('test')),'r') |
| 176 | labels = [int(x.strip()) for x in label_file.readlines()] |
| 177 | return labels |
| 178 | |
| 179 | class YahooProcessor(DataProcessor): |
| 180 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected