(self, data_dir=current_dir, data_type='all')
| 38 | class DataSet(object): |
| 39 | |
| 40 | def __init__(self, data_dir=current_dir, data_type='all'): |
| 41 | self.data_dir = data_dir |
| 42 | self.data_type = data_type |
| 43 | self.source_url = 'DEFALT URL' |
| 44 | self.partition_num = 10 |
| 45 | self.meta_file = None |
| 46 | self.origin_files = [] |
| 47 | self.test_start_num = None |
| 48 | |
| 49 | def load_graph(self): |
| 50 | origin_file = self.maybe_download(self.data_dir, self.source_url) |
nothing calls this directly
no outgoing calls
no test coverage detected