Datasets:
mteb
/

results / remove_spaces_from_large_json_files.py
orionweller's picture
init
46c0fca
raw
history blame
469 Bytes
import os
import glob
import sys
import json
for file in glob.glob("results/*/*/*.json"):
# if the file is greater than 9 MB, compress it with gzip
if os.path.getsize(file) >= 9.5 * 1024 * 1024:
print(f"Resizing {file} to have no indentations")
# read it in as json and write it out with no indent
with open(file, "r") as f:
data = json.load(f)
with open(file, "w") as f:
json.dump(data, f, indent=None)