Commit f0d22061 authored by stephenwu's avatar stephenwu
Browse files

fixed style from pylint

parent 44e7092c
...@@ -1419,9 +1419,10 @@ def generate_tf_record_from_data_file(processor, ...@@ -1419,9 +1419,10 @@ def generate_tf_record_from_data_file(processor,
num_training_data = 0 num_training_data = 0
if train_data_output_path: if train_data_output_path:
train_input_data_examples = processor.get_train_examples(data_dir) train_input_data_examples = processor.get_train_examples(data_dir)
file_based_convert_examples_to_features(train_input_data_examples, label_list, file_based_convert_examples_to_features(train_input_data_examples,
max_seq_length, tokenizer, label_list, max_seq_length,
train_data_output_path, label_type) tokenizer, train_data_output_path,
label_type)
num_training_data = len(train_input_data_examples) num_training_data = len(train_input_data_examples)
if eval_data_output_path: if eval_data_output_path:
......
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