File size: 177 Bytes
cb33b57
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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.")