rknn-metadata.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. [
  2. {
  3. "name": "VSI_NN_OP_ADD",
  4. "inputs": [
  5. { "name": "input" },
  6. { "name": "other" }
  7. ]
  8. },
  9. {
  10. "name": "VSI_NN_OP_CONCAT",
  11. "category": "Tensor",
  12. "inputs": [
  13. { "name": "inputs", "list": true }
  14. ]
  15. },
  16. {
  17. "name": "VSI_NN_OP_CONV2D",
  18. "category": "Layer",
  19. "inputs": [
  20. { "name": "input" },
  21. { "name": "weights" },
  22. { "name": "bias" }
  23. ]
  24. },
  25. {
  26. "name": "VSI_NN_OP_DECONVOLUTION",
  27. "category": "Layer",
  28. "inputs": [
  29. { "name": "input" },
  30. { "name": "weights" },
  31. { "name": "bias" }
  32. ]
  33. },
  34. {
  35. "name": "VSI_NN_OP_FCL",
  36. "category": "Layer",
  37. "inputs": [
  38. { "name": "input" },
  39. { "name": "weights" },
  40. { "name": "bias" }
  41. ]
  42. },
  43. {
  44. "name": "VSI_NN_OP_LEAKY_RELU",
  45. "category": "Activation"
  46. },
  47. {
  48. "name": "VSI_NN_OP_LEAKY_SIGMOID",
  49. "category": "Activation"
  50. },
  51. {
  52. "name": "VSI_NN_OP_PERMUTE",
  53. "category": "Shape"
  54. },
  55. {
  56. "name": "VSI_NN_OP_POOL",
  57. "category": "Pool"
  58. },
  59. {
  60. "name": "VSI_NN_OP_RELU",
  61. "category": "Activation"
  62. },
  63. {
  64. "name": "VSI_NN_OP_RESHAPE",
  65. "category": "Shape"
  66. },
  67. {
  68. "name": "VSI_NN_OP_SIGMOID",
  69. "category": "Activation"
  70. }
  71. ]