SwikarG commited on
Commit
1619a2a
·
verified ·
1 Parent(s): a5338bb

Update caption_store.py

Browse files
Files changed (1) hide show
  1. caption_store.py +5 -4
caption_store.py CHANGED
@@ -5,10 +5,11 @@ import os
5
  import time
6
  from typing import Optional
7
 
8
- if os.path.exists("/data"):
9
- CAPTION_STORE_PATH = "/data/captions.json"
10
- else:
11
- CAPTION_STORE_PATH = "captions.json"
 
12
 
13
 
14
  def _load() -> dict:
 
5
  import time
6
  from typing import Optional
7
 
8
+ # if os.path.exists("/data"):
9
+ # CAPTION_STORE_PATH = "/data/captions.json"
10
+ # else:
11
+ #
12
+ CAPTION_STORE_PATH = "captions.json"
13
 
14
 
15
  def _load() -> dict: