"examples/run_bert_classifier.py" did not exist on "6bb7510a50af4b736df296620fa58a77fea978e2"
Commit beaf66b1 authored by Lysandre's avatar Lysandre
Browse files

Remove break

parent bab6ad01
...@@ -76,9 +76,6 @@ def glue_convert_examples_to_features(examples, tokenizer, ...@@ -76,9 +76,6 @@ def glue_convert_examples_to_features(examples, tokenizer,
features = [] features = []
for (ex_index, example) in enumerate(examples): for (ex_index, example) in enumerate(examples):
if ex_index == 10:
break
if ex_index % 10000 == 0: if ex_index % 10000 == 0:
logger.info("Writing example %d" % (ex_index)) logger.info("Writing example %d" % (ex_index))
if is_tf_dataset: if is_tf_dataset:
......
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