(self, path)
| 121 | self.path = os.path.join(cfg.dataset_path, self.name) |
| 122 | |
| 123 | def relpath(self, path): |
| 124 | return os.path.relpath(path, self.path) |
| 125 | |
| 126 | def download(self, url): |
| 127 | from six.moves.urllib.request import urlretrieve |
no outgoing calls
no test coverage detected