MCPcopy Create free account

hub / github.com/Riashat/Active-Learning-Bayesian-Convolutional-Neural-Networks / types & classes

Types & classes114 in github.com/Riashat/Active-Learning-Bayesian-Convolutional-Neural-Networks

↓ 4,026 callersClassActivation
Apply an activation function to an output. # Input shape Arbitrary. Use the keyword argument `input_shape` (tuple of integers, do
ConvNets/keras/layers/core.py:652
↓ 2,707 callersClassConvolution2D
Convolution operator for filtering windows of two-dimensional inputs. When using this layer as the first layer in a model, provide the keyword
ConvNets/keras/layers/convolutional.py:172
↓ 2,130 callersClassDropout
Apply Dropout to the input. Dropout consists in randomly setting a fraction `p` of input units to 0 at each update during training time, which
ConvNets/keras/layers/core.py:623
↓ 1,779 callersClassDense
Just your regular fully connected NN layer. # Input shape 2D tensor with shape: `(nb_samples, input_dim)`. # Output shape 2D
ConvNets/keras/layers/core.py:872
↓ 1,336 callersClassMaxPooling2D
Max pooling operation for spatial data. # Input shape 4D tensor with shape: `(samples, channels, rows, cols)` if dim_ordering='th
ConvNets/keras/layers/convolutional.py:512
↓ 875 callersClassSequential
Linear stack of layers. Inherits from containers.Sequential.
ConvNets/keras/models.py:406
↓ 765 callersClassFlatten
Flatten the input. Does not affect the batch size. # Input shape Arbitrary, although all dimensions in the input shape must be fixed.
ConvNets/keras/layers/core.py:808
↓ 237 callersClassZeroPadding2D
Zero-padding layer for 2D input (e.g. picture). # Input shape 4D tensor with shape: (samples, depth, first_axis_to_pad, second_ax
ConvNets/keras/layers/convolutional.py:720
↓ 25 callersClassSGD
Stochastic gradient descent, with support for momentum, decay, and Nesterov momentum. # Arguments lr: float >= 0. Learning rate.
ConvNets/keras/optimizers.py:59
↓ 18 callersClassMerge
Merge the output of a list of layers or containers into a single tensor. # Arguments mode: one of {sum, mul, concat, ave, dot}.
ConvNets/keras/layers/core.py:390
↓ 17 callersClassGraph
Arbitrary connection graph. It can have any number of inputs and outputs, with each output trained with its own loss function. The quantit
ConvNets/keras/models.py:1064
↓ 16 callersClassBB_alpha
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/boston_housing/theano/black_box_alpha.py:46
↓ 10 callersClassEmbedding
Turn positive integers (indexes) into dense vectors of fixed size. eg. [[4], [20]] -> [[0.25, 0.1], [0.6, -0.2]] This layer can only be used
ConvNets/keras/layers/embeddings.py:10
↓ 10 callersClassLSTM
Long-Short Term Memory unit - Hochreiter 1997. For a step-by-step description of the algorithm, see [this tutorial](http://deeplearning.net/t
ConvNets/keras/layers/recurrent.py:343
↓ 7 callersClassBB_alpha
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/mnist/black_box_alpha.py:44
↓ 5 callersClassPReLU
# Input shape Arbitrary. Use the keyword argument `input_shape` (tuple of integers, does not include the samples axis) wh
ConvNets/keras/layers/advanced_activations.py:38
↓ 4 callersClassActivityRegularizer
ConvNets/keras/regularizers.py:38
↓ 4 callersClassProgbar
ConvNets/keras/utils/generic_utils.py:28
↓ 4 callersClassRMSprop
RMSProp optimizer. It is recommended to leave the parameters of this optimizer at their default values. This optimizer is usually a good
ConvNets/keras/optimizers.py:104
↓ 4 callersClassReshape
Reshape an output to a certain shape. # Input shape Arbitrary, although all dimensions in the input shaped must be fixed. Use the
ConvNets/keras/layers/core.py:683
↓ 4 callersClassSiamese
Share a layer accross multiple inputs. For instance, this allows you to applied e.g. a same `Dense` layer to the output of two different
ConvNets/keras/layers/core.py:1524
↓ 4 callersClassTimeDistributedDense
Apply a same Dense layer for each dimension[1] (time_dimension) input. Especially useful after a recurrent network with 'return_sequence=True'.
ConvNets/keras/layers/core.py:1019
↓ 3 callersClassBatchNormalization
Normalize the activations of the previous layer at each batch, i.e. applies a transformation that maintains the mean activation close to 0 and
ConvNets/keras/layers/normalization.py:6
↓ 3 callersClassConvolution1D
Convolution operator for filtering neighborhoods of one-dimensional inputs. When using this layer as the first layer in a model, either provid
ConvNets/keras/layers/convolutional.py:20
↓ 3 callersClassMaxPooling1D
Max pooling operation for temporal data. # Input shape 3D tensor with shape: `(samples, steps, features)`. # Output shape 3D
ConvNets/keras/layers/convolutional.py:394
↓ 3 callersClassSiameseHead
This layer should be added only on top of a Siamese layer with merge_mode = None. Outputs the output of the Siamese layer at a given index,
ConvNets/keras/layers/core.py:1753
↓ 3 callersClassWeightRegularizer
ConvNets/keras/regularizers.py:19
↓ 2 callersClassAntirectifier
This is the combination of a sample-wise L2 normalization with the concatenation of the positive part of the input with the negative part
ConvNets/examples/antirectifier.py:22
↓ 2 callersClassAveragePooling2D
Average pooling operation for spatial data. # Input shape 4D tensor with shape: `(samples, channels, rows, cols)` if dim_ordering
ConvNets/keras/layers/convolutional.py:549
↓ 2 callersClassGRU
Gated Recurrent Unit - Cho et al. 2014. # Arguments output_dim: dimension of the internal projections and the final output. init:
ConvNets/keras/layers/recurrent.py:245
↓ 2 callersClassLambda
Used for evaluating an arbitrary Theano / TensorFlow expression on the output of the previous layer. # Input shape Arbitrary. Use the
ConvNets/keras/layers/core.py:1347
↓ 2 callersClassLambdaMerge
LambdaMerge layer for evaluating an arbitrary Theano / TensorFlow function over multiple inputs. # Output shape Specified by output_s
ConvNets/keras/layers/core.py:1410
↓ 2 callersClassPermute
Permute the dimensions of the input according to a given pattern. Useful for e.g. connecting RNNs and convnets together. # Input shape
ConvNets/keras/layers/core.py:764
↓ 2 callersClassRepeatVector
Repeat the input n times. # Input shape 2D tensor of shape `(nb_samples, features)`. # Output shape 3D tensor of shape `(nb_
ConvNets/keras/layers/core.py:840
↓ 2 callersClassSimpleRNN
Fully-connected RNN where the output is to fed back to input. # Arguments output_dim: dimension of the internal projections and the final
ConvNets/keras/layers/recurrent.py:174
↓ 2 callersClassTokenizer
ConvNets/keras/preprocessing/text.py:42
↓ 2 callersClassUpSampling2D
Repeat the rows and columns of the data by size[0] and size[1] respectively. # Input shape 4D tensor with shape: `(samples, c
ConvNets/keras/layers/convolutional.py:622
↓ 1 callersClassAdadelta
Adadelta optimizer. It is recommended to leave the parameters of this optimizer at their default values. # Arguments lr: float >
ConvNets/keras/optimizers.py:178
↓ 1 callersClassAdagrad
Adagrad optimizer. It is recommended to leave the parameters of this optimizer at their default values. # Arguments lr: float >=
ConvNets/keras/optimizers.py:145
↓ 1 callersClassAdam
Adam optimizer. Default parameters follow those provided in the original paper. # Arguments lr: float >= 0. Learning rate. b
ConvNets/keras/optimizers.py:227
↓ 1 callersClassAdamax
Adamax optimizer from Adam paper's Section 7. It is a variant of Adam based on the infinity norm. Default parameters follow those provided i
ConvNets/keras/optimizers.py:278
↓ 1 callersClassAutoEncoder
A customizable autoencoder model. # Input shape Same as encoder input. # Output shape If `output_reconstruction = True` then
ConvNets/keras/layers/core.py:1142
↓ 1 callersClassAveragePooling1D
Average pooling for temporal data. # Input shape 3D tensor with shape: `(samples, steps, features)`. # Output shape 3D t
ConvNets/keras/layers/convolutional.py:421
↓ 1 callersClassCharacterTable
Given a set of characters: + Encode them to a one hot integer representation + Decode the one hot integer representation to their charact
ConvNets/examples/addition_rnn.py:37
↓ 1 callersClassELU
# Input shape Arbitrary. Use the keyword argument `input_shape` (tuple of integers, does not include the samples axis) wh
ConvNets/keras/layers/advanced_activations.py:82
↓ 1 callersClassEvaluator
ConvNets/examples/neural_style_transfer.py:254
↓ 1 callersClassEvaluator
ConvNets/examples/deep_dream.py:189
↓ 1 callersClassFunction
ConvNets/keras/backend/tensorflow_backend.py:349
↓ 1 callersClassFunction
ConvNets/keras/backend/theano_backend.py:382
↓ 1 callersClassImageDataGenerator
Generate minibatches with realtime data augmentation.
ConvNets/keras/preprocessing/image.py:119
↓ 1 callersClassKerasClassifier
Implementation of the scikit-learn classifier API for Keras. Parameters ---------- model : object An un-compiled Keras model
ConvNets/keras/wrappers/scikit_learn.py:139
↓ 1 callersClassKerasRegressor
Implementation of the scikit-learn regressor API for Keras. Parameters ---------- model : object An un-compiled Keras model
ConvNets/keras/wrappers/scikit_learn.py:213
↓ 1 callersClassLayer
Abstract base layer class. All Keras layers accept certain keyword arguments: trainable: boolean. Set to "False" before model compilatio
ConvNets/keras/layers/core.py:20
↓ 1 callersClassLeakyReLU
Special version of a Rectified Linear Unit that allows a small gradient when the unit is not active (`f(x) = alpha*x for x < 0`). # Input
ConvNets/keras/layers/advanced_activations.py:7
↓ 1 callersClassMasking
Mask an input sequence by using a mask value to identify padding. This layer copies the input to the output layer with identified padding rep
ConvNets/keras/layers/core.py:309
↓ 1 callersClassModelToDot
This is a helper class which visits a keras model (Sequential or Graph) and returns a pydot.Graph representation. This is implemented as
ConvNets/keras/utils/visualize_util.py:31
↓ 1 callersClassNetwork_layer
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/mnist/network_layer.py:9
↓ 1 callersClassNetwork_layer
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/boston_housing/theano/network_layer.py:9
↓ 1 callersClassParametricSoftplus
Parametric Softplus of the form: alpha * log(1 + exp(beta * X)) # Input shape Arbitrary. Use the keyword argument `input_shape` (
ConvNets/keras/layers/advanced_activations.py:115
↓ 1 callersClassParanoidURLopener
ConvNets/keras/datasets/data_utils.py:11
↓ 1 callersClassThresholdedLinear
Thresholded Linear Activation. # Input shape Arbitrary. Use the keyword argument `input_shape` (tuple of integers, does not inclu
ConvNets/keras/layers/advanced_activations.py:163
↓ 1 callersClassThresholdedReLU
Thresholded Rectified Activation. # Input shape Arbitrary. Use the keyword argument `input_shape` (tuple of integers, does not in
ConvNets/keras/layers/advanced_activations.py:195
↓ 1 callersClassUpSampling1D
Repeat each temporal step `length` times along the time axis. # Input shape 3D tensor with shape: `(samples, steps, features)`. # Ou
ConvNets/keras/layers/convolutional.py:586
↓ 1 callersClassWeightsParser
A helper class to index into a parameter vector.
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/boston_housing/autograd/black_box_alpha.py:14
↓ 1 callersClassZeroPadding1D
Zero-padding layer for 1D input (e.g. temporal sequence). # Input shape 3D tensor with shape (samples, axis_to_pad, features) # Outp
ConvNets/keras/layers/convolutional.py:681
ClassAEPDGP
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/AEPDGP.py:15
ClassAEPDGP
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/numpy/code/AEPDGP.py:37
ClassAEPDGP_net
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/AEPDGP_net.py:9
ClassAEPDGP_net
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/numpy/code/AEPDGP_net.py:16
ClassActivityRegularization
Layer that passes through its input unchanged, but applies an update to the cost function based on the activity. # Input shape Arbitr
ConvNets/keras/layers/core.py:983
ClassBaseLogger
Callback that prints events to the standard output. This callback is automatically applied to every Keras model (it is the basis of the verbo
ConvNets/keras/callbacks.py:131
ClassBaseWrapper
Base class for the Keras scikit-learn wrapper. Warning: This class should not be used directly. Use derived classes instead. Parameters
ConvNets/keras/wrappers/scikit_learn.py:9
ClassCallback
Abstract base class used to build new callbacks. # Properties params: dict. Training parameters (eg. verbosity, batch size, n
ConvNets/keras/callbacks.py:78
ClassCallbackList
ConvNets/keras/callbacks.py:14
ClassConstraint
ConvNets/keras/constraints.py:5
ClassEQ_kernel
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/EQ_kernel.py:13
ClassEarlyStopping
Stop training when a monitored quantity has stopped improving. # Arguments monitor: quantity to be monitored. patience: number of
ConvNets/keras/callbacks.py:303
ClassFITC_Network
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/FITC_network.py:10
ClassFITC_layer
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/FITC_layer.py:12
ClassFITC_network
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/numpy/code/FITC_network.py:18
ClassGaussianDropout
Apply to the input an multiplicative one-centred gaussian noise with standard deviation `sqrt(p/(1-p))`. As it is a regularization layer, it
ConvNets/keras/layers/noise.py:46
ClassGaussianNoise
Apply to the input an additive zero-centred gaussian noise with standard deviation `sigma`. This is useful to mitigate overfitting (you could
ConvNets/keras/layers/noise.py:6
ClassGraph
Implement a NN graph with arbitrary layer connections, arbitrary number of inputs and arbitrary number of outputs. This class is also the bas
ConvNets/keras/layers/containers.py:170
ClassHDF5Matrix
ConvNets/keras/utils/io_utils.py:7
ClassHighway
Densely connected highway network, a natural extension of LSTMs to feedforward networks. # Input shape 2D tensor with shape: `(nb_sam
ConvNets/keras/layers/core.py:1803
ClassHistory
Callback that records events into a `History` object. This callback is automatically applied to every Keras model. The `History` object
ConvNets/keras/callbacks.py:182
ClassLearningRateScheduler
Learning rate scheduler. # Arguments schedule: a function that takes an epoch index as input (integer, indexed from 0) and re
ConvNets/keras/callbacks.py:407
ClassMaskedLambda
ConvNets/keras/layers/core.py:1406
ClassMaskedLayer
If your layer trivially supports masking (by simply copying the input mask to the output), then subclass MaskedLayer instead of Layer, and
ConvNets/keras/layers/core.py:286
ClassMaxNorm
ConvNets/keras/constraints.py:13
ClassMaxoutDense
A dense maxout layer. A `MaxoutDense` layer takes the element-wise maximum of `nb_feature` `Dense(input_dim, output_dim)` linear layers.
ConvNets/keras/layers/core.py:1250
ClassModel
Abstract base model class.
ConvNets/keras/models.py:190
ClassModelCheckpoint
Save the model after every epoch. `filepath` can contain named formatting options, which will be filled the value of `epoch` and keys in
ConvNets/keras/callbacks.py:220
ClassNetwork
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/mnist/network.py:11
ClassNetwork
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/boston_housing/theano/network.py:11
ClassNetwork
ConvNets/Uncertainty_Comparison/Probabilistic-Backpropagation-master/theano/PBP_net/network.py:10
ClassNetwork_layer
ConvNets/Uncertainty_Comparison/Probabilistic-Backpropagation-master/theano/PBP_net/network_layer.py:8
ClassNonNeg
ConvNets/keras/constraints.py:28
ClassOptimizer
Abstract optimizer base class. Note: this is the parent class of all optimizers, not an actual optimizer that can be used for training models
ConvNets/keras/optimizers.py:18
ClassPBP
ConvNets/Uncertainty_Comparison/Probabilistic-Backpropagation-master/theano/PBP_net/pbp.py:18
next →1–100 of 114, ranked by callers