python Automatic-Corpus-Generation sgml文件解析为csv

网友投稿 297 2022-11-06


python Automatic-Corpus-Generation sgml文件解析为csv

最近需要用到文本纠错的数据集,但是是sgml格式的,类似xml格式的,我这里顺手用beautifulsoup解析了一下,核心代码还是来自​​loggingimport osimport codecsfrom tqdm import tqdmfrom bs4 import BeautifulSoup import pandas as pddef replace_char(string,char,index): string = list(string) string[index] = char return ''.join(string)def read_langs(file_name): logging.info(("Reading lines from {}".format(file_name))) total_data=[] with codecs.open(file_name, "r", "utf-8") as file: data = file.read() soup = BeautifulSoup(data, 'html.parser') results = soup.find_all('sentence') for item in tqdm(results): text = item.find("text").text.strip() correct_text=text mistakes = item.find_all("mistake") locations = [] for mistake in mistakes: location = mistake.find("location").text.strip() wrong = mistake.find("wrong").text.strip() correction_word=mistake.find('correction').text.strip() correct_text=replace_char(correct_text,correction_word,int(location)-1) locations.append(int(location)) if text[int(location)-1] != wrong: print("The character of the given location does not equal to the real character") sen = list(text) tags = ["0" for _ in range(len(sen))] for i in locations: tags[i - 1] = "1" total_data.append([correct_text,text, " ".join(tags)]) return total_datafile_name='train.sgml'total_data=read_langs(file_name)column_name = ['origin_text','random_text','label']csv_name='Automatic-Corpus-Generation.csv'xml_df = pd.DataFrame(total_data, columns=column_name)xml_df.to_csv(csv_name, index=None)

把它的train.sgml下载下来,就可以开开心心的跑代码了,哈哈哈。

参考文献

[1].A Hybrid Approach to Automatic Corpus Generation for Chinese Spelling Checking (EMNLP2018). ​​https://github.com/wdimmy/Automatic-Corpus-Generation​​


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:微服务网关(go微服务网关)
下一篇:Intellij IDEA使用restclient测试的教程图解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~