transcripts-api / run_once.py
shyameati's picture
Auto-update from script
cb33b57
raw
history blame contribute delete
177 Bytes
import shutil, os
CACHE_PATH = "/data/hf_dataset"
if os.path.exists(CACHE_PATH):
shutil.rmtree(CACHE_PATH)
print("Cache cleared.")
else:
print("No cache found.")