https://github.com/wilkeraziz/mosesdecoder
Raw File
Tip revision: c55161dff40ef01fea15d6c0a8ed30b8ce1c7d46 authored by jiejiang on 16 January 2014, 01:08:01 UTC
merge c11 revert with mingw changes
Tip revision: c55161d
rule.proto
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;
}

back to top