mosesdecoder/moses/rule.proto
2012-11-12 19:56:18 +00:00

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;
}