Awesome
What is this about
A tutorial project for using Juman++ as a general text processing tool.
This tutorial implements something like a T9 with a small variation. What would happen if you input everything without spaces.
Prerequisites
- Unix-like environment
- C++14-compatible compiler
- CMake 3.1 or later
- Python 3 or later
How to build
git clone --recursive https://github.com/eiennohito/jumanpp-t9.git
cd jumanpp-t9
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
You should get a src/jumanpp_t9 binary.
Tutorial
Let's try to use Juman++ to solve T9 without spaces. The goal of this tutorial is to demonstrate how to make morphological analyzers using Juman++.
Introduction: What was T9
T9 was popular before the smartphones have came and everyone started to use QWERTY on their touch screens. However, dumbphones did not have a touchscreen. Instead they had only had 4x3 keyboard like this one (picture credit to Wikipedia).
T9 had a great idea: what if we will press the keys for each letter only once and select matching words by using the context. For example, a to input "hello" you would type "43556". 0 was used for spaces and 1 for punctuation.
But if you provide spaces it is relatively easy to guess the correct word. But how would we do if there were no spaces. For example, the previous sentence would be inputted as: 28846996853933643843739373667722371. In this case, we would need to segment digits into "words" and select words corresponding to those digits simultaneously.
This is what morphological analyzers for languages with continuous scripts (like Japanese or Chinese) have to do. They segment continuous text into tokens (morphemes) and tag them with additional information like lemmas (base forms) and parts of speech.
Juman++ is a modern morphological analyzer for continuous languages. And we will try to use it to solve T9 without spaces.
Juman++ Structure
To build an analyzer using Juman++ we would need to prepare some things, namely
- Dictionary,
- Analysis Spec,
- Driver Program.
Dictionary
The analysis dictionary defines words which our analyzer would be able to accept. Words can define other fields, like parts of speech. Dictionary should be supplied in the CSV format.
Let's create a dictionary that would have at least
- 9-pad number representation
- English original spelling
Let's use Universal Dependencies project for creating the dictionary. It provides annotated text corpora in many languages; and we will use the annotation information later, for improving our model.
Let's download the UD corpora.
wget https://lindat.mff.cuni.cz/repository/xmlui/bitstream/handle/11234/1-2515/ud-treebanks-v2.1.tgz
tar xf ud-treebanks-v2.1.tgz
Inside there will be a lot of folders starting with UD_
.
We will use UD_English
.
It should have these files:
LICENSE.txt
README.md
en-ud-dev.conllu
en-ud-dev.txt
en-ud-test.conllu
en-ud-test.txt
en-ud-train.conllu
en-ud-train.txt
stats.xml
Let's first make a training corpus using conversion script. From the jumanpp-t9 root directory execute:
python3 scripts/conll2minicorpus.py <path to UD dir>/UD_English/en-ud-train.conllu > build/ud_en.train.corpus
The file will contain lines like
3766,from
843,the
27,ap
26637,comes
8447,this
78679,story
1,:
EOS
Each line will correspond to a single word in the sentence; EOS marks the end of sentence. Let's repeat the conversion for dev and test parts as well:
python3 scripts/conll2minicorpus.py <path to UD dir>/UD_English/en-ud-dev.conllu > build/ud_en.dev.corpus
python3 scripts/conll2minicorpus.py <path to UD dir>/UD_English/en-ud-test.conllu > build/ud_en.test.corpus
And now let's compile the dictionary itself using another python script.
python3 scripts/minicorpus2minidic.py build/ud_en.*.corpus > build/ud_en.dic
It will contains like:
227623,abroad
22787859,abruptly
2273623,absence
227368,absent
227368464,absenting
22765883,absolute
Analysis Spec
Analysis Spec defines the dictionary format, features used for scoring and the structure of the loss function. Read the full documentation.
A minimal dictionary spec would be something like
field 1 surface string trie_index
field 2 english string
ngram [surface, english]
train loss surface 1, english 1
First two lines define a dictionary definition. This spec uses only two fields, but the actual CSV can contain more fields, but only first two will be used. A column #1 would be called "surface", have string type and a trie-based index for surface lookup would be built over this field. A column #2 would be called "english" and have string type.
A single unigram feature, which uses both contents of surface and english fields would be used for path scoring. Finally, the loss would use both fields with the equal weight of 1.
The creation of a trained model is done in two steps.
- We build a binary dictionary from a spec and dictionary csv.
- We train model weights using a binary dictionary and corpus, producing an analysis model.
Let's do this!
cd build
./jumanpp/src/core/tool/jumanpp_tool index \
--spec ../src/jumanpp_t9_nano.spec \
--dict-file ud_en.dic \
--output nano.seed
../scripts/train.sh ./jumanpp/src/core/tool/jumanpp_tool nano.seed ud_en.dev.corpus dev.nano.model
You can also try to train a model with ud_en.train.corpus
,
but the training will use around 6GB of RAM.
Driver Program
Finally, we need a program which will do the actual analysis. While the training and dictionary preparation could be done with generalized tools, Juman++ does not provide a generalized analysis tool because of two reasons: output formats and statically generated feature processing code.
I have already implemented a very simple driver program for our case.
Let's test our trained model:
# There is a tester.py script which converts English text to digits
# and forward them into the driver program itself.
python3 ../scripts/tester.py ./src/jumanpp_t9 dev.nano.model
Ok, let's test it!
this model works
84476633596757
8447 this
66335 model
96757 works
and sometimes it does not
263766384637483637668
263 and
7663 roof
84 vi
63748 merit
3637 does
668 not
So, our model already works for some inputs, but not for everything. Let's improve on it.
Improving the spec
The current model uses only a single unigram feature template, which is obviously very naive. Let's add some other templates so the ngram feature section will look like:
ngram [surface]
ngram [english]
ngram [surface, english]
ngram [surface][surface]
ngram [english][english]
ngram [surface, english][surface, english]
ngram [english][english][english]
Now we have three unigram, three bigram and one trigram feature templates.
Let's retrain our model with the new spec:
./jumanpp/src/core/tool/jumanpp_tool index \
--spec ../src/jumanpp_t9_mini.spec \
--dict-file ud_en.dic \
--output mini.seed
../scripts/train.sh ./jumanpp/src/core/tool/jumanpp_tool mini.seed ud_en.dev.corpus dev.mini.model
Notice that the loss became much smaller than with the "nano" model. "And sometimes it does not" should be restored correctly this time.
Advanced Features
Using Code Generation for Linear Model Inference
By default, Juman++ uses virtual function-based dynamic dispatch for evaluating feature-based model score. Indirection, caused by virtual function calls has a certain non-negligible performance penalty, especially for complex models.
For the analysis we usually want to have all the speed we can get. For that Juman++ can generate static C++ code based on Analysis Spec.
Ok, let's try (from the CMake build
folder):
./jumanpp/src/core/tool/jumanpp_tool static-features \
--spec ../src/jumanpp_t9_mini.spec \
--class-name JppT9Mini \
--output codegen/t9_mini.cg
There should be two files: t9_mini.cg.h
and t9_mini.cg.cc
in the codegen
subfolder.
Now you need to inject the generated code into the driver program.
jumanpp_t9.cc
should contain this line in the main
function.
dieOnError(env.initFeatures(nullptr));
The nullptr
parameter is a pointer to a StaticFeatureFactory
which has a responsibility to create feature processing functionality for the inference.
Passing there a pointer to an actual instance from the generated code will enable
the faster analysis.
A complete example is available at jumanpp_t9_static.cc
for the implementation and CMakeLists.txt for how to integrate
everything into the build system.
First you need to include
JumanppStaticFeatures.cmake
file from the Juman++ repository.
That gives you a jumanpp_gen_static
function which does the dirty work of invoking jumanpp_tool
.
The jumanpp_gen_static
has 4 arguments:
- Analysis spec file
- Static feature factory class name
- A variable name which will be filled with the directory name where the C++ code will be generated.
You will need to add that to
include_directories
of your driver binary. - A variable name which will be filled with path to generated source files. You will need to add that to the driver target source files.