File size: 398 Bytes
669d6a1
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from afml.production.model_development import load_and_prepare_training_data

def clear_data_cache():
    print("Clearing cache for load_and_prepare_training_data...")
    try:
        load_and_prepare_training_data.cache_clear()
        print("Cache cleared successfully.")
    except Exception as e:
        print(f"Failed to clear cache: {e}")

if __name__ == "__main__":
    clear_data_cache()