12 lines
341 B
Python
12 lines
341 B
Python
|
|
class CollocationSentenceMapper:
|
|
def __init__(self, output_dir):
|
|
self.output = open(output_dir, "w")
|
|
self.output.write(f'Collocation_id\tSentence_id\n')
|
|
|
|
def close(self):
|
|
self.output.close()
|
|
|
|
def add_map(self, collocation_id, sentence_id):
|
|
self.output.write(f'{collocation_id}\t{sentence_id}\n')
|