mirror of
https://gitee.com/fastnlp/fastNLP.git
synced 2024-12-04 05:07:44 +08:00
check if data_dev.pkl exists
In line 100, add a if statement to check whether there exists a file named "data_dev.pkl" in the pickle path. If not, the file won't be loaded.
This commit is contained in:
parent
18586c9c6d
commit
50b5345539
@ -97,6 +97,7 @@ class BasePreprocess(object):
|
||||
save_pickle(data_train, pickle_path, "data_train.pkl")
|
||||
else:
|
||||
data_train = load_pickle(pickle_path, "data_train.pkl")
|
||||
if pickle_exist(pickle_path, "data_dev.pkl"):
|
||||
data_dev = load_pickle(pickle_path, "data_dev.pkl")
|
||||
else:
|
||||
# cross_val is True
|
||||
|
Loading…
Reference in New Issue
Block a user