(self, convert_dir, out_dir)
| 105 | raise NotImplementedError |
| 106 | |
| 107 | def convert2euler(self, convert_dir, out_dir): |
| 108 | dir_name = os.path.dirname(os.path.realpath(__file__)) |
| 109 | convert_meta = self.meta_file |
| 110 | g = EulerGenerator(convert_dir, |
| 111 | convert_meta, |
| 112 | out_dir, |
| 113 | self.partition_num) |
| 114 | g.do() |
| 115 | |
| 116 | def remove_data(self): |
| 117 | print("removing data from {}...".format(self.data_dir)) |
no test coverage detected