├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .hound.yml ├── .rubocop.yml ├── .rubocop_todo.yml ├── Dockerfile ├── Gemfile ├── Gemfile-jruby ├── History.markdown ├── LICENSE ├── README.markdown ├── Rakefile ├── classifier-reborn-jruby.gemspec ├── classifier-reborn.gemspec ├── data └── stopwords │ ├── ar │ ├── bn │ ├── ca │ ├── cs │ ├── da │ ├── de │ ├── en │ ├── es │ ├── fi │ ├── fr │ ├── hi │ ├── hu │ ├── it │ ├── ja │ ├── nl │ ├── no │ ├── pl │ ├── pt │ ├── ru │ ├── se │ ├── tr │ ├── vi │ └── zh ├── docs ├── _config.yml ├── _layouts │ └── default.html ├── assets │ ├── css │ │ └── style.scss │ └── images │ │ ├── memory_backend_performance.png │ │ ├── redis_backend_performance.png │ │ └── redis_memory_proportional_backend_performance.png ├── bayes.md ├── development.md ├── favicon.ico ├── index.md ├── lsi.md └── validation.md ├── lib ├── classifier-reborn.rb └── classifier-reborn │ ├── backends │ ├── bayes_memory_backend.rb │ ├── bayes_redis_backend.rb │ └── no_redis_error.rb │ ├── bayes.rb │ ├── category_namer.rb │ ├── extensions │ ├── hasher.rb │ ├── token_filter │ │ ├── stemmer.rb │ │ ├── stopword.rb │ │ └── symbol.rb │ ├── tokenizer │ │ ├── token.rb │ │ └── whitespace.rb │ ├── vector.rb │ ├── vector_serialize.rb │ └── zero_vector.rb │ ├── lsi.rb │ ├── lsi │ ├── cached_content_node.rb │ ├── content_node.rb │ ├── summarizer.rb │ └── word_list.rb │ ├── validators │ └── classifier_validator.rb │ └── version.rb ├── script ├── bootstrap ├── cibuild ├── fmt ├── release └── test └── test ├── backends ├── backend_common_tests.rb ├── backend_memory_test.rb └── backend_redis_test.rb ├── bayes ├── bayesian_common_benchmarks.rb ├── bayesian_common_tests.rb ├── bayesian_integration_test.rb ├── bayesian_memory_benchmark.rb ├── bayesian_memory_test.rb ├── bayesian_redis_benchmark.rb └── bayesian_redis_test.rb ├── data ├── corpus │ ├── README.md │ └── SMSSpamCollection.tsv ├── stopwords │ └── en └── test_data_loader.rb ├── extensions ├── hasher_test.rb ├── matrix_test.rb ├── token_filter │ ├── stemmer_test.rb │ ├── stopword_test.rb │ └── symbol_test.rb ├── tokenizer │ ├── token_test.rb │ └── whitespace_test.rb └── zero_vector_test.rb ├── lsi ├── lsi_test.rb └── word_list_test.rb ├── test_helper.rb └── validators └── classifier_validation.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | ruby: 2 | config_file: .rubocop.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile-jruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/Gemfile-jruby -------------------------------------------------------------------------------- /History.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/History.markdown -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/Rakefile -------------------------------------------------------------------------------- /classifier-reborn-jruby.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/classifier-reborn-jruby.gemspec -------------------------------------------------------------------------------- /classifier-reborn.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/classifier-reborn.gemspec -------------------------------------------------------------------------------- /data/stopwords/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/ar -------------------------------------------------------------------------------- /data/stopwords/bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/bn -------------------------------------------------------------------------------- /data/stopwords/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/ca -------------------------------------------------------------------------------- /data/stopwords/cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/cs -------------------------------------------------------------------------------- /data/stopwords/da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/da -------------------------------------------------------------------------------- /data/stopwords/de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/de -------------------------------------------------------------------------------- /data/stopwords/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/en -------------------------------------------------------------------------------- /data/stopwords/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/es -------------------------------------------------------------------------------- /data/stopwords/fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/fi -------------------------------------------------------------------------------- /data/stopwords/fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/fr -------------------------------------------------------------------------------- /data/stopwords/hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/hi -------------------------------------------------------------------------------- /data/stopwords/hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/hu -------------------------------------------------------------------------------- /data/stopwords/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/it -------------------------------------------------------------------------------- /data/stopwords/ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/ja -------------------------------------------------------------------------------- /data/stopwords/nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/nl -------------------------------------------------------------------------------- /data/stopwords/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/no -------------------------------------------------------------------------------- /data/stopwords/pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/pl -------------------------------------------------------------------------------- /data/stopwords/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/pt -------------------------------------------------------------------------------- /data/stopwords/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/ru -------------------------------------------------------------------------------- /data/stopwords/se: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/se -------------------------------------------------------------------------------- /data/stopwords/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/tr -------------------------------------------------------------------------------- /data/stopwords/vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/vi -------------------------------------------------------------------------------- /data/stopwords/zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/data/stopwords/zh -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/assets/images/memory_backend_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/assets/images/memory_backend_performance.png -------------------------------------------------------------------------------- /docs/assets/images/redis_backend_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/assets/images/redis_backend_performance.png -------------------------------------------------------------------------------- /docs/assets/images/redis_memory_proportional_backend_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/assets/images/redis_memory_proportional_backend_performance.png -------------------------------------------------------------------------------- /docs/bayes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/bayes.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/lsi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/lsi.md -------------------------------------------------------------------------------- /docs/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/docs/validation.md -------------------------------------------------------------------------------- /lib/classifier-reborn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/backends/bayes_memory_backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/backends/bayes_memory_backend.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/backends/bayes_redis_backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/backends/bayes_redis_backend.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/backends/no_redis_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/backends/no_redis_error.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/bayes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/bayes.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/category_namer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/category_namer.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/hasher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/hasher.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/token_filter/stemmer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/token_filter/stemmer.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/token_filter/stopword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/token_filter/stopword.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/token_filter/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/token_filter/symbol.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/tokenizer/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/tokenizer/token.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/tokenizer/whitespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/tokenizer/whitespace.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/vector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/vector.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/vector_serialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/vector_serialize.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/extensions/zero_vector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/extensions/zero_vector.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/lsi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/lsi.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/lsi/cached_content_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/lsi/cached_content_node.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/lsi/content_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/lsi/content_node.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/lsi/summarizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/lsi/summarizer.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/lsi/word_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/lsi/word_list.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/validators/classifier_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/lib/classifier-reborn/validators/classifier_validator.rb -------------------------------------------------------------------------------- /lib/classifier-reborn/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ClassifierReborn 4 | VERSION = '2.3.0' 5 | end 6 | -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | bundle install --jobs=8 3 | -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/script/fmt -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/script/release -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/script/test -------------------------------------------------------------------------------- /test/backends/backend_common_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/backends/backend_common_tests.rb -------------------------------------------------------------------------------- /test/backends/backend_memory_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/backends/backend_memory_test.rb -------------------------------------------------------------------------------- /test/backends/backend_redis_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/backends/backend_redis_test.rb -------------------------------------------------------------------------------- /test/bayes/bayesian_common_benchmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/bayes/bayesian_common_benchmarks.rb -------------------------------------------------------------------------------- /test/bayes/bayesian_common_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/bayes/bayesian_common_tests.rb -------------------------------------------------------------------------------- /test/bayes/bayesian_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/bayes/bayesian_integration_test.rb -------------------------------------------------------------------------------- /test/bayes/bayesian_memory_benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/bayes/bayesian_memory_benchmark.rb -------------------------------------------------------------------------------- /test/bayes/bayesian_memory_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/bayes/bayesian_memory_test.rb -------------------------------------------------------------------------------- /test/bayes/bayesian_redis_benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/bayes/bayesian_redis_benchmark.rb -------------------------------------------------------------------------------- /test/bayes/bayesian_redis_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/bayes/bayesian_redis_test.rb -------------------------------------------------------------------------------- /test/data/corpus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/data/corpus/README.md -------------------------------------------------------------------------------- /test/data/corpus/SMSSpamCollection.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/data/corpus/SMSSpamCollection.tsv -------------------------------------------------------------------------------- /test/data/stopwords/en: -------------------------------------------------------------------------------- 1 | these 2 | are 3 | custom 4 | stopwords 5 | -------------------------------------------------------------------------------- /test/data/test_data_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/data/test_data_loader.rb -------------------------------------------------------------------------------- /test/extensions/hasher_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/hasher_test.rb -------------------------------------------------------------------------------- /test/extensions/matrix_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/matrix_test.rb -------------------------------------------------------------------------------- /test/extensions/token_filter/stemmer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/token_filter/stemmer_test.rb -------------------------------------------------------------------------------- /test/extensions/token_filter/stopword_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/token_filter/stopword_test.rb -------------------------------------------------------------------------------- /test/extensions/token_filter/symbol_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/token_filter/symbol_test.rb -------------------------------------------------------------------------------- /test/extensions/tokenizer/token_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/tokenizer/token_test.rb -------------------------------------------------------------------------------- /test/extensions/tokenizer/whitespace_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/tokenizer/whitespace_test.rb -------------------------------------------------------------------------------- /test/extensions/zero_vector_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/extensions/zero_vector_test.rb -------------------------------------------------------------------------------- /test/lsi/lsi_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/lsi/lsi_test.rb -------------------------------------------------------------------------------- /test/lsi/word_list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/lsi/word_list_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/validators/classifier_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekyll/classifier-reborn/HEAD/test/validators/classifier_validation.rb --------------------------------------------------------------------------------