Shafeek Saleem commited on
Commit
25ca690
·
1 Parent(s): 7638389

bug fixed images

Browse files
Files changed (1) hide show
  1. pages/3_Face Encodings.py +8 -3
pages/3_Face Encodings.py CHANGED
@@ -17,11 +17,16 @@ initialize_level()
17
  LEVEL = 3
18
 
19
  PKL_PATH = 'dataset/database.pkl'
20
- information = defaultdict(dict)
21
 
22
  def get_database():
23
- with open(PKL_PATH,'rb') as f:
24
- database = pkl.load(f)
 
 
 
 
 
 
25
  return database
26
 
27
  def step3_page():
 
17
  LEVEL = 3
18
 
19
  PKL_PATH = 'dataset/database.pkl'
 
20
 
21
  def get_database():
22
+ if not os.path.exists(PKL_PATH):
23
+ database = {'hello': 'world'}
24
+
25
+ with open(PKL_PATH, 'wb') as f:
26
+ pickle.dump(database, f, protocol=pickle.HIGHEST_PROTOCOL)
27
+ else:
28
+ with open(PKL_PATH,'rb') as f:
29
+ database = pkl.load(f)
30
  return database
31
 
32
  def step3_page():