dnn-metadata.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. [
  2. {
  3. "name": "batchnorm",
  4. "category": "Normalization",
  5. "inputs": [
  6. { "name": "input" },
  7. { "name": "scale" },
  8. { "name": "bias" }
  9. ]
  10. },
  11. {
  12. "name": "concat",
  13. "category": "Tensor",
  14. "inputs": [
  15. { "name": "input", "option": "variadic" }
  16. ]
  17. },
  18. {
  19. "name": "const_v2",
  20. "category": "Constant"
  21. },
  22. {
  23. "name": "conv",
  24. "category": "Layer",
  25. "inputs": [
  26. { "name": "input" },
  27. { "name": "weights" },
  28. { "name": "biases" }
  29. ]
  30. },
  31. {
  32. "name": "deconv",
  33. "category": "Layer",
  34. "inputs": [
  35. { "name": "input" },
  36. { "name": "weights" },
  37. { "name": "biases" }
  38. ]
  39. },
  40. {
  41. "name": "depthdeconv",
  42. "category": "Layer",
  43. "inputs": [
  44. { "name": "input" },
  45. { "name": "weights" },
  46. { "name": "biases" }
  47. ]
  48. },
  49. {
  50. "name": "eltwise",
  51. "inputs": [
  52. { "name": "input", "option": "variadic" }
  53. ]
  54. },
  55. {
  56. "name": "linear",
  57. "category": "Activation",
  58. "inputs": [
  59. { "name": "input" }
  60. ]
  61. },
  62. {
  63. "name": "pad",
  64. "category": "Shape"
  65. },
  66. {
  67. "name": "pool",
  68. "category": "Pool",
  69. "inputs": [
  70. { "name": "input" }
  71. ]
  72. },
  73. {
  74. "name": "prelu",
  75. "category": "Activation",
  76. "inputs": [
  77. { "name": "input" },
  78. { "name": "slope" }
  79. ]
  80. },
  81. {
  82. "name": "relu",
  83. "category": "Activation",
  84. "inputs": [
  85. { "name": "input" }
  86. ]
  87. },
  88. {
  89. "name": "relu6",
  90. "category": "Activation",
  91. "inputs": [
  92. { "name": "input" }
  93. ]
  94. },
  95. {
  96. "name": "sigmoid",
  97. "category": "Activation",
  98. "inputs": [
  99. { "name": "input" }
  100. ]
  101. },
  102. {
  103. "name": "softmax",
  104. "category": "Activation",
  105. "inputs": [
  106. { "name": "input" }
  107. ]
  108. }
  109. ]