Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/build_filtered_chunks.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ def process_chunk_list(gov2, filter, root, mg4j, bitfunnel, min_postings, max_po

r = re.compile(filter)
basenames = [x for x in unfiltered_basenames if r.match(x)]
basenames.sort()

print("Processing {0} chunks.".format(len(basenames)))

Expand Down
1 change: 1 addition & 0 deletions scripts/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,7 @@ def build_chunk_manifest(self):
for root, dirs, files in os.walk(self.chunk_dir)
for f in files
if regex.search(f) is not None]
chunks.sort()

for chunk in chunks:
print(chunk)
Expand Down