微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

我如何使用 google ngram 查看器和 python 出现一个句子?

如何解决我如何使用 google ngram 查看器和 python 出现一个句子?

简短的背景:我尝试在 python 中通过 Peter Norvig 增强拼写校正器。从这个意义上说,我需要出现一个句子(最多 3-4 个单词)... Ngram viewer from Google我有很大帮助,但我不知道我如何通过 API 或其他东西获得价值。

代码

# Sentence without meaning but word for word correct.
>> occurrence("were are you")
0.0000000978

# Sentence that makes sense
>> occurrence("where are you")
0.000148

# Then my method should return the sentence with the highest value. (But thats not the problem)

对不起我的英语:-D 谢谢!

解决方法

他们实际上有一个未公开的 API。

import requests
import json

term = "where are you"
url =f"https://books.google.com/ngrams/json?content={term}&year_start=1800&year_end=2000&corpus=26&smoothing=3"
resp = requests.get(url)
if resp.ok:
  results = json.loads(resp.content)

results[0]['timeseries'] 具有您需要的频率:

[2.854326695000964e-07,3.4926038665616944e-07,3.3916604043800663e-07,...]

来源:https://jameshfisher.com/2018/11/25/google-ngram-api/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。