Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rule.proto « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f8084636fb4cad524826454cde4dc8156379091 (plain)
1
2
3
4
5
6
7
8
9
10
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;
}