Blame view

3rdparty/opencv-4.5.4/modules/dnn/src/tensorflow/attr_value.proto 2.3 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  syntax = "proto3";
  
  package opencv_tensorflow;
  option cc_enable_arenas = true;
  option java_outer_classname = "AttrValueProtos";
  option java_multiple_files = true;
  option java_package = "org.tensorflow.framework";
  
  import "tensor.proto";
  import "tensor_shape.proto";
  import "types.proto";
  
  // Protocol buffer representing the value for an attr used to configure an Op.
  // Comment indicates the corresponding attr type.  Only the field matching the
  // attr type may be filled.
  message AttrValue {
    message ListValue {
      repeated bytes s = 2;                        // "list(string)"
      repeated int64 i = 3 [packed = true];        // "list(int)"
      repeated float f = 4 [packed = true];        // "list(float)"
      repeated bool b = 5 [packed = true];         // "list(bool)"
      repeated DataType type = 6 [packed = true];  // "list(type)"
      repeated TensorShapeProto shape = 7;         // "list(shape)"
      repeated TensorProto tensor = 8;             // "list(tensor)"
      // TODO(zhifengc/josh11b): implements list(func) if needed.
    }
  
    oneof value {
      bytes s = 2;                 // "string"
      int64 i = 3;                 // "int"
      float f = 4;                 // "float"
      bool b = 5;                  // "bool"
      DataType type = 6;           // "type"
      TensorShapeProto shape = 7;  // "shape"
      TensorProto tensor = 8;      // "tensor"
      ListValue list = 1;          // any "list(...)"
  
      // "func" represents a function. func.name is a function's name or
      // a primitive op's name. func.attr.first is the name of an attr
      // defined for that function. func.attr.second is the value for
      // that attr in the instantiation.
      NameAttrList func = 10;
  
      // This is a placeholder only used in nodes defined inside a
      // function.  It indicates the attr value will be supplied when
      // the function is instantiated.  For example, let us suppose a
      // node "N" in function "FN". "N" has an attr "A" with value
      // placeholder = "foo". When FN is instantiated with attr "foo"
      // set to "bar", the instantiated node N's attr A will have been
      // given the value "bar".
      string placeholder = 9;
    }
  }
  
  // A list of attr names and their values. The whole list is attached
  // with a string name.  E.g., MatMul[T=float].
  message NameAttrList {
    string name = 1;
    map<string, AttrValue> attr = 2;
  }