def write_summary(location, summary_as_list, filename):
"""
Writes a generated summary to the specified location, writing both a pickle file and a text file; the pickle file
for easy program reading, and a text file for easy human and ROUGE reading.
:param location: the location to write the summary
:param summary_as_list: the summary to write, as a list of tuples with each tuple of the form
(sentence, sentence_index_into_paper)
:param filename: the name of the file to write.
"""
with open(location + "Pickles/" + filename + ".pkl", "wb") as f:
pickle.dump(summary_as_list, f)
raw_sentences = [x for x, _ in summary_as_list]
with open(location + "Text/" + filename + ".txt", "wb") as f:
for sentence in raw_sentences:
f.write(sentence)
f.write("\n")
useful_functions.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录