(self, tempdir, target_dir)
| 5 | |
| 6 | class CodePile(Dataset): |
| 7 | def __init__(self, tempdir, target_dir): |
| 8 | self.subdatasets = [] |
| 9 | |
| 10 | subsets = [ |
| 11 | StackExchangeDataset |
| 12 | ] |
| 13 | for d in subsets: |
| 14 | self.subdatasets.append(d(tempdir, target_dir)) |
| 15 | |
| 16 | def download(self): |
| 17 | for d in self.subdatasets: |
nothing calls this directly
no outgoing calls
no test coverage detected