in tasks/bucc/bucc.py [0:0]
def BuccExtract(cand2score, th, fname):
if fname:
of = open(fname, 'w', encoding=args.encoding)
bitexts = []
for (src, trg), score in cand2score.items():
if score >= th:
bitexts.append(src + '\t' + trg)
if fname:
of.write(src + '\t' + trg + '\n')
if fname:
of.close()
return bitexts