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
hypergraph.proto
package hgmert;

import "rule.proto";

message Hypergraph {

  message Node {
    optional string category = 1;
    repeated string lm_state = 2;
  }

  message Edge {
    repeated int32 tail_nodes = 4;
    required int32 head_node = 5;
    // must be as many as num_features below
    repeated float feature_values = 6;
    required Rule rule = 7;
  }

  repeated Node nodes = 8;
  repeated Edge edges = 9;
  required bool is_sorted = 10;
  // the number of features in the feature vector
  required int32 num_features = 11;
  // string names of the features
  repeated string feature_names = 12;
  optional string src_string = 13;
  optional string sysid = 14;
}

back to top