Software
This page contains some selected software projects - mainly R libraries - I am currently or have been working on. See also my GitHub profile and my R-universe website.
kgrams
kgrams
provides tools for training and evaluating \(k\)-gram language models, including several probability smoothing methods, perplexity computations, random text generation and more. It is based on an C++ back-end which makes kgrams
fast, coupled with an accessible R API which aims at streamlining the process of model building, and can be suitable for small- and medium-sized NLP experiments, baseline model building, and for pedagogical purposes.
fcci
fcci
is an R package providing support for building Feldman-Cousins confidence intervals.
r2r
r2r
provides a flexible implementation of hash tables in R, allowing for:
- arbitrary R objects as keys and values,
- arbitrary key comparison and hash functions,
- customizable behaviour (throw or return a default value) on missing key exceptions.