| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050 |
- [
- {
- "name": "input_layer",
- "description": "Represents an input of the model",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }
- ]
- },
- {
- "name": "output_layer",
- "description": "Represents an output of the model",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "postprocess",
- "description": "Represents a whole post-processing function of some meta-architecture",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "max_proposals_per_class",
- "type": "int64",
- "description": "Maximum number of proposals per class",
- "visible": false
- },
- {
- "name": "iou_th",
- "type": "float32",
- "visible": false,
- "description": "Intersection over union overlap threshold, used in the NMS iterative elimination process where potential duplicates of detected items are ignored"
- },
- {
- "name": "meta_arch",
- "type": "string",
- "visible": false,
- "description": "Postprocessing meta-architecture name"
- },
- {
- "name": "max_total_output_proposals",
- "type": "int64",
- "visible": false,
- "description": "Maximum number of bounding box proposals"
- },
- {
- "name": "postprocess_type",
- "type": "string",
- "visible": false,
- "description": "Postprocessing type name"
- }
- ]
- },
- {
- "name": "conv",
- "category": "Layer",
- "description": "Convolution layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "kernel_shape",
- "type": "int64[]",
- "label": "kernel",
- "description": "Shape of the kernel in Tensorflow convention (kernel height, kernel width, features in, features out)",
- "visible": true
- },
- {
- "name": "strides",
- "type": "int64[]",
- "description": "Stride along each axis (batch, height, width, features)"
- },
- {
- "name": "dilations",
- "type": "int64[]",
- "description": "Dilation value along each axis (batch, height, width, features)"
- },
- {
- "name": "padding",
- "type": "string",
- "description": "Padding mode, either VALID, SAME (symmetric, Caffe-like), SAME_TENSORFLOW, or DECONV"
- },
- {
- "name": "groups",
- "type": "int64",
- "description": "Number of groups input channels and output channels are divided into"
- },
- {
- "name": "batch_norm",
- "type": "boolean",
- "description": "Whether batch normalization is folded into the layer"
- },
- {
- "name": "elementwise_add",
- "type": "boolean",
- "description": "Whether elementwise addition is folded into the layer",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- },
- {
- "name": "pre_layer_batch_norm",
- "type": "boolean",
- "description": "Whether batch normalization is folded into the layer, before the operation itself",
- "visible": false
- },
- {
- "name": "transpose_output_width_features",
- "type": "boolean",
- "description": "Whether to transpose the width and the features axes of the layer's output tensor",
- "visible": false
- },
- {
- "name": "spatial_flatten_output",
- "type": "boolean",
- "description": "Whether to flatten the layer's output to one row",
- "visible": false
- }
- ]
- },
- {
- "name": "relu",
- "category": "Activation"
- },
- {
- "name": "delta",
- "category": "Activation"
- },
- {
- "name": "activation",
- "category": "Activation",
- "description": "Activation function",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "batch_norm",
- "type": "boolean",
- "description": "Whether batch normalization is folded into the layer",
- "visible": false
- },
- {
- "name": "elementwise_add",
- "type": "boolean",
- "description": "Whether elementwise addition is folded into the layer",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "argmax",
- "description": "Argmax layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "avgpool",
- "category": "Pool",
- "description": "Average pooling layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "kernel_shape",
- "type": "int64[]",
- "label": "kernel",
- "description": "Shape of the kernel in Tensorflow convention (kernel height, kernel width, features in, features out)",
- "visible": true
- },
- {
- "name": "strides",
- "type": "int64[]",
- "description": "Stride along each axis (batch, height, width, features)",
- "visible": false
- },
- {
- "name": "padding",
- "type": "string",
- "description": "Padding mode, either VALID, SAME (symmetric, Caffe-like), SAME_TENSORFLOW, or DECONV",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "batch_norm",
- "category": "Normalization",
- "description": "Batch normalization layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "elementwise_add",
- "type": "boolean",
- "description": "Whether elementwise addition is folded into the layer",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "bbox_decoder",
- "description": "Bounding box decoding layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }
- ]
- },
- {
- "name": "deconv",
- "category": "Layer",
- "description": "Deconvolution (transposed convolution) layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "kernel_shape",
- "type": "int64[]",
- "label": "kernel",
- "description": "Shape of the kernel in Tensorflow convention (kernel height, kernel width, features in, features out)",
- "visible": true
- },
- {
- "name": "strides",
- "type": "int64[]",
- "description": "Stride along each axis (batch, height, width, features)",
- "visible": false
- },
- {
- "name": "dilations",
- "type": "int64[]",
- "description": "Dilation value along each axis (batch, height, width, features)",
- "visible": false
- },
- {
- "name": "padding",
- "type": "string",
- "description": "Padding mode, either VALID, SAME (symmetric, Caffe-like), SAME_TENSORFLOW, or DECONV",
- "visible": false
- },
- {
- "name": "groups",
- "type": "int64",
- "description": "Number of groups input channels and output channels are divided into",
- "visible": false
- },
- {
- "name": "batch_norm",
- "type": "boolean",
- "description": "Whether batch normalization is folded into the layer",
- "visible": false
- },
- {
- "name": "elementwise_add",
- "type": "boolean",
- "description": "Whether elementwise addition is folded into the layer",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "dense",
- "category": "Layer",
- "description": "Dense (fully connected) layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "kernel_shape",
- "type": "int64[]",
- "label": "kernel",
- "description": "Shape of the kernel in Tensorflow convention (kernel height, kernel width, features in, features out)",
- "visible": true
- },
- {
- "name": "batch_norm",
- "type": "boolean",
- "description": "Whether batch normalization is folded into the layer",
- "visible": false
- }
- ]
- },
- {
- "name": "depth_to_space",
- "description": "Depth to space layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "block_sizes",
- "type": "int64[]",
- "description": "Block size along each spatial axis",
- "visible": false
- },
- {
- "name": "depth_to_space_type",
- "type": "string",
- "description": "Depth to space variant, either dcr (depth-column-row) or crd (column-row-depth)",
- "visible": false
- }
- ]
- },
- {
- "name": "dw",
- "description": "Depthwise convolution layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "kernel_shape",
- "type": "int64[]",
- "label": "kernel",
- "description": "Shape of the kernel in Tensorflow convention (kernel height, kernel width, features in, features out)",
- "visible": true
- },
- {
- "name": "strides",
- "type": "int64[]",
- "description": "Stride along each axis (batch, height, width, features)",
- "visible": false
- },
- {
- "name": "dilations",
- "type": "int64[]",
- "description": "Dilation value along each axis (batch, height, width, features)",
- "visible": false
- },
- {
- "name": "padding",
- "type": "string",
- "description": "Padding mode, either VALID, SAME (symmetric, Caffe-like), SAME_TENSORFLOW, or DECONV",
- "visible": false
- },
- {
- "name": "groups",
- "type": "int64",
- "description": "Number of groups input channels and output channels are divided into",
- "visible": false
- },
- {
- "name": "batch_norm",
- "type": "boolean",
- "description": "Whether batch normalization is folded into the layer",
- "visible": false
- },
- {
- "name": "elementwise_add",
- "type": "boolean",
- "description": "Whether elementwise addition is folded into the layer",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- },
- {
- "name": "transpose_output_width_features",
- "type": "string",
- "description": "Whether to transpose the width and the features axes of the layer's output tensor",
- "visible": false
- },
- {
- "name": "dynamic_weights",
- "type": "boolean",
- "description": "Whether the layer's weights are data driven",
- "visible": false
- }
- ]
- },
- {
- "name": "external_pad",
- "description": "Padding layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "external_pad_params",
- "type": "int64[]",
- "description": "Padding value in pixels in each edge (top, bottom, left, right)",
- "visible": false
- }
- ]
- },
- {
- "name": "feature_interleave",
- "description": "Feature interleave layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "feature_multiplier",
- "description": "Elementwise feature multiplication layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "feature_multiplier_type",
- "type": "string",
- "description": "Feature multiplier variant, either square (to multiply each value by itself), or user_specified",
- "visible": false
- }
- ]
- },
- {
- "name": "feature_shuffle",
- "description": "Feature shuffle layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "format_conversion",
- "description": "Reshapes the input tensor between different memory layouts",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "expand_spatial_sizes",
- "type": "int64[]",
- "description": "New output tensor dimensions after the reshape (height, width)",
- "visible": false
- },
- {
- "name": "conversion_type",
- "type": "string",
- "visible": false,
- "description": "Format conversion variant"
- }
- ]
- },
- {
- "name": "global_avg_pool",
- "category": "Pool",
- "description": "Global average pooling layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "maxpool",
- "category": "Pool",
- "description": "Maximum pooling layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "kernel_shape",
- "type": "int64[]",
- "label": "kernel",
- "description": "Shape of the kernel in Tensorflow convention (kernel height, kernel width, features in, features out)",
- "visible": true
- },
- {
- "name": "strides",
- "type": "int64[]",
- "description": "Stride along each axis (batch, height, width, features)",
- "visible": false
- },
- {
- "name": "padding",
- "type": "string",
- "description": "Padding mode, either VALID, SAME (symmetric, Caffe-like), SAME_TENSORFLOW, or DECONV",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "nms",
- "description": "Non-maximum suppression layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "scores_threshold",
- "type": "float32",
- "description": "Confidence threshold for NMS filtering",
- "visible": false
- },
- {
- "name": "iou_threshold",
- "type": "float32",
- "description": "Intersection over union overlap threshold, used in the NMS iterative elimination process where potential duplicates of detected items are ignored",
- "visible": false
- },
- {
- "name": "classes",
- "type": "int64",
- "description": "Number of NMS classes",
- "visible": false
- },
- {
- "name": "max_output_size",
- "type": "int64",
- "description": "Maximum number of proposals per class",
- "visible": false
- }
- ]
- },
- {
- "name": "normalization",
- "category": "Normalization",
- "description": "Normalization layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "elementwise_add",
- "type": "boolean",
- "description": "Whether elementwise addition is folded into the layer",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "proposal_generator",
- "description": "Proposal generator layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "reduce_l2",
- "description": "Reduce layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "reduce_max",
- "description": "Reduce Max layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "groups",
- "type": "int64",
- "description": "Number of groups input channels and output channels are divided into",
- "visible": false
- }
- ]
- },
- {
- "name": "reduce_sum",
- "description": "Reduce Sum layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "groups",
- "type": "int64",
- "description": "Number of groups input channels and output channels are divided into",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- },
- {
- "name": "reduce_axes",
- "type": "int64[]",
- "description": "List of axes to reduce",
- "visible": false
- }
- ]
- },
- {
- "name": "resize",
- "category": "Tensor",
- "description": "Resize layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "resize_h_ratio_list",
- "type": "float32[]",
- "visible": true
- },
- {
- "name": "resize_w_ratio_list",
- "type": "float32[]",
- "visible": true
- },
- {
- "name": "resize_f_ratio_list",
- "type": "float32[]",
- "visible": true
- },
- {
- "name": "method",
- "type": "string",
- "description": "Resize method, either bilinear or nearest_neighbor",
- "visible": false
- },
- {
- "name": "resize_bilinear_pixels_mode",
- "type": "string",
- "description": "Bilinear resize variant, either half_pixels, align_corners, or disabled (where both align_corners and half_pixels are false)",
- "visible": false
- }
- ]
- },
- {
- "name": "shortcut",
- "description": "Shortcut layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "slice",
- "description": "Slice layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "height_slice",
- "type": "int64[]",
- "visible": false,
- "description": "Slice in the height axis (start, stop, step)"
- },
- {
- "name": "width_slice",
- "type": "int64[]",
- "visible": false,
- "description": "Slice in the width axis (start, stop, step)"
- },
- {
- "name": "features_slice",
- "type": "int64[]",
- "visible": false,
- "description": "Slice in the features axis (start, stop, step)"
- }
- ]
- },
- {
- "name": "softmax",
- "category": "Activation",
- "description": "Softmax layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "groups",
- "type": "int64",
- "description": "Number of groups input channels and output channels are divided into",
- "visible": false
- }
- ]
- },
- {
- "name": "space_to_depth",
- "description": "Space to depth layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "block_sizes",
- "type": "int64[]",
- "description": "Block size along each spatial axis",
- "visible": false
- },
- {
- "name": "space_to_depth_type",
- "type": "string",
- "description": "Space to depth variant, either classic_dcr (depth-column-row) classic_crd (column-row-depth), serial (used by Transformers patchify function), or focus (Yolov5-like)",
- "visible": false
- },
- {
- "name": "spatial_flatten_output",
- "type": "boolean",
- "description": "Whether to flatten the layer's output to one row",
- "visible": false
- }
- ]
- },
- {
- "name": "output_mux",
- "description": "Output muxer layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "concat",
- "category": "Tensor",
- "description": "Concatenation layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "concat_axis",
- "type": "int64",
- "description": "Axis to concatenate along, either features or spatial_w (which means the width axis)",
- "visible": false
- },
- {
- "name": "spatial_w_concat",
- "type": "boolean",
- "description": "Whether the concat operation is in the width dimension",
- "visible": false
- }
- ]
- },
- {
- "name": "matmul",
- "description": "Matrix multiplication layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "kernel_shape",
- "type": "int64[]",
- "label": "kernel",
- "description": "Shape of the kernel in Tensorflow convention (kernel height, kernel width, features in, features out)",
- "visible": true
- },
- {
- "name": "dynamic_weights",
- "type": "boolean",
- "description": "Whether the layer's weights are data driven",
- "visible": false
- },
- {
- "name": "transpose_matmul_input",
- "type": "boolean",
- "description": "Whether to transpose the width and the features axes of the layer's second input tensor",
- "visible": false
- }
- ]
- },
- {
- "name": "ew_add",
- "description": "Elementwise addition layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "ew_div",
- "description": "Elementwise division layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "ew_mult",
- "description": "Elementwise multiplication layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "ew_sub",
- "description": "Elementwise subtraction layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- },
- {
- "name": "activation",
- "type": "string",
- "description": "Activation function name",
- "visible": false
- }
- ]
- },
- {
- "name": "demux",
- "description": "Demuxer layer",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "row_splitter",
- "description": "Splits the input tensor along the height axis",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "feature_splitter",
- "description": "Splits the input tensor along the features axis",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "const_input",
- "category": "Constant",
- "description": "Constant input",
- "attributes": [
- {
- "name": "original_names",
- "type": "string[]",
- "description": "Name of this layer in the original framework, such as Pytorch or Tensorflow",
- "visible": false
- }]
- },
- {
- "name": "inv_pos",
- "category": "Activation"
- },
- {
- "name": "exp",
- "category": "Activation"
- },
- {
- "name": "silu",
- "category": "Activation"
- },
- {
- "name": "leaky",
- "category": "Activation"
- },
- {
- "name": "layer_normalization",
- "category": "Normalization"
- }
- ]
|