mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-05 03:24:07 +03:00
11 lines
281 B
Protocol Buffer
11 lines
281 B
Protocol Buffer
package hgmert;
|
|
|
|
message Rule {
|
|
// [[A-Z]+,[1-9]] defines a non-terminal, everything else is a terminal
|
|
repeated string trg_words = 1;
|
|
// [[A-Z]+,[1-9]] defines a non-terminal, everything else is a terminal
|
|
repeated string src_words = 2;
|
|
optional string category = 3;
|
|
}
|
|
|