Deep Learning toolkit for Italian Natural Language Understanding
https://github.com/UniversalDependencies/UD_Italian-ISDT
This model require Fasttext or another word embedding
https://fasttext.cc/docs/en/crawl-vectors.html
Sqlite provide fast access to word vectors reducing main memory usage
usage: embed_to_sqlite.py [-args]
arguments:
--word_embed Word embedding file (bin)
--output Output sqlite database
usage: train.py [-args]
arguments:
--train_data Train dataset
--test_data Test dataset
--json Tags json
--tag Tag to predict
--word_embed Word embedding db
--word_embed_size Word embedding vectors size
--save_model Save model to file
--load_model Load model from file
--validation Compute accuracy (Bool)
--eval Tag the provided sentence
train.py --load_model="./checkpoint/upos.pt" --tag="upos" --eval="Asimov scrisse... antologia."
Asimov scrisse diversi racconti degni di nota, molti riguardanti i robot positronici e il Multivac racchiusi nell'antologia.
Asimov : PROPN scrisse : VERB diversi : ADJ racconti : NOUN degni : ADV di : ADP nota : NOUN , : PUNCT molti : PRON riguardanti : VERB i : DET robot : NOUN positronici : ADJ e : CCONJ il : DET Multivac : PROPN racchiusi : ADJ nell'antologia : PROPN . : PUN
train.py --load_model="./checkpoint/xpos.pt" --tag="xpos" --eval="Asimov scrisse... antologia."
Asimov scrisse diversi racconti degni di nota, molti riguardanti i robot positronici e il Multivac racchiusi nell'antologia.
Asimov : SP scrisse : V diversi : A racconti : S degni : B di : E nota : S , : FF molti : B riguardanti : V i : RD robot : S positronici : A e : CC il : RD Multivac : S racchiusi : A nell'antologia : SP . : FS