Commit 2fa90bbdfd27c7baaf74fc692c4a69d88c0f543c
Merge branch 'corpora'
scalenie w celu złączenia corpora z głównym wątkiem
Showing
1 changed file
with
10 additions
and
0 deletions
corpora/types.ml
0 → 100644
1 | + | |
2 | +type conll_token = | |
3 | + {c_id:int; c_orth:string; c_lemma:string; c_cat:string; c_interp:string list; | |
4 | + c_super:int; c_label:string; c_beg:int; c_len:int} | |
5 | + | |
6 | +type conll_sentence = | |
7 | + {s_id:string; s_text:string; s_tokens:conll_token list} | |
8 | + | |
9 | +type info_sentence = | |
10 | + {i_id:string; i_text:string; i_tokens:string list} | |
... | ... |