tiny error in readme of sequence-labeling demo
Created by: nlp4whp
feed_list in readme.md is:
feed_list = [
inputs["input_ids"].name, inputs["position_ids"].name,
inputs["segment_ids"].name, inputs["input_mask"].name, label.name
]
but in sequence_label.py:
feed_list = [
inputs["input_ids"].name,
inputs["position_ids"].name,
inputs["segment_ids"].name,
inputs["input_mask"].name,
]
maybe label.name
in readme is a tiny mistake ?
because I see self.dataset.get_labels()
will be run in BaseReader