Python:如何将经过训练和腌制的 NLTK 标记器加载到 GAE 并使用?
我有一个经过训练和腌制的 NLTK 标记器(Brill 的基于规则的转换标记器)。 我想在GAE上使用它。最好的方法是什么?
I have a trained and pickled NLTK tagger (Brill's transformational rule-based tagger).
I want to use it on GAE. What the best way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 NLTK 标记器代码和数据大小有限,请将其与您的 GAE 代码一起携带。
如果您必须对其采取行动来重新训练集合,那么可以选择将文件内容作为 BLOB 存储在数据存储中,以便您获取、分析、重新训练和放置。但是由于 GAE 硬限制,数据项的大小将限制为小于 1 MB。
If your NLTK tagger code and data is of limited size, then carry it along with your GAE code.
If you have to act upon it to retrain the set, then storing the content of the file as a
BLOB in the datastore
would be an option, so that you get, analyze, retrain and put.But that will limit size of dataitem to be less than 1 MB because of GAE hardlimit.