Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Riashat/Active-Learning-Bayesian-Convolutional-Neural-Networks
/ types & classes
Types & classes
114 in github.com/Riashat/Active-Learning-Bayesian-Convolutional-Neural-Networks
⨍
Functions
1,217
◇
Types & classes
114
↓ 4,026 callers
Class
Activation
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 callers
Class
Convolution2D
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 callers
Class
Dropout
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 callers
Class
Dense
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 callers
Class
MaxPooling2D
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 callers
Class
Sequential
Linear stack of layers. Inherits from containers.Sequential.
ConvNets/keras/models.py:406
↓ 765 callers
Class
Flatten
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 callers
Class
ZeroPadding2D
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 callers
Class
SGD
Stochastic gradient descent, with support for momentum, decay, and Nesterov momentum. # Arguments lr: float >= 0. Learning rate.
ConvNets/keras/optimizers.py:59
↓ 18 callers
Class
Merge
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 callers
Class
Graph
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 callers
Class
BB_alpha
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/boston_housing/theano/black_box_alpha.py:46
↓ 10 callers
Class
Embedding
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 callers
Class
LSTM
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 callers
Class
BB_alpha
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/mnist/black_box_alpha.py:44
↓ 5 callers
Class
PReLU
# 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 callers
Class
ActivityRegularizer
ConvNets/keras/regularizers.py:38
↓ 4 callers
Class
Progbar
ConvNets/keras/utils/generic_utils.py:28
↓ 4 callers
Class
RMSprop
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 callers
Class
Reshape
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 callers
Class
Siamese
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 callers
Class
TimeDistributedDense
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 callers
Class
BatchNormalization
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 callers
Class
Convolution1D
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 callers
Class
MaxPooling1D
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 callers
Class
SiameseHead
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 callers
Class
WeightRegularizer
ConvNets/keras/regularizers.py:19
↓ 2 callers
Class
Antirectifier
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 callers
Class
AveragePooling2D
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 callers
Class
GRU
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 callers
Class
Lambda
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 callers
Class
LambdaMerge
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 callers
Class
Permute
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 callers
Class
RepeatVector
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 callers
Class
SimpleRNN
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 callers
Class
Tokenizer
ConvNets/keras/preprocessing/text.py:42
↓ 2 callers
Class
UpSampling2D
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 callers
Class
Adadelta
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 callers
Class
Adagrad
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 callers
Class
Adam
Adam optimizer. Default parameters follow those provided in the original paper. # Arguments lr: float >= 0. Learning rate. b
ConvNets/keras/optimizers.py:227
↓ 1 callers
Class
Adamax
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 callers
Class
AutoEncoder
A customizable autoencoder model. # Input shape Same as encoder input. # Output shape If `output_reconstruction = True` then
ConvNets/keras/layers/core.py:1142
↓ 1 callers
Class
AveragePooling1D
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 callers
Class
CharacterTable
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 callers
Class
ELU
# 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 callers
Class
Evaluator
ConvNets/examples/neural_style_transfer.py:254
↓ 1 callers
Class
Evaluator
ConvNets/examples/deep_dream.py:189
↓ 1 callers
Class
Function
ConvNets/keras/backend/tensorflow_backend.py:349
↓ 1 callers
Class
Function
ConvNets/keras/backend/theano_backend.py:382
↓ 1 callers
Class
ImageDataGenerator
Generate minibatches with realtime data augmentation.
ConvNets/keras/preprocessing/image.py:119
↓ 1 callers
Class
KerasClassifier
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 callers
Class
KerasRegressor
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 callers
Class
Layer
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 callers
Class
LeakyReLU
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 callers
Class
Masking
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 callers
Class
ModelToDot
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 callers
Class
Network_layer
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/mnist/network_layer.py:9
↓ 1 callers
Class
Network_layer
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/boston_housing/theano/network_layer.py:9
↓ 1 callers
Class
ParametricSoftplus
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 callers
Class
ParanoidURLopener
ConvNets/keras/datasets/data_utils.py:11
↓ 1 callers
Class
ThresholdedLinear
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 callers
Class
ThresholdedReLU
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 callers
Class
UpSampling1D
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 callers
Class
WeightsParser
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 callers
Class
ZeroPadding1D
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
Class
AEPDGP
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/AEPDGP.py:15
Class
AEPDGP
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/numpy/code/AEPDGP.py:37
Class
AEPDGP_net
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/AEPDGP_net.py:9
Class
AEPDGP_net
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/numpy/code/AEPDGP_net.py:16
Class
ActivityRegularization
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
Class
BaseLogger
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
Class
BaseWrapper
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
Class
Callback
Abstract base class used to build new callbacks. # Properties params: dict. Training parameters (eg. verbosity, batch size, n
ConvNets/keras/callbacks.py:78
Class
CallbackList
ConvNets/keras/callbacks.py:14
Class
Constraint
ConvNets/keras/constraints.py:5
Class
EQ_kernel
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/EQ_kernel.py:13
Class
EarlyStopping
Stop training when a monitored quantity has stopped improving. # Arguments monitor: quantity to be monitored. patience: number of
ConvNets/keras/callbacks.py:303
Class
FITC_Network
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/FITC_network.py:10
Class
FITC_layer
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/theano/code/FITC_layer.py:12
Class
FITC_network
ConvNets/Uncertainty_Comparison/deepGP_approxEP-master/numpy/code/FITC_network.py:18
Class
GaussianDropout
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
Class
GaussianNoise
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
Class
Graph
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
Class
HDF5Matrix
ConvNets/keras/utils/io_utils.py:7
Class
Highway
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
Class
History
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
Class
LearningRateScheduler
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
Class
MaskedLambda
ConvNets/keras/layers/core.py:1406
Class
MaskedLayer
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
Class
MaxNorm
ConvNets/keras/constraints.py:13
Class
MaxoutDense
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
Class
Model
Abstract base model class.
ConvNets/keras/models.py:190
Class
ModelCheckpoint
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
Class
Network
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/mnist/network.py:11
Class
Network
ConvNets/Uncertainty_Comparison/black_box_alpha_BNN/boston_housing/theano/network.py:11
Class
Network
ConvNets/Uncertainty_Comparison/Probabilistic-Backpropagation-master/theano/PBP_net/network.py:10
Class
Network_layer
ConvNets/Uncertainty_Comparison/Probabilistic-Backpropagation-master/theano/PBP_net/network_layer.py:8
Class
NonNeg
ConvNets/keras/constraints.py:28
Class
Optimizer
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
Class
PBP
ConvNets/Uncertainty_Comparison/Probabilistic-Backpropagation-master/theano/PBP_net/pbp.py:18
next →
1–100 of 114, ranked by callers