Files
wehub-resource-sync 7254f7b4d1
Build / Build (macos-latest) (push) Has been cancelled
Build / Build (ubuntu-latest) (push) Has been cancelled
Build / Build (windows-latest) (push) Has been cancelled
Build / Analyze (javascript) (push) Has been cancelled
Build / Analyze (python) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:37:45 +08:00

570 lines
11 KiB
JSON

[
{
"name": "_copy",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "_linalg_gemm2",
"category": "Layer",
"inputs": [
{ "name": "input" },
{ "name": "weights" },
{ "name": "bias" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "_minus_scalar",
"attributes": [
{ "name": "scalar", "type": "float32" }
],
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "_mul",
"inputs": [
{ "name": "x" },
{ "name": "y" }
],
"outputs": [
{ "name": "z" }
]
},
{
"name": "_mul_scalar",
"attributes": [
{ "name": "scalar", "type": "float32" }
],
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "_Plus",
"inputs": [
{ "name": "inputs", "type": "Tensor[]" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "_plus_scalar",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "_rminus_scalar",
"attributes": [
{ "name": "scalar", "type": "float32" }
],
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "_sub",
"inputs": [
{ "name": "x" },
{ "name": "y" }
],
"outputs": [
{ "name": "z" }
]
},
{
"name": "_zeros",
"category": "Constant",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Activation",
"category": "Activation",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "BatchNorm",
"category": "Normalization",
"attributes": [
{ "type": "int32", "default": 1, "name": "axis" },
{ "type": "float64", "default": 0.001, "name": "eps" },
{ "type": "float32", "default": 0.9, "name": "momentum" },
{ "type": "boolean", "default": true, "name": "fix_gamma" },
{ "type": "boolean", "default": false, "name": "use_global_stats" }
],
"inputs": [
{ "name": "input" },
{ "name": "gamma" },
{ "name": "beta" },
{ "name": "mean" },
{ "name": "variance" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "broadcast_add",
"inputs": [
{ "name": "lhs" },
{ "name": "rhs" }
],
"outputs": [
{ "name": "out" }
]
},
{
"name": "broadcast_div",
"inputs": [
{ "name": "lhs" },
{ "name": "rhs" }
],
"outputs": [
{ "name": "out" }
]
},
{
"name": "broadcast_mul",
"inputs": [
{ "name": "lhs" },
{ "name": "rhs" }
],
"outputs": [
{ "name": "out" }
]
},
{
"name": "Concat",
"category": "Tensor",
"attributes": [
{ "default": "1", "name": "dim" },
{ "visible": false, "name": "num_args" }
],
"inputs": [
{ "name": "inputs", "type": "Tensor[]" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Convolution",
"category": "Layer",
"attributes": [
{ "default": false, "name": "cudnn_off", "type": "boolean" },
{ "default": "off", "name": "cudnn_tune" },
{ "default": [ 1, null ], "name": "dilate", "type": "int32[]" },
{ "name": "kernel", "type": "int32[]" },
{ "visible": false, "name": "no_bias", "type": "boolean" },
{ "type": "int32", "default": 1, "name": "num_group" },
{ "type": "int32", "name": "num_filter" },
{ "default": [ 0, null ], "name": "pad", "type": "int32[]" },
{ "default": [ 1, null ], "name": "stride", "type": "int32[]" },
{ "type": "int32", "default": "1024", "name": "workspace" }
],
"inputs": [
{ "name": "input" },
{ "name": "weight" },
{ "name": "bias", "optional": true }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "CuDNNBatchNorm",
"category": "Normalization",
"inputs": [
{ "name": "input" },
{ "name": "gamma" },
{ "name": "beta" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Deconvolution",
"category": "Layer",
"attributes": [
{ "visible": false, "name": "no_bias" },
{ "default": "1", "name": "num_group" },
{ "type": "int32", "default": "1024", "name": "workspace" }
],
"inputs": [
{ "name": "input" },
{ "name": "weight" },
{ "name": "bias" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Dropout",
"category": "Dropout",
"attributes": [
{ "type": "float32", "default": 0.5, "name": "p" }
],
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "ElementWiseSum",
"category": "Normalization",
"inputs": [
{ "name": "inputs", "type": "Tensor[]" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "elemwise_add",
"inputs": [
{ "name": "lhs" },
{ "name": "rhs" }
],
"outputs": [
{ "name": "out" }
]
},
{
"name": "elemwise_div",
"inputs": [
{ "name": "lhs" },
{ "name": "rhs" }
],
"outputs": [
{ "name": "out" }
]
},
{
"name": "elemwise_sub",
"inputs": [
{ "name": "lhs" },
{ "name": "rhs" }
],
"outputs": [
{ "name": "out" }
]
},
{
"name": "Embedding",
"category": "Transform",
"attributes": [
{ "type": "int32", "name": "input_dim" },
{ "type": "int32", "name": "output_dim" }
],
"inputs": [
{ "name": "input" },
{ "name": "weight" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Flatten",
"category": "Shape",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "FullyConnected",
"category": "Layer",
"attributes": [
{ "type": "boolean", "default": true, "name": "flatten" },
{ "type": "boolean", "visible": false, "name": "no_bias" },
{ "type": "int32", "name": "num_hidden" }
],
"inputs": [
{ "name": "input" },
{ "name": "weight" },
{ "name": "bias" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "LayerNorm",
"category": "Normalization",
"attributes": [
{ "type": "int32", "default": 1, "name": "axis" },
{ "type": "float64", "default": 0.001, "name": "eps" },
{ "type": "float32", "default": 0.9, "name": "momentum" },
{ "type": "boolean", "default": true, "name": "fix_gamma" },
{ "type": "boolean", "default": false, "name": "use_global_stats" }
],
"inputs": [
{ "name": "input" },
{ "name": "gamma" },
{ "name": "beta" },
{ "name": "mean" },
{ "name": "variance" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "LeakyReLU",
"category": "Activation",
"inputs": [
{ "name": "input" },
{ "name": "weight" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "log",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "LRN",
"category": "Normalization",
"attributes": [
{ "name": "alpha", "type": "float32", "default": 0.0001 },
{ "name": "beta", "type": "float32", "default": 0.75 },
{ "name": "knorm", "type": "float32", "default": 2 },
{ "name": "nsize", "type": "int32" }
],
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "MakeLoss",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "mean",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Pad",
"category": "Tensor",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Pooling",
"category": "Pool",
"attributes": [
{ "default": false, "name": "cudnn_off" },
{ "default": false, "name": "global_pool" },
{ "name": "kernel", "type": "int32[]" },
{ "default": [ 0, null ], "name": "pad", "type": "int32[]" },
{ "default": "valid", "name": "pooling_convention" },
{ "default": "max", "name": "pool_type" },
{ "default": [ 1, null ], "name": "stride", "type": "int32[]" }
],
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "relu",
"category": "Activation",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "Reshape",
"category": "Shape",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "RNN",
"category": "Layer",
"attributes": [
{ "type": "boolean", "name": "bidirectional", "default": false },
{ "name": "lstm_parameters", "visible": false },
{ "type": "int32", "name": "num_layers" },
{ "type": "boolean", "default": false, "name": "state_outputs" },
{ "type": "int32", "name": "state_size" },
{ "type": "float32", "name": "p", "default": 0 }
],
"inputs": [
{ "name": "input" },
{ "name": "state_0" },
{ "name": "state_1" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "slice_axis",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "SliceChannel",
"inputs": [
{ "name": "inputs" }
],
"outputs": [
{ "name": "outputs", "type": "Tensor[]" }
]
},
{
"name": "softmax",
"category": "Activation",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "SoftmaxActivation",
"category": "Activation",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "SoftmaxOutput",
"category": "Activation",
"attributes": [
{ "default": "1", "name": "grad_scale" },
{ "default": "-1", "name": "ignore_label" },
{ "default": false, "name": "multi_output" },
{ "default": "null", "name": "normalization" },
{ "default": false, "name": "out_grad" },
{ "default": "0", "name": "smooth_alpha" },
{ "default": false, "name": "use_ignore" },
{ "default": false, "name": "preserve_shape" }
],
"inputs": [
{ "name": "input" },
{ "name": "label" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "sqrt",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "square",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "sum",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
},
{
"name": "transpose",
"category": "Transform",
"inputs": [
{ "name": "input" }
],
"outputs": [
{ "name": "output" }
]
}
]