![]() |
MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
Specifies the base parameter for all layers. More...
Public Member Functions | |
| LayerParameter () | |
| Constructor for the parameter. More... | |
| LayerParameter (LayerType lt, string strName=null) | |
| The LayerParameter constructor. More... | |
| LayerParameter (LayerParameter p) | |
| The LayerParameter constructor. More... | |
| string | PrepareRunModelInputs () |
| Prepare model inputs for the run-net (if any are needed for the layer). More... | |
| void | PrepareRunModel () |
| Prepare the layer settings for a run model. More... | |
| int | GetParameterCount () |
| Returns the number of ParamSpec parameters used by the layer. More... | |
| void | CopyDefaults (LayerParameter p) |
| Copies the defaults from another LayerParameter. More... | |
| bool | MeetsPhase (Phase phase) |
| Determines whether or not this LayerParameter meets a given Phase. More... | |
| void | Save (BinaryWriter bw) |
| Save this parameter to a binary writer. More... | |
| object | Load (BinaryReader br, bool bNewInstance) |
| Load the parameter from a binary reader. More... | |
| void | SetType (LayerType type, bool bNewParam=true) |
| Set the layer type. More... | |
| void | clear_blobs () |
| Clears the collection of Blobs used by this layer. More... | |
| void | CopyParameters (LayerParameter src) |
| Copy just the layer specific parameters to this layer parameter. More... | |
| virtual LayerParameter | Clone (bool bCloneBlobs) |
| Creates a new copy of this instance of the parameter. More... | |
| int | CompareTo (object obj) |
| Constructor for the parameter. More... | |
| override RawProto | ToProto (string strName) |
| Constructor for the parameter. More... | |
| override string | ToString () |
| Returns a string representation of the LayerParameter. More... | |
Public Member Functions inherited from MyCaffe.basecode.BaseParameter | |
| BaseParameter () | |
| Constructor for the parameter. More... | |
| virtual bool | Compare (BaseParameter p) |
| Compare this parameter to another parameter. More... | |
Static Public Member Functions | |
| static LayerParameter | FromProto (RawProto rp) |
| Parses the parameter from a RawProto. More... | |
| static ? LayerType | GetType (string strType) |
| Converts the string type into a LayerType, or null if no match is found. More... | |
Static Public Member Functions inherited from MyCaffe.basecode.BaseParameter | |
| static double | ParseDouble (string strVal) |
| Parse double values using the US culture if the decimal separator = '.', then using the native culture, and if then lastly trying the US culture to handle prototypes containing '.' as the separator, yet parsed in a culture that does not use '.' as a decimal. More... | |
| static bool | TryParse (string strVal, out double df) |
| Parse double values using the US culture if the decimal separator = '.', then using the native culture, and if then lastly trying the US culture to handle prototypes containing '.' as the separator, yet parsed in a culture that does not use '.' as a decimal. More... | |
| static float | ParseFloat (string strVal) |
| Parse float values using the US culture if the decimal separator = '.', then using the native culture, and if then lastly trying the US culture to handle prototypes containing '.' as the separator, yet parsed in a culture that does not use '.' as a decimal. More... | |
| static bool | TryParse (string strVal, out float f) |
| Parse doufloatble values using the US culture if the decimal separator = '.', then using the native culture, and if then lastly trying the US culture to handle prototypes containing '.' as the separator, yet parsed in a culture that does not use '.' as a decimal. More... | |
Protected Attributes | |
| ONNX_CONVERSION_SUPPORT | m_onnxConversionSupport = ONNX_CONVERSION_SUPPORT.NONE |
| Specifies the level of conversion support for the layer. More... | |
Properties | |
| string | name [getset] |
| Specifies the name of this LayerParameter. More... | |
| LayerType | type [get] |
| Specifies the type of this LayerParameter. More... | |
| bool | use_halfsize [getset] |
| Specifies whether or not to use half sized memory or not. More... | |
| ONNX_CONVERSION_SUPPORT | onnx_conversion_support [get] |
| Returns the level of Onnx conversion support. More... | |
| List< string > | bottom [getset] |
| Specifies the active bottom connections (in the bottom, out the top). More... | |
| List< string > | top [getset] |
| Specifies the active top connections (in the bottom, out the top) More... | |
| Phase | phase [getset] |
| Specifies the Phase for which this LayerParameter is run. More... | |
| bool | freeze_learning [getset] |
| Get/set whether or not to freeze the learning for this layer globally. More... | |
| bool | connect_loss_event [getset] |
| Get/set whether or not to connect the loss event to this layer. More... | |
| List< double > | loss_weight [getset] |
| Specifies the loss weight. More... | |
| List< ParamSpec > | parameters [getset] |
| Specifies the ParamSpec parameters of the LayerParameter. More... | |
| List< BlobProto > | blobs [getset] |
| Specifies the blobs of the LayerParameter. More... | |
| List< bool > | propagate_down [getset] |
| Specifies whether or not the LayerParameter (or protions of) should be backpropagated. More... | |
| List< NetStateRule > | include [getset] |
| Specifies the NetStateRule's for which this LayerParameter should be included. More... | |
| List< NetStateRule > | exclude [getset] |
| Specifies the NetStateRule's for which this LayerParameter should be excluded. More... | |
| bool | group_start [getset] |
| Specifies whether or not this node is the start of a new group - this is only used when rendering models. More... | |
| TransformationParameter | transform_param [getset] |
| Returns the parameter set when initialized with LayerType.TRANSFORM More... | |
| LossParameter | loss_param [getset] |
| Returns the parameter set when initialized with LayerType.LOSS More... | |
| AccuracyParameter | accuracy_param [getset] |
| Returns the parameter set when initialized with LayerType.ACCURACY More... | |
| ArgMaxParameter | argmax_param [getset] |
| Returns the parameter set when initialized with LayerType.ARGMAX More... | |
| BatchNormParameter | batch_norm_param [getset] |
| Returns the parameter set when initialized with LayerType.BATCHNORM More... | |
| BiasParameter | bias_param [getset] |
| Returns the parameter set when initialized with LayerType.BIAS More... | |
| CfcParameter | cfc_param [getset] |
| Returns the parameter set when initialized with LayerType.CFC More... | |
| CfcUnitParameter | cfc_unit_param [getset] |
| Returns the parameter set when initialized with LayerType.CFC_UNIT More... | |
| ClipParameter | clip_param [getset] |
| Returns the parameter set when initialized with LayerType.CLIP More... | |
| ConcatParameter | concat_param [getset] |
| Returns the parameter set when initialized with LayerType.CONCAT More... | |
| ConstantParameter | constant_param [getset] |
| Returns the parameter set when initialized with LayerType.CONSTANT More... | |
| ContrastiveLossParameter | contrastive_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.CONTRASTIVE_LOSS More... | |
| ConvolutionParameter | convolution_param [getset] |
| Returns the parameter set when initialized with LayerType.CONVOLUTION More... | |
| ConvolutionOctaveParameter | convolution_octave_param [getset] |
| Returns the parameter set when initialized with LayerType.CONVOLUTION_OCTAVE More... | |
| CropParameter | crop_param [getset] |
| Returns the parameter set when initialized with LayerType.CROP More... | |
| DecodeParameter | decode_param [getset] |
| Returns the parameter set when initializing with LayerType.DECODE or LayerType.ACCURACY_ENCODING; More... | |
| AnnotatedDataParameter | annotated_data_param [getset] |
| Returns the parameter set when initialized with LayerType.ANNOTATED_DATA More... | |
| AttentionParameter | attention_param [getset] |
| Returns the parameter set when initialized with LayerType.ATTENTION More... | |
| CategoricalTransformationParameter | categorical_trans_param [getset] |
| Returns the parameter set when initialized with LayerType.CATEGORICAL_TRANS More... | |
| CausalSelfAttentionParameter | causal_self_attention_param [getset] |
| Returns the parameter set when initialized with LayerType.CAUSAL_SELF_ATTENTION More... | |
| MultiheadAttentionParameter | multihead_attention_param [getset] |
| Returns the parameter set when initialized with LayerType.MULTIHEAD_ATTENTION More... | |
| MultiHeadAttentionInterpParameter | multihead_attention_interp_param [getset] |
| Returns the parameter set when initialized with LayerType.MULTIHEAD_ATTENTION_INTERP More... | |
| PositionalEncoderParameter | positional_encoder_param [getset] |
| Returns the parameter set when initialized with LayerType.POSITIONAL_ENCODER More... | |
| DetectionEvaluateParameter | detection_evaluate_param [getset] |
| Returns the parmeter set when initialized with LayerType.DETECTION_EVALUATE More... | |
| DetectionOutputParameter | detection_output_param [getset] |
| Returns the parmeter set when initialized with LayerType.DETECTION_OUTPUT More... | |
| DataParameter | data_param [getset] |
| Returns the parameter set when initialized with LayerType.DATA More... | |
| DataNormalizerParameter | data_normalizer_param [getset] |
| Returns the parameter set when initialized with LayerType.DATA_NORMALIZER More... | |
| DataSequenceParameter | data_sequence_param [getset] |
| Returns the parameter set when initialized with LayerType.DATA_SEQUENCE More... | |
| DataTemporalParameter | data_temporal_param [getset] |
| Returns the parameter set when initialized with LayerType.DATA_TEMPORAL More... | |
| DebugParameter | debug_param [getset] |
| Returns the parameter set when initialized with LayerType.DEBUG More... | |
| DropoutParameter | dropout_param [getset] |
| Returns the parameter set when initialized with LayerType.DROPOUT More... | |
| DummyDataParameter | dummy_data_param [getset] |
| Returns the parameter set when initialized with LayerType.DUMMYDATA More... | |
| EltwiseParameter | eltwise_param [getset] |
| Returns the parameter set when initialized with LayerType.ELTWISE More... | |
| EluParameter | elu_param [getset] |
| Returns the parameter set when initialized with LayerType.ELU More... | |
| EmbedParameter | embed_param [getset] |
| Returns the parameter set when initialized with LayerType.EMBED More... | |
| ExpParameter | exp_param [getset] |
| Returns the parameter set when initialized with LayerType.EXP More... | |
| FlattenParameter | flatten_param [getset] |
| Returns the parameter set when initialized with LayerType.FLATTEN More... | |
| GatherParameter | gather_param [getset] |
| Returns the parameter set when initialized with LayerType.GATHER More... | |
| GateAddNormParameter | gateaddnorm_param [getset] |
| Returns the parameter set when initialized with LayerType.GLU More... | |
| GeluParameter | gelu_param [getset] |
| Returns the parameter set when initialized with LayerType.GELU More... | |
| GluParameter | glu_param [getset] |
| Returns the parameter set when initialized with LayerType.GLU More... | |
| GrnParameter | grn_param [getset] |
| Returns the parameter set when initialized with LayerType.GLU More... | |
| GradientScaleParameter | gradient_scale_param [getset] |
| Returns the parameter set when initialized with LayerType.GSL More... | |
| GramParameter | gram_param [getset] |
| Returns the parameter set when initialized with LayerType.GRAM More... | |
| HDF5DataParameter | hdf5_data_param [getset] |
| Returns the parameter set when initialized with LayerType.HDF5_DATA More... | |
| HingeLossParameter | hinge_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.HINGE_LOSS More... | |
| ImageDataParameter | image_data_param [getset] |
| Returns the parameter set when initialized with LayerType.IMAGE_DATA More... | |
| InfogainLossParameter | infogain_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.INFOGAIN_LOSS More... | |
| InnerProductParameter | inner_product_param [getset] |
| Returns the parameter set when initialized with LayerType.INNERPRODUCT More... | |
| InterpParameter | interp_param [getset] |
| Returns the parameter set when initializing the LayerType.INTERP More... | |
| KnnParameter | knn_param [getset] |
| Returns the parameter set when initialized with LayerType.KNN More... | |
| LabelMappingParameter | labelmapping_param [getset] |
| Returns the parameter set when initialized with LayerType.LABELMAPPING More... | |
| LayerNormParameter | layer_norm_param [getset] |
| Returns the parameter set when initialized with LayerType.LAYERNORM More... | |
| LogParameter | log_param [getset] |
| Returns the parameter set when initialized with LayerType.LOG More... | |
| LRNParameter | lrn_param [getset] |
| Returns the parameter set when initialized with LayerType.LRN More... | |
| LtcUnitParameter | ltc_unit_param [getset] |
| Returns the parameter set when initialized with LayerType.LTC_UNIT More... | |
| MeanErrorLossParameter | mean_error_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.MEAN_ERROR_LOSS More... | |
| MathParameter | math_param [getset] |
| Returns the parameter set when initialized with LayerType.MATH More... | |
| MergeParameter | merge_param [getset] |
| Returns the parameter set when initialized with LayerType.MERGE More... | |
| MemoryDataParameter | memory_data_param [getset] |
| Returns the parameter set when initialized with LayerType.MEMORY_DATA More... | |
| MishParameter | mish_param [getset] |
| Returns the parameter set when initialized with LayerType.MISH More... | |
| MultiBoxLossParameter | multiboxloss_param [getset] |
| Returns the parameter set when initializing with LayerType.MULTIBOX_LOSS More... | |
| MVNParameter | mvn_param [getset] |
| Returns the parameter set when initialized with LayerType.MVN More... | |
| NLLLossParameter | nll_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.NLL_LOSS More... | |
| NumericTransformationParameter | numeric_trans_param [getset] |
| Returns the parameter set when initialized with LayerType.NUMERIC_TRANS More... | |
| OneHotParameter | onehot_param [getset] |
| Returns the parameter set when initialized with LayerType.ONEHOT More... | |
| Normalization1Parameter | normalization1_param [getset] |
| Returns the parameter set when initialized with LayerType.NORMALIZATION1 More... | |
| Normalization2Parameter | normalization2_param [getset] |
| Returns the parameter set when initialized with LayerType.NORMALIZATION2 More... | |
| PoolingParameter | pooling_param [getset] |
| Returns the parameter set when initialized with LayerType.POOLING More... | |
| UnPoolingParameter | unpooling_param [getset] |
| Returns the parameter set when initialized with LayerType.UNPOOLING More... | |
| ParameterParameter | parameter_param [getset] |
| Returns the parameter set when initialized with LayerType.PARAMETER More... | |
| PermuteParameter | permute_param [getset] |
| Returns the parameter set when initialized with LayerType.PERMUTE More... | |
| PowerParameter | power_param [getset] |
| Returns the parameter set when initialized with LayerType.POWER More... | |
| PReLUParameter | prelu_param [getset] |
| Returns the parameter set when initialized with LayerType.PRELU More... | |
| PriorBoxParameter | prior_box_param [getset] |
| Returns the parameter set when initialized with LayerType.PRIORBOX More... | |
| QuantileAccuracyParameter | quantile_accuracy_param [getset] |
| Returns the parameter set when initialized with LayerType.QUANTILE_ACCURACY More... | |
| QuantileLossParameter | quantile_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.QUANTILE_LOSS More... | |
| ReductionParameter | reduction_param [getset] |
| Returns the parameter set when initialized with LayerType.REDUCTION More... | |
| ReLUParameter | relu_param [getset] |
| Returns the parameter set when initialized with LayerType.RELU More... | |
| ReshapeParameter | reshape_param [getset] |
| Returns the parameter set when initialized with LayerType.RESHAPE More... | |
| ReshapeTemporalParameter | reshape_temporal_param [getset] |
| Returns the parameter set when initialized with LayerType.RESHAPE_TEMPORAL More... | |
| SqueezeParameter | squeeze_param [getset] |
| Returns the parameter set when initialized with LayerType.RESHAPE More... | |
| ScalarParameter | scalar_param [getset] |
| Returns the parameter set when initialized with LayerType.SCALAR More... | |
| ScaleParameter | scale_param [getset] |
| Returns the parameter set when initialized with LayerType.SCALE More... | |
| SerfParameter | serf_param [getset] |
| Returns the parameter set when initialized with LayerType.SERF More... | |
| SigmoidParameter | sigmoid_param [getset] |
| Returns the parameter set when initialized with LayerType.SIGMOID More... | |
| SoftmaxParameter | softmax_param [getset] |
| Returns the parameter set when initialized with LayerType.SOFTMAX More... | |
| SPPParameter | spp_param [getset] |
| Returns the parameter set when initialized with LayerType.SPP More... | |
| SliceParameter | slice_param [getset] |
| Returns the parameter set when initialized with LayerType.SLICE More... | |
| SwishParameter | swish_param [getset] |
| Returns the parameter set when initialized with LayerType.SWISH More... | |
| TanhParameter | tanh_param [getset] |
| Returns the parameter set when initialized with LayerType.TANH More... | |
| ModelDataParameter | model_data_param [getset] |
| Returns the parameter set when initialized with LayerType.MODEL_DATA More... | |
| TextDataParameter | text_data_param [getset] |
| Returns the parameter set when initialized with LayerType.TEXT_DATA More... | |
| ThresholdParameter | threshold_param [getset] |
| Returns the parameter set when initialized with LayerType.THRESHOLD More... | |
| TileParameter | tile_param [getset] |
| Returns the parameter set when initialized with LayerType.TILE More... | |
| TransposeParameter | transpose_param [getset] |
| Returns the parameter set when initialized with LayerType.TRANSPOSE More... | |
| TransformerBlockParameter | transformer_block_param [getset] |
| Returns the parameter set when initialized with LayerType.TRANSFORMER_BLOCK More... | |
| TokenizedDataParameter | tokenized_data_param [getset] |
| Returns the parameter set when initialized with LayerType.TOKENIZED_DATA More... | |
| TokenizedDataPairsParameter | tokenized_data_pairs_param [getset] |
| Returns the parameter set when initialized with LayerType.TOKENIZED_DATA_PAIRS More... | |
| TripletLossParameter | triplet_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.TRIPLET_LOSS More... | |
| TVLossParameter | tv_loss_param [getset] |
| Returns the parameter set when initialized with LayerType.TV_LOSS More... | |
| LSTMSimpleParameter | lstm_simple_param [getset] |
| [DEPRECIATED] Returns the parameter set when initialized with LayerType.LSTM_SIMPLE More... | |
| LSTMAttentionParameter | lstm_attention_param [getset] |
| Returns the parameter set when initialized with LayerType.LSTM_ATTENTION More... | |
| RecurrentParameter | recurrent_param [getset] |
| Returns the parameter set when initialized with LayerType.RECURRENT More... | |
| InputParameter | input_param [getset] |
| Returns the parameter set when initialized with LayerType.INPUT More... | |
| VideoDataParameter | video_data_param [getset] |
| Returns the parameter set when initialized with LayerType.VIDEO_DATA More... | |
| VarSelNetParameter | varselnet_param [getset] |
| Returns the parameter set when initialized with LayerType.VARSELNET More... | |
| int | solver_count [getset] |
| Returns the number of Solvers participating in a multi-GPU session for which the Solver using this LayerParameter is associated. More... | |
| int | solver_rank [getset] |
| Returns the SolverRank of the Solver using this LayerParameter (if any). More... | |
| List< string > | expected_top [get] |
| Returns a list of expected top connections (in the bottom, out the top). More... | |
| List< string > | expected_bottom [get] |
| Returns a list of expected bottom connections (in the bottom, out the top). More... | |
Specifies the base parameter for all layers.
Definition at line 23 of file LayerParameter.cs.
Specifies the layer type.
Definition at line 109 of file LayerParameter.cs.
Defines whether a layer node has ONNX conversion support or not.
Definition at line 90 of file LayerParameter.cs.
| MyCaffe.param.LayerParameter.LayerParameter | ( | ) |
Constructor for the parameter.
Definition at line 681 of file LayerParameter.cs.
| MyCaffe.param.LayerParameter.LayerParameter | ( | LayerType | lt, |
| string | strName = null |
||
| ) |
The LayerParameter constructor.
| lt | Assignes this LayerType to the layer. |
| strName | Assigns this name to the layer. |
Definition at line 694 of file LayerParameter.cs.
| MyCaffe.param.LayerParameter.LayerParameter | ( | LayerParameter | p | ) |
The LayerParameter constructor.
| p | Used to initialize the new LayerParameter. |
Definition at line 715 of file LayerParameter.cs.
| void MyCaffe.param.LayerParameter.clear_blobs | ( | ) |
Clears the collection of Blobs used by this layer.
Definition at line 2983 of file LayerParameter.cs.
|
virtual |
Creates a new copy of this instance of the parameter.
Reimplemented in MyCaffe.layers.LayerParameterEx< T >.
Definition at line 3043 of file LayerParameter.cs.
| int MyCaffe.param.LayerParameter.CompareTo | ( | object | obj | ) |
Constructor for the parameter.
Definition at line 3090 of file LayerParameter.cs.
| void MyCaffe.param.LayerParameter.CopyDefaults | ( | LayerParameter | p | ) |
Copies the defaults from another LayerParameter.
| p | Specifies the LayerParameter to copy. |
Definition at line 787 of file LayerParameter.cs.
| void MyCaffe.param.LayerParameter.CopyParameters | ( | LayerParameter | src | ) |
Copy just the layer specific parameters to this layer parameter.
| src | Specifies the source who's specific layer parameters are to be compied. |
Definition at line 3026 of file LayerParameter.cs.
|
static |
Parses the parameter from a RawProto.
| rp | Specifies the RawProto to parse. |
Definition at line 3714 of file LayerParameter.cs.
| int MyCaffe.param.LayerParameter.GetParameterCount | ( | ) |
Returns the number of ParamSpec parameters used by the layer.
Definition at line 762 of file LayerParameter.cs.
|
static |
Converts the string type into a LayerType, or null if no match is found.
| strType | Specifies the layer type. |
Definition at line 4160 of file LayerParameter.cs.
| object MyCaffe.param.LayerParameter.Load | ( | BinaryReader | br, |
| bool | bNewInstance | ||
| ) |
Load the parameter from a binary reader.
| br | Specifies the binary reader. |
| bNewInstance | When true a new instance is created (the default), otherwise the existing instance is loaded from the binary reader. |
Implements MyCaffe.basecode.IBinaryPersist.
Definition at line 901 of file LayerParameter.cs.
| bool MyCaffe.param.LayerParameter.MeetsPhase | ( | Phase | phase | ) |
Determines whether or not this LayerParameter meets a given Phase.
| phase | Specifies the Phase. |
Definition at line 830 of file LayerParameter.cs.
| void MyCaffe.param.LayerParameter.PrepareRunModel | ( | ) |
Prepare the layer settings for a run model.
Definition at line 750 of file LayerParameter.cs.
| string MyCaffe.param.LayerParameter.PrepareRunModelInputs | ( | ) |
Prepare model inputs for the run-net (if any are needed for the layer).
Definition at line 739 of file LayerParameter.cs.
| void MyCaffe.param.LayerParameter.Save | ( | BinaryWriter | bw | ) |
Save this parameter to a binary writer.
| bw | Specifies the binary writer to use. |
Implements MyCaffe.basecode.IBinaryPersist.
Definition at line 860 of file LayerParameter.cs.
| void MyCaffe.param.LayerParameter.SetType | ( | LayerType | type, |
| bool | bNewParam = true |
||
| ) |
Set the layer type.
| type | Specifies the new layer type. |
| bNewParam | Optionally, specifies to create new params (default = true). |
Definition at line 1900 of file LayerParameter.cs.
|
virtual |
Constructor for the parameter.
Implements MyCaffe.basecode.BaseParameter.
Definition at line 3522 of file LayerParameter.cs.
| override string MyCaffe.param.LayerParameter.ToString | ( | ) |
Returns a string representation of the LayerParameter.
Definition at line 4636 of file LayerParameter.cs.
|
protected |
Specifies the level of conversion support for the layer.
Definition at line 28 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.ACCURACY
Definition at line 2035 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.ANNOTATED_DATA
Definition at line 2161 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.ARGMAX
Definition at line 2044 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.ATTENTION
Definition at line 2171 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.BATCHNORM
Definition at line 2053 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.BIAS
Definition at line 2062 of file LayerParameter.cs.
|
getset |
Specifies the blobs of the LayerParameter.
Definition at line 1972 of file LayerParameter.cs.
|
getset |
Specifies the active bottom connections (in the bottom, out the top).
Definition at line 1909 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CATEGORICAL_TRANS
Definition at line 2181 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CAUSAL_SELF_ATTENTION
Definition at line 2190 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CFC
Definition at line 2071 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CFC_UNIT
Definition at line 2080 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CLIP
Definition at line 2089 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CONCAT
Definition at line 2098 of file LayerParameter.cs.
|
getset |
Get/set whether or not to connect the loss event to this layer.
Definition at line 1945 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CONSTANT
Definition at line 2107 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CONTRASTIVE_LOSS
Definition at line 2116 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CONVOLUTION_OCTAVE
Definition at line 2134 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CONVOLUTION
Definition at line 2125 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.CROP
Definition at line 2143 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.DATA_NORMALIZER
Definition at line 2253 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.DATA
Definition at line 2244 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.DATA_SEQUENCE
Definition at line 2262 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.DATA_TEMPORAL
Definition at line 2271 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.DEBUG
Definition at line 2280 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initializing with LayerType.DECODE or LayerType.ACCURACY_ENCODING;
Definition at line 2152 of file LayerParameter.cs.
|
getset |
Returns the parmeter set when initialized with LayerType.DETECTION_EVALUATE
Definition at line 2226 of file LayerParameter.cs.
|
getset |
Returns the parmeter set when initialized with LayerType.DETECTION_OUTPUT
Definition at line 2235 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.DROPOUT
Definition at line 2289 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.DUMMYDATA
Definition at line 2298 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.ELTWISE
Definition at line 2307 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.ELU
Definition at line 2316 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.EMBED
Definition at line 2325 of file LayerParameter.cs.
|
getset |
Specifies the NetStateRule's for which this LayerParameter should be excluded.
Definition at line 1999 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.EXP
Definition at line 2334 of file LayerParameter.cs.
|
get |
Returns a list of expected bottom connections (in the bottom, out the top).
Definition at line 3017 of file LayerParameter.cs.
|
get |
Returns a list of expected top connections (in the bottom, out the top).
Definition at line 3009 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.FLATTEN
Definition at line 2343 of file LayerParameter.cs.
|
getset |
Get/set whether or not to freeze the learning for this layer globally.
Definition at line 1936 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.GLU
Definition at line 2361 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.GATHER
Definition at line 2352 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.GELU
Definition at line 2370 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.GLU
Definition at line 2379 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.GSL
Definition at line 2397 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.GRAM
Definition at line 2406 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.GLU
Definition at line 2388 of file LayerParameter.cs.
|
getset |
Specifies whether or not this node is the start of a new group - this is only used when rendering models.
Definition at line 2008 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.HDF5_DATA
Definition at line 2415 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.HINGE_LOSS
Definition at line 2424 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.IMAGE_DATA
Definition at line 2433 of file LayerParameter.cs.
|
getset |
Specifies the NetStateRule's for which this LayerParameter should be included.
Definition at line 1990 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.INFOGAIN_LOSS
Definition at line 2442 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.INNERPRODUCT
Definition at line 2451 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.INPUT
Definition at line 2956 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initializing the LayerType.INTERP
Definition at line 2460 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.KNN
Definition at line 2469 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.LABELMAPPING
Definition at line 2478 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.LAYERNORM
Definition at line 2487 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.LOG
Definition at line 2496 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.LOSS
Definition at line 2026 of file LayerParameter.cs.
|
getset |
Specifies the loss weight.
Definition at line 1954 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.LRN
Definition at line 2505 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.LSTM_ATTENTION
Definition at line 2938 of file LayerParameter.cs.
|
getset |
[DEPRECIATED] Returns the parameter set when initialized with LayerType.LSTM_SIMPLE
Definition at line 2929 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.LTC_UNIT
Definition at line 2514 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MATH
Definition at line 2532 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MEAN_ERROR_LOSS
Definition at line 2523 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MEMORY_DATA
Definition at line 2550 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MERGE
Definition at line 2541 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MISH
Definition at line 2559 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MODEL_DATA
Definition at line 2839 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initializing with LayerType.MULTIBOX_LOSS
Definition at line 2568 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MULTIHEAD_ATTENTION_INTERP
Definition at line 2208 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MULTIHEAD_ATTENTION
Definition at line 2199 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.MVN
Definition at line 2577 of file LayerParameter.cs.
|
getset |
Specifies the name of this LayerParameter.
Definition at line 1864 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.NLL_LOSS
Definition at line 2586 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.NORMALIZATION1
Definition at line 2613 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.NORMALIZATION2
Definition at line 2622 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.NUMERIC_TRANS
Definition at line 2595 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.ONEHOT
Definition at line 2604 of file LayerParameter.cs.
|
get |
Returns the level of Onnx conversion support.
Definition at line 1890 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.PARAMETER
Definition at line 2649 of file LayerParameter.cs.
|
getset |
Specifies the ParamSpec parameters of the LayerParameter.
Definition at line 1963 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.PERMUTE
Definition at line 2658 of file LayerParameter.cs.
|
getset |
Specifies the Phase for which this LayerParameter is run.
Definition at line 1927 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.POOLING
Definition at line 2631 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.POSITIONAL_ENCODER
Definition at line 2217 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.POWER
Definition at line 2667 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.PRELU
Definition at line 2676 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.PRIORBOX
Definition at line 2685 of file LayerParameter.cs.
|
getset |
Specifies whether or not the LayerParameter (or protions of) should be backpropagated.
Definition at line 1981 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.QUANTILE_ACCURACY
Definition at line 2694 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.QUANTILE_LOSS
Definition at line 2703 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.RECURRENT
Definition at line 2947 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.REDUCTION
Definition at line 2712 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.RELU
Definition at line 2721 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.RESHAPE
Definition at line 2730 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.RESHAPE_TEMPORAL
Definition at line 2739 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SCALAR
Definition at line 2757 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SCALE
Definition at line 2766 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SERF
Definition at line 2775 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SIGMOID
Definition at line 2784 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SLICE
Definition at line 2811 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SOFTMAX
Definition at line 2793 of file LayerParameter.cs.
|
getset |
Returns the number of Solvers participating in a multi-GPU session for which the Solver using this LayerParameter is associated.
Definition at line 2991 of file LayerParameter.cs.
|
getset |
Returns the SolverRank of the Solver using this LayerParameter (if any).
Definition at line 3000 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SPP
Definition at line 2802 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.RESHAPE
Definition at line 2748 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.SWISH
Definition at line 2821 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TANH
Definition at line 2830 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TEXT_DATA
Definition at line 2848 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.THRESHOLD
Definition at line 2857 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TILE
Definition at line 2866 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TOKENIZED_DATA_PAIRS
Definition at line 2902 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TOKENIZED_DATA
Definition at line 2893 of file LayerParameter.cs.
|
getset |
Specifies the active top connections (in the bottom, out the top)
Definition at line 1918 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TRANSFORM
Definition at line 2017 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TRANSFORMER_BLOCK
Definition at line 2884 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TRANSPOSE
Definition at line 2875 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TRIPLET_LOSS
Definition at line 2911 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.TV_LOSS
Definition at line 2920 of file LayerParameter.cs.
|
get |
Specifies the type of this LayerParameter.
Definition at line 1873 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.UNPOOLING
Definition at line 2640 of file LayerParameter.cs.
|
getset |
Specifies whether or not to use half sized memory or not.
Definition at line 1881 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.VARSELNET
Definition at line 2974 of file LayerParameter.cs.
|
getset |
Returns the parameter set when initialized with LayerType.VIDEO_DATA
Definition at line 2965 of file LayerParameter.cs.