kanishkamisra / footrulr

Compare sentences using Machine Translation and Text Summarization evaluation metrics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

footrulr

The goal of footrulr is to provide some functionality to compute sentence comparisons using metrics frequently employed in Machine Translation and Text Summarization evaluation.

The name is inspired from Rstudio’s yardstick package for Machine Learning evaluation metrics.

Installation

You can install the development version of footrulr from github with:

# install.packages("devtools")
devtools::install_github("kanishkamisra/footrulr")

Example

This is a basic example which shows you how to solve a common problem:

library(footrulr)

bleu_vec("the cat the cat on the mat", c("the cat is on the mat", "there is a cat on the mat"), n = 3)
#> [1] 0.4
bleu_vec("The dragon ate dragon the pineapple", c("A dragon ate a pineapple", "The pineapple was eaten by the dragon"), n = 1)
#> [1] 0.8333333

Contributors at chirunconf

About

Compare sentences using Machine Translation and Text Summarization evaluation metrics

License:Other


Languages

Language:R 100.0%