Test2 / fix_cache.py
endyaris's picture
Update fix_cache.py
bcf1639 verified
raw
history blame contribute delete
190 Bytes
from transformers.utils import move_cache
def remove_old_cache():
print("Migrating old cache to the new format...")
move_cache()
print("Cache migration completed successfully.")