We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc77899 commit 524825dCopy full SHA for 524825d
test/common/cache_utils.py
@@ -3,7 +3,7 @@
3
import torchtext
4
from .parameterized_utils import load_params
5
6
-CACHE_STATUS_FILE = '.data/cache_status_file.json'
+CACHE_STATUS_FILE = '.data/cache_status_file.txt'
7
8
9
def check_cache_status():
@@ -21,7 +21,7 @@ def generate_data_cache():
21
if os.path.exists(CACHE_STATUS_FILE):
22
return
23
24
- raw_data_info = load_params('raw_datasets.json')
+ raw_data_info = load_params('raw_datasets.txt')
25
cache_status = {}
26
for info in raw_data_info:
27
info = info.args[0]
0 commit comments