Algorithm Tang

Results 2 comments of Algorithm Tang

```python def convert_file(input_file, output_file, tag2query_file): """ Convert MSRA raw data to MRC format """ origin_count = 0 new_count = 1 tag2query = json.load(open(tag2query_file)) mrc_samples = [] contexts, labels = [],...