stopwords-filter:过滤停用词的项目

时间:2024-06-13 16:10:47
【文件属性】:

文件名称:stopwords-filter:过滤停用词的项目

文件大小:21KB

文件格式:ZIP

更新时间:2024-06-13 16:10:47

Ruby

停用词过滤器 这个项目是停用词过滤器的一种非常简单且幼稚的实现,它从句子中删除了一系列禁止词(停用词)。 快速指南 安装 只需输入 gem install stopwords-filter 或者 # Don't forget the 'require:' gem 'stopwords-filter', require: 'stopwords' 在您的Gemfile中。 用它 简单版 stopwords = ['by', 'written', 'from'] filter = Stopwords::Filter.new stopwords filter.filter 'guide by douglas adams'.split # ['guide', 'douglas', 'adams'] filter.stopword? 'by' # true 雪球版 filter = Sto


【文件预览】:
stopwords-filter-master
----Rakefile(956B)
----CHANGELOG(538B)
----stopwords-filter.gemspec(2KB)
----Gemfile(108B)
----Gemfile.lock(659B)
----VERSION(6B)
----spec()
--------lib()
--------spec_helper.rb(35B)
----lib()
--------stopwords.rb(101B)
--------stopwords()
----README.md(4KB)
----LICENSE.txt(1KB)

网友评论