| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- [
- {
- "name": "batchnorm",
- "category": "Normalization",
- "inputs": [
- { "name": "input" },
- { "name": "scale" },
- { "name": "bias" }
- ]
- },
- {
- "name": "concat",
- "category": "Tensor",
- "inputs": [
- { "name": "input", "option": "variadic" }
- ]
- },
- {
- "name": "const_v2",
- "category": "Constant"
- },
- {
- "name": "conv",
- "category": "Layer",
- "inputs": [
- { "name": "input" },
- { "name": "weights" },
- { "name": "biases" }
- ]
- },
- {
- "name": "deconv",
- "category": "Layer",
- "inputs": [
- { "name": "input" },
- { "name": "weights" },
- { "name": "biases" }
- ]
- },
- {
- "name": "depthdeconv",
- "category": "Layer",
- "inputs": [
- { "name": "input" },
- { "name": "weights" },
- { "name": "biases" }
- ]
- },
- {
- "name": "eltwise",
- "inputs": [
- { "name": "input", "option": "variadic" }
- ]
- },
- {
- "name": "linear",
- "category": "Activation",
- "inputs": [
- { "name": "input" }
- ]
- },
- {
- "name": "pad",
- "category": "Shape"
- },
- {
- "name": "pool",
- "category": "Pool",
- "inputs": [
- { "name": "input" }
- ]
- },
- {
- "name": "prelu",
- "category": "Activation",
- "inputs": [
- { "name": "input" },
- { "name": "slope" }
- ]
- },
- {
- "name": "relu",
- "category": "Activation",
- "inputs": [
- { "name": "input" }
- ]
- },
- {
- "name": "relu6",
- "category": "Activation",
- "inputs": [
- { "name": "input" }
- ]
- },
- {
- "name": "sigmoid",
- "category": "Activation",
- "inputs": [
- { "name": "input" }
- ]
- },
- {
- "name": "softmax",
- "category": "Activation",
- "inputs": [
- { "name": "input" }
- ]
- }
- ]
|