Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/rushter/MLAlgorithms
/ functions
Functions
368 in github.com/rushter/MLAlgorithms
⨍
Functions
368
◇
Types & classes
63
Method
__init__
(self, degree=2)
mla/svm/kernerls.py:15
Method
__init__
(self, gamma=0.1)
mla/svm/kernerls.py:26
Method
__init__
Support vector machines implementation using simplified SMO optimization. Parameters ---------- C : float, default 1.0
mla/svm/svm.py:18
Method
__repr__
(self)
mla/svm/kernerls.py:10
Method
__repr__
(self)
mla/svm/kernerls.py:21
Method
__repr__
(self)
mla/svm/kernerls.py:34
Method
__setitem__
(self, key, value)
mla/neuralnet/parameters.py:97
Method
_loss
(self, w)
mla/linear_models.py:46
Method
_loss
(self, w)
mla/linear_models.py:114
Method
_loss
(self, w)
mla/linear_models.py:128
Method
_penalty
(self, weights)
mla/neuralnet/regularizers.py:11
Method
_penalty
(self, weights)
mla/neuralnet/regularizers.py:22
Method
_penalty
(self, weights)
mla/neuralnet/regularizers.py:27
Method
_penalty
(self, weights)
mla/neuralnet/regularizers.py:34
Method
_predict
(self, X=None)
mla/pca.py:62
Method
_predict
(self, X=None)
mla/linear_models.py:87
Method
_predict
(self, X=None)
mla/linear_models.py:136
Method
_predict
(self, X=None)
mla/rbm.py:100
Method
_predict
Perform clustering on the dataset.
mla/kmeans.py:66
Method
_predict
Get the assignments for X with GMM clusters.
mla/gaussian_mixture.py:117
Method
_predict
(self, X=None)
mla/knn.py:31
Method
_predict
(self, X=None)
mla/naive_bayes.py:35
Method
_predict
(self, X=None)
mla/ensemble/random_forest.py:57
Method
_predict
(self, X=None)
mla/ensemble/random_forest.py:87
Method
_predict
(self, X=None)
mla/ensemble/random_forest.py:126
Method
_predict
(self, X=None)
mla/svm/svm.py:107
Method
_predict_row
Predict log likelihood for given row.
mla/naive_bayes.py:42
Method
aggregate
Return the most common target label.
mla/knn.py:61
Method
aggregate
Return the mean of all targets.
mla/knn.py:71
Method
backward_pass
(self, delta)
mla/neuralnet/layers/basic.py:79
Method
backward_pass
(self, delta)
mla/neuralnet/layers/basic.py:103
Method
backward_pass
(self, delta)
mla/neuralnet/layers/basic.py:127
Method
backward_pass
(self, delta)
mla/neuralnet/layers/basic.py:143
Method
backward_pass
(self, delta)
mla/neuralnet/layers/basic.py:171
Method
backward_pass
(self, delta)
mla/neuralnet/layers/convnet.py:58
Method
backward_pass
(self, delta)
mla/neuralnet/layers/convnet.py:109
Method
backward_pass
(self, delta)
mla/neuralnet/layers/convnet.py:136
Method
backward_pass
(self, X)
mla/neuralnet/layers/normalization.py:144
Method
backward_pass
(self, delta)
mla/neuralnet/layers/recurrent/rnn.py:76
Method
backward_pass
(self, delta)
mla/neuralnet/layers/recurrent/lstm.py:133
Function
binary_crossentropy
(actual, predicted)
mla/metrics/metrics.py:72
Method
clip
(self, p)
mla/neuralnet/constraints.py:8
Method
clip
(self, p)
mla/neuralnet/constraints.py:17
Method
clip
(self, p)
mla/neuralnet/constraints.py:31
Method
clip
(self, p)
mla/neuralnet/constraints.py:39
Function
dataset
()
mla/tests/test_reduction.py:16
Method
fit
(self, X, y=None)
mla/linear_models.py:65
Method
fit
(self, X, y=None)
mla/fm.py:76
Method
fit
(self, X, y=None)
mla/fm.py:83
Method
fit
(self, X, y=None)
mla/rbm.py:39
Method
fit
(self, X, y=None)
mla/base/base.py:50
Method
fit
(self, X, y)
mla/ensemble/random_forest.py:39
Method
forward_pass
(self, X)
mla/neuralnet/layers/basic.py:71
Method
forward_pass
(self, X)
mla/neuralnet/layers/basic.py:99
Method
forward_pass
(self, X)
mla/neuralnet/layers/basic.py:117
Method
forward_pass
(self, x)
mla/neuralnet/layers/basic.py:140
Method
forward_pass
(self, X)
mla/neuralnet/layers/basic.py:164
Method
forward_pass
(self, X)
mla/neuralnet/layers/convnet.py:48
Method
forward_pass
(self, X)
mla/neuralnet/layers/convnet.py:93
Method
forward_pass
(self, X)
mla/neuralnet/layers/convnet.py:132
Method
forward_pass
(self, X)
mla/neuralnet/layers/normalization.py:82
Method
forward_pass
(self, X)
mla/neuralnet/layers/recurrent/rnn.py:55
Method
forward_pass
(self, X)
mla/neuralnet/layers/recurrent/lstm.py:87
Function
gelu
Gaussian Error Linear Unit (GELU)
mla/neuralnet/activations.py:46
Function
glorot_normal
(shape, **kwargs)
mla/neuralnet/initializations.py:46
Function
glorot_uniform
(shape, **kwargs)
mla/neuralnet/initializations.py:52
Method
grad
(self)
mla/neuralnet/parameters.py:87
Method
grad
(self, actual, predicted)
mla/ensemble/gbm.py:54
Method
grad
(self, actual, predicted)
mla/ensemble/gbm.py:64
Method
grid_gaussian_pdf
(mean, cov)
mla/gaussian_mixture.py:164
Function
he_normal
(shape, **kwargs)
mla/neuralnet/initializations.py:58
Function
he_uniform
(shape, **kwargs)
mla/neuralnet/initializations.py:64
Method
hess
(self, actual, predicted)
mla/ensemble/gbm.py:57
Method
hess
(self, actual, predicted)
mla/ensemble/gbm.py:67
Function
hinge
(actual, predicted)
mla/metrics/metrics.py:68
Function
information_gain
(y, splits)
mla/ensemble/base.py:16
Method
init_cost
(self)
mla/linear_models.py:118
Method
init_cost
(self)
mla/linear_models.py:125
Method
is_terminal
(self)
mla/ensemble/tree.py:29
Method
is_testing
(self)
mla/neuralnet/layers/basic.py:45
Method
is_training
(self)
mla/neuralnet/nnet.py:152
Method
is_training
(self)
mla/neuralnet/layers/basic.py:37
Function
leakyrelu
(z, a=0.01)
mla/neuralnet/activations.py:42
Function
linear
(z)
mla/neuralnet/activations.py:19
Function
logloss
(actual, predicted)
mla/metrics/metrics.py:62
Function
mean_absolute_error
(actual, predicted)
mla/metrics/metrics.py:34
Function
mlp_model
(n_actions, batch_size=64)
examples/rl_deep_q_learning.py:11
Function
mse_criterion
(y, splits)
mla/ensemble/base.py:23
Method
n_layers
Returns the number of layers.
mla/neuralnet/nnet.py:171
Method
n_params
Count the number of parameters in this layer.
mla/neuralnet/parameters.py:79
Method
n_params
Return the number of trainable parameters.
mla/neuralnet/nnet.py:176
Function
one
(shape, **kwargs)
mla/neuralnet/initializations.py:22
Function
orthogonal
(shape, scale=0.5)
mla/neuralnet/initializations.py:26
Method
parameters
Returns a list of all parameters.
mla/neuralnet/nnet.py:127
Method
parameters
(self)
mla/neuralnet/layers/basic.py:29
Method
parameters
(self)
mla/neuralnet/layers/basic.py:179
Method
parametric_layers
(self)
mla/neuralnet/nnet.py:121
Method
predict
(self, X=None)
mla/base/base.py:53
Function
regression
()
examples/random_forest.py:45
Function
regression
()
examples/gbm.py:44
← previous
next →
201–300 of 368, ranked by callers