MCPcopy Create free account

hub / github.com/JHL-HUST/VT / functions

Functions318 in github.com/JHL-HUST/VT

Functiongraph
(x, y, i, x_max, x_min, grad)
ni_fgsm.py:138
Functiongraph
(x, y, i, x_max, x_min, grad)
mi_di_ti_si_fgsm.py:138
Functionimage_augmentation
(x)
ni_di_ti_si_fgsm.py:207
Functionimage_augmentation
(x)
vmi_di_ti_si_fgsm.py:209
Functionimage_augmentation
(x)
vni_di_ti_si_fgsm.py:208
Functionimage_augmentation
(x)
vni_fgsm.py:210
Functionimage_augmentation
(x)
vmi_fgsm.py:201
Functionimage_augmentation
(x)
mi_fgsm.py:174
Functionimage_augmentation
(x)
ni_fgsm.py:175
Functionimage_augmentation
(x)
mi_di_ti_si_fgsm.py:206
Functionimage_rotation
imgs, scale, scale is in radians
ni_di_ti_si_fgsm.py:216
Functionimage_rotation
imgs, scale, scale is in radians
vmi_di_ti_si_fgsm.py:218
Functionimage_rotation
imgs, scale, scale is in radians
vni_di_ti_si_fgsm.py:217
Functionimage_rotation
imgs, scale, scale is in radians
vni_fgsm.py:219
Functionimage_rotation
imgs, scale, scale is in radians
vmi_fgsm.py:210
Functionimage_rotation
imgs, scale, scale is in radians
mi_fgsm.py:183
Functionimage_rotation
imgs, scale, scale is in radians
ni_fgsm.py:184
Functionimage_rotation
imgs, scale, scale is in radians
mi_di_ti_si_fgsm.py:215
Functioninception_arg_scope
Defines the default arg scope for inception models. Args: weight_decay: The weight decay to use for regularizing the model. use_batch_norm:
nets/inception_utils.py:32
Functioninception_resnet_v2
Creates the Inception Resnet V2 model. Args: inputs: a 4-D tensor of size [batch_size, height, width, 3]. num_classes: number of predicted
nets/inception_resnet_v2.py:270
Functioninception_resnet_v2_arg_scope
Returns the scope with the default parameters for inception_resnet_v2. Args: weight_decay: the weight decay for weights variables. batch_no
nets/inception_resnet_v2.py:331
Functioninception_v1
Defines the Inception V1 architecture. This architecture is defined in: Going deeper with convolutions Christian Szegedy, Wei Liu, Yangqin
nets/inception_v1.py:257
Functioninception_v2
Inception v2 model for classification. Constructs an Inception v2 network for classification as described in http://arxiv.org/abs/1502.03167.
nets/inception_v2.py:452
Functioninception_v3
Inception model from http://arxiv.org/abs/1512.00567. "Rethinking the Inception Architecture for Computer Vision" Christian Szegedy, Vincent Van
nets/inception_v3.py:419
Functioninception_v4
Creates the Inception V4 model. Args: inputs: a 4-D tensor of size [batch_size, height, width, 3]. num_classes: number of predicted classes
nets/inception_v4.py:257
Functioninput_diversity
(input_tensor)
vni_fgsm.py:225
Functioninput_diversity
(input_tensor)
vmi_fgsm.py:216
Functioninput_diversity
(input_tensor)
mi_fgsm.py:189
Functioninput_diversity
(input_tensor)
ni_fgsm.py:190
Functionlenet
Creates a variant of the LeNet model. Note that since the output is a set of 'logits', the values fall in the interval of (-infinity, infinity).
nets/lenet.py:26
Functionlenet_arg_scope
Defines the default lenet argument scope. Args: weight_decay: The weight decay to use for regularizing the model. Returns: An `arg_scope
nets/lenet.py:79
Functionmain
(_)
ni_di_ti_si_fgsm.py:240
Functionmain
(_)
vmi_di_ti_si_fgsm.py:242
Functionmain
(_)
vni_di_ti_si_fgsm.py:241
Functionmain
(_)
vni_fgsm.py:243
Functionmain
(_)
vmi_fgsm.py:234
Functionmain
(_)
mi_fgsm.py:207
Functionmain
(_)
ni_fgsm.py:208
Functionmain
(_)
mi_di_ti_si_fgsm.py:239
Functionmobilenet_v1
Mobilenet v1 model for classification. Args: inputs: a tensor of shape [batch_size, height, width, channels]. num_classes: number of predic
nets/mobilenet_v1.py:269
Functionmobilenet_v1_arg_scope
Defines the default MobilenetV1 arg scope. Args: is_training: Whether or not we're training the model. weight_decay: The weight decay to us
nets/mobilenet_v1.py:376
Functionnetwork_fn
(images)
nets/nets_factory.py:111
Functionoverfeat
Contains the model definition for the OverFeat network. The definition for the network was obtained from: OverFeat: Integrated Recognition, Loc
nets/overfeat.py:50
Functionoverfeat_arg_scope
(weight_decay=0.0005)
nets/overfeat.py:40
Functionresnet_arg_scope
Defines the default ResNet arg scope. TODO(gpapan): The batch-normalization related default values above are appropriate for use in conjunction
nets/resnet_utils.py:199
Functionresnet_v1_101
ResNet-101 model of [1]. See resnet_v1() for arg and return description.
nets/resnet_v1.py:280
Functionresnet_v1_152
ResNet-152 model of [1]. See resnet_v1() for arg and return description.
nets/resnet_v1.py:302
Functionresnet_v1_200
ResNet-200 model of [2]. See resnet_v1() for arg and return description.
nets/resnet_v1.py:324
Functionresnet_v1_50
ResNet-50 model of [1]. See resnet_v1() for arg and return description.
nets/resnet_v1.py:258
Functionresnet_v2_101
ResNet-101 model of [1]. See resnet_v2() for arg and return description.
nets/resnet_v2.py:271
Functionresnet_v2_152
ResNet-152 model of [1]. See resnet_v2() for arg and return description.
nets/resnet_v2.py:293
Functionresnet_v2_200
ResNet-200 model of [2]. See resnet_v2() for arg and return description.
nets/resnet_v2.py:315
Functionresnet_v2_50
ResNet-50 model of [1]. See resnet_v2() for arg and return description.
nets/resnet_v2.py:249
Functionstack_blocks_dense
Stacks ResNet `Blocks` and controls output feature density. First, this function creates scopes for the ResNet in the form of 'block_name/unit_1'
nets/resnet_utils.py:126
Functionstop
(x, y, i, x_max, x_min, grad)
ni_di_ti_si_fgsm.py:202
Functionstop
(x, y, i, x_max, x_min, grad, variance)
vmi_di_ti_si_fgsm.py:204
Functionstop
(x, y, i, x_max, x_min, grad, variance)
vni_di_ti_si_fgsm.py:203
Functionstop
(x, y, i, x_max, x_min, grad, variance)
vni_fgsm.py:205
Functionstop
(x, y, i, x_max, x_min, grad, variance)
vmi_fgsm.py:196
Functionstop
(x, y, i, x_max, x_min, grad)
mi_fgsm.py:169
Functionstop
(x, y, i, x_max, x_min, grad)
ni_fgsm.py:170
Functionstop
(x, y, i, x_max, x_min, grad)
mi_di_ti_si_fgsm.py:201
Functionsubsample
Subsamples the input along the spatial dimensions. Args: inputs: A `Tensor` of size [batch, height_in, width_in, channels]. factor: The sub
nets/resnet_utils.py:59
MethodtestAllEndPointsShapes
(self)
nets/inception_v4_test.py:58
MethodtestAtrousFullyConvolutionalEndpointShapes
(self)
nets/resnet_v1_test.py:343
MethodtestAtrousFullyConvolutionalEndpointShapes
(self)
nets/resnet_v2_test.py:343
MethodtestAtrousFullyConvolutionalUnknownHeightWidth
(self)
nets/resnet_v1_test.py:426
MethodtestAtrousFullyConvolutionalUnknownHeightWidth
(self)
nets/resnet_v2_test.py:429
MethodtestAtrousFullyConvolutionalValues
Verify dense feature extraction with atrous convolution.
nets/resnet_v1_test.py:364
MethodtestAtrousFullyConvolutionalValues
Verify dense feature extraction with atrous convolution.
nets/resnet_v2_test.py:364
MethodtestAtrousValuesBottleneck
Verify the values of dense feature extraction by atrous convolution. Make sure that dense feature extraction by stack_blocks_dense() followed by
nets/resnet_v1_test.py:199
MethodtestAtrousValuesBottleneck
Verify the values of dense feature extraction by atrous convolution. Make sure that dense feature extraction by stack_blocks_dense() followed by
nets/resnet_v2_test.py:199
MethodtestBuild
(self)
nets/vgg_test.py:29
MethodtestBuild
(self)
nets/vgg_test.py:158
MethodtestBuild
(self)
nets/vgg_test.py:302
MethodtestBuild
(self)
nets/overfeat_test.py:29
MethodtestBuild
(self)
nets/alexnet_test.py:29
MethodtestBuildAndCheckAllEndPointsApproximateFaceNet
(self)
nets/mobilenet_v1_test.py:248
MethodtestBuildAndCheckAllEndPointsUptoConv2d_13
(self)
nets/mobilenet_v1_test.py:118
MethodtestBuildAndCheckAllEndPointsUptoMixed5c
(self)
nets/inception_v2_test.py:77
MethodtestBuildAndCheckAllEndPointsUptoMixed5c
(self)
nets/inception_v1_test.py:78
MethodtestBuildAndCheckAllEndPointsUptoMixed7c
(self)
nets/inception_v3_test.py:80
MethodtestBuildAndCheckAllEndPointsUptoPreAuxLogits
(self)
nets/inception_resnet_v2_test.py:108
MethodtestBuildAndCheckAllEndPointsUptoPreAuxLogitsWithAlignedFeatureMaps
(self)
nets/inception_resnet_v2_test.py:134
MethodtestBuildAndCheckAllEndPointsUptoPreAuxLogitsWithOutputStrideEight
(self)
nets/inception_resnet_v2_test.py:160
MethodtestBuildBaseNetwork
(self)
nets/inception_resnet_v2_test.py:76
MethodtestBuildBaseNetwork
(self)
nets/inception_v2_test.py:45
MethodtestBuildBaseNetwork
(self)
nets/inception_v1_test.py:45
MethodtestBuildBaseNetwork
(self)
nets/mobilenet_v1_test.py:45
MethodtestBuildBaseNetwork
(self)
nets/inception_v3_test.py:45
MethodtestBuildBaseNetwork
(self)
nets/inception_v4_test.py:103
MethodtestBuildClassificationNetwork
(self)
nets/inception_v2_test.py:31
MethodtestBuildClassificationNetwork
(self)
nets/inception_v1_test.py:31
MethodtestBuildClassificationNetwork
(self)
nets/mobilenet_v1_test.py:31
MethodtestBuildClassificationNetwork
(self)
nets/inception_v3_test.py:31
MethodtestBuildCustomNetworkUsingConvDefs
(self)
nets/mobilenet_v1_test.py:96
MethodtestBuildEndPoints
(self)
nets/inception_resnet_v2_test.py:57
MethodtestBuildEndPoints
(self)
nets/inception_v3_test.py:122
MethodtestBuildEndPointsNCHWDataFormat
(self)
nets/inception_v2_test.py:190
MethodtestBuildEndPointsWithDepthMultiplierGreaterThanOne
(self)
nets/inception_v2_test.py:136
← previousnext →101–200 of 318, ranked by callers