| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046 |
- [
- {
- "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": "layer_normalization",
- "category": "Normalization"
- }
- ]
|