Useful resources for text processing in Ruby
This curated list comprises awesome resources, libraries, information sources about computational processing of texts in human languages with Ruby. That field is often referred to as NLP, Computational Linguistics, HLT (Human Language Technology) and can be brought in conjunction with Artificial Intelligence, Machine Learning, Information Retrieval and other related disciplines.
The list comes from our day to day work on Language Models and NLP Tools. Read why this list is awesome.
We all want to promote Ruby for NLP related tasks. Any help, suggestions and
contributions are welcome! We kindly ask you to study
the Contribution section. Please spread the word using
the #RubyNLP
hash tag!
- NLP Pipeline Subtasks
- High Level Tasks
- Machine Learning Libraries
- Language Aware String Manipulation
- Articles, Posts, Talks, and Presentations
- Books
- Community
- Related Resources
- Contributing
- License
- Composable Operations - Definition framework for operation pipelines.
- Ruby-Spark - Spark bindings with an easy to understand DSL.
- Open NLP - Ruby Bindings for the OpenNLP Toolkit.
- Stanford Core NLP - Ruby Bindings for the Stanford CoreNLP tools.
- Treat - Natural Language Processing framework for Ruby.
Tools for Tokenization, Word and Sentence Boundary Detection and Disambiguation.
- tokenizer - Simple multilingual tokenizer. [tutorial]
- pragmatic_tokenizer - Multilingual tokenizer to split a string into tokens.
- nlp-pure - Natural language processing algorithms implemented in pure Ruby with minimal dependencies.
- textoken - Simple and customizable text tokenization library.
- pragmatic_segmenter - Word Boundary Disambiguation with many cookies.
- punkt-segmenter - Pure Ruby implementation of the Punkt Segmenter.
- Tactful_Tokenizer - RegExp based tokenizer for different languages.
- scapel - Sentence Boundary Disambiguation tool.
Stemming is the term used in information retrieval to describe the process for
reducing wordforms to some base representation. Stemming should be distinguished
from Lemmatization since stems
are not necessarily have
linguistic motivation.
- ruby-stemmer - Ruby-Stemmer exposes the SnowBall API to Ruby.
- uea-stemmer - Conservative stemmer for search and indexing.
Lemmatization is considered a process of finding a base form of a word. Lemmas are often collected in dictionaries.
- lemmatizer - WordNet based Lemmatizer for English texts.
- wc - Facilities to count word occurrences in a text.
- word_count -
Word counter for
String
andHash
objects.
- N-Gram - N-Gram generator.
- ngram - Break words and phrases into ngrams.
- raingrams - Flexible and general-purpose ngrams library written in pure Ruby.
- stanfordparser - Ruby based wrapper for the Stanford Parser.
- amatch - Set of five distance types between strings (including Levenshtein, Sellers, Jaro-Winkler, 'pair distance').
- damerau-levenshtein - Calculates edit distance using the Damerau-Levenshtein algorithm.
- FuzzyTools - In-memory TF/IDF fuzzy document finding with a fancy default tokenizer.
- Going the Distance - Contains scripts that do various distance calculations.
- hotwater - Fast Ruby FFI string edit distance algorithms.
- levenshtein-ffi - Fast string edit distance computation, using the Damerau-Levenshtein algorithm.
- TF-IDF - Term Frequency / Inverse Document Frequency in pure Ruby.
- tf-idf-similarity - Calculate the similarity between texts using TF/IDF.
- SentimentLib - Simple extensible sentiment analysis gem.
- alignment - Alignment routines for bilingual texts (Gale-Church implementation).
- Google API Client - Google API Ruby Client.
- microsoft_translator - Ruby client for the microsoft translator API.
- termit - Google Translate with speech synthesis in your terminal.
- chatterbot - Straightforward ruby-based Twitter Bot Framework, using OAuth to authenticate.
- Lita - Lita is a chat bot written in Ruby with persistent storage provided by Redis.
- Chronic - Pure Ruby natural language date parser
- Chronic Between - Simple Ruby natural language parser for date and time ranges.
- Chronic Duration - Pure Ruby parser for elapsed time.
- Kronic - Methods for parsing and formatting human readable dates.
- Nickel - Extracts date, time, and message information from naturally worded text.
- Tickle - Parser for recurring and repeating events.
- ruby-ner - Named Entity Recognition with Stanford NER and Ruby.
- ruby-nlp - Ruby Binding for Stanford Pos-Tagger and Name Entity Recognizer.
- espeak-ruby - Small Ruby API for utilizing 'espeak' and 'lame' to create text-to-speech mp3 files.
- Isabella - Voice-computing assistant built in Ruby.
- tts - Text-to-Speech conversion using the Google translate service.
- att_speech - Ruby wrapper over the AT&T Speech API for speech to text.
- pocketsphinx-ruby - Pocketsphinx bindings.
Machine Learining Algorithms in pure Ruby or written in other programming languages with appropriate bindings for Ruby.
- rb-libsvm - Support Vector Machines with Ruby.
- weka-jruby - JRuby bindings for Weka, different ML algorithms implemented through Weka.
- decisiontree - Decision Tree ID3 Algorithm in pure Ruby.
- rtimbl - Memory based learners from the Timbl framework.
- classifier-reborn - General classifier module to allow Bayesian and other types of classifications.
- Latent Dirichlet Allocation - Pure Ruby LDA implementation to automatically cluster documents into topics.
- liblinear-ruby-swig - Ruby interface to LIBLINEAR (much more efficient than LIBSVM for text classification).
- linnaeus - Redis-backed Bayesian classifier.
- maxent_string_classifier - JRuby maximum entropy classifier for string data, based on the OpenNLP Maxent framework.
- Naive-Bayes - Simple Naive Bayes classifier.
- nbayes - Full-featured, Ruby implementation of Naive Bayes.
- omnicat - Generalized rack framework for text classifications.
- omnicat-bayes - Naive Bayes text classification implementation as an OmniCat classifier strategy.
Libraries for language aware string manipulation, i.e. search, pattern matching, case conversion, transcoding, regular expressions which need information about the underlying language.
- FuzzyMatch - find a needle in a haystack based on string similarity and regular expression rules.
- fuzzy-string-match - Fuzzy string matching library for Ruby.
- active_support -
RoR
ActiveSupport
gem has various string extensions that can handle case. - u - U extends Ruby’s Unicode support.
- unicode - Unicode normalization library.
- CommonRegexRuby - Find a lot of kinds of common information in a string.
- regexp-examples - Generate strings that match a given regular expression.
- verbal_expressions - Make difficult regular expressions easy.
- 2016
- Quickly Create a Telegram Bot in Ruby by Ardian Haxha [tutorial]
- Deep Learning: An Introduction for Ruby Developers by Geoffrey Litt [slides]
- How I made a pure-Ruby word2vec program more than 3x faster by Kei Sawada [slides]
- 2015
- N-gram Analysis for Fun and Profit by Jesus Castello [tutorial]
- Machine Learning made simple with Ruby by Lorenzo Masini [tutorial]
- Using Ruby Machine Learning to Find Paris Hilton Quotes by Rick Carlino [tutorial]
- Exploring Natural Language Processing in Ruby by Kevin Dias [slides]
- 2014
- Natural Language Parsing with Ruby by Glauco Custódio [tutorial]
- Demystifying Data Science: Analyzing Conference Talks with Rails and Ngrams by Todd Schneider [video | code]
- Natural Language Processing with Ruby by Konstantin Tennhard [video | video]
- 2013
- How to parse 'go' - Natural Language Processing in Ruby by Tom Cartwright [slides]
- Natural Language Processing in Ruby by Brandon Black [slides | video]
- Natural Language Processing with Ruby: n-grams by Nathan Kleyn [tutorial | code]
- Seeking Lovecraft, Part 1: An introduction to NLP and the Treat Gem by Robert Qualls [tutorial]
- 2012
- Machine Learning with Ruby, Part One by Vasily Vasinov [tutorial]
- 2011
- Ruby one-liners by Benoit Hamelin [post]
- Clustering in Ruby by Colin Drake [post]
- Miller, Rob. Text Processing with Ruby: Extract Value from the Data That Surrounds You. Pragmatic Programmers, 2015. [link]
- Watson, Mark. Scripting Intelligence: Web 3.0 Information Gathering and Processing. APRESS, 2010. [link]
- Watson, Mark. Practical Semantic Web and Linked Data Applications. Lulu: 2010. [link]
- Awesome Ruby - Short list of NLP related projects.
- Ruby NLP - State-of-Art collection of Ruby libraries for NLP.
- Speech and Natural Language Processing - General List of NLP related resources (mostly not for Ruby programmers).
- Scientific Ruby - Linear Algebra, Visualization and Scientific Computing for Ruby.
- iRuby - IRuby kernel for Jupyter (formelly IPython).
- Kiba - Lightweight ETL (Extract, Transform, Load) pipeline.
We are very glad to see you in this section and highly appreciate any help!
But we also take care about the quality of this list. If you want to contribute please:
- agree that your work will be published under the terms of the
CC0
license; - carefully read the Contribution Guidelines.
Some of the open tasks for contributors are listed in the todo file. You may want to start there.
Awesome NLP in Ruby
by Andrei Beliankou
To the extent possible under law, the person who associated CC0 with
Awesome NLP in Ruby
has waived all copyright and related or neighboring rights
to Awesome NLP in Ruby
.
You should have received a copy of the CC0 legalcode along with this work. If not, see https://creativecommons.org/publicdomain/zero/1.0/.