Skip to content
This repository was archived by the owner on Jun 3, 2021. It is now read-only.

Latest commit

 

History

History
43 lines (31 loc) · 930 Bytes

File metadata and controls

43 lines (31 loc) · 930 Bytes

Usage with Secryst

Secryst is a seq2seq transformer suited for transliteration. Written in Ruby. It’s installation is a bit tricky, you should consult its own installation guide (at GitHub). By default we don’t use Secryst, unless you have installed it.

Using it standalone

It’s enough to install it. Be sure to consult the guide above.

Integration with Ruby Applications

In your Gemfile, add:

source "https://rubygems.org"

gem "secryst"

Create a Secrystfile near your Gemfile with the following, for each model you want to use in your application. Please consult our Secrystfile to get all the maps needed to

model "model-name"

Usage inside maps

stage {
  # ... sub "a", "b" ...
  secryst model: "model-name"
  # ... sub "c", "d" ...
}

As of now, Secryst is usable only by the Ruby implementation.