Commit 8bd91182 authored by thomwolf's avatar thomwolf
Browse files

quick fix

parent 3e847449
...@@ -386,7 +386,7 @@ def main(): ...@@ -386,7 +386,7 @@ def main():
str(task_name))) str(task_name)))
try: try:
with open(cached_eval_features_file, "rb") as reader: with open(cached_eval_features_file, "rb") as reader:
train_features = pickle.load(reader) eval_features = pickle.load(reader)
except: except:
eval_features = convert_examples_to_features( eval_features = convert_examples_to_features(
eval_examples, label_list, args.max_seq_length, tokenizer, output_mode) eval_examples, label_list, args.max_seq_length, tokenizer, output_mode)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment