Samuel Schmidt commited on
Commit
6ee3bc1
·
1 Parent(s): 6b7f1b3

Update src/app.py

Browse files
Files changed (1) hide show
  1. src/app.py +1 -1
src/app.py CHANGED
@@ -7,9 +7,9 @@ import cv2
7
  import numpy as np
8
  from datasets import *
9
 
10
- cleanup_cache_files()
11
 
12
  dataset = load_dataset("huggan/CelebA-faces", download_mode='force_redownload')
 
13
  candidate_subset = dataset["train"].select(range(10)) # This is a small CBIR app! :D
14
 
15
  def index_dataset(dataset):
 
7
  import numpy as np
8
  from datasets import *
9
 
 
10
 
11
  dataset = load_dataset("huggan/CelebA-faces", download_mode='force_redownload')
12
+ dataset.cleanup_cache_files()
13
  candidate_subset = dataset["train"].select(range(10)) # This is a small CBIR app! :D
14
 
15
  def index_dataset(dataset):