MCPcopy Create free account

hub / github.com/devAmoghS/Machine-Learning-with-Python / functions

Functions274 in github.com/devAmoghS/Machine-Learning-with-Python

↓ 1 callersFunctionvector_as_matrix
returns the vector v (represented as a list) as a n x 1 matrix
network_analysis/utils.py:109
↓ 1 callersFunctionvector_from_matrix
returns the n x 1 matrix as a list of values
network_analysis/utils.py:114
↓ 1 callersFunctionvector_mean
compute the vector whose i-th element is the mean of the i-th elements of the input vectors
helpers/linear_algebra.py:28
↓ 1 callersFunctionword_probabilities
Turn the word_counts into a list of triplets: w, p(w|spam) and p(w|~spam)
naive_bayes_classfier/utils.py:22
Method__init__
(self, k)
k_means_clustering/utils.py:10
Method__init__
(self, k=0.5)
naive_bayes_classfier/naivebayesclassifier.py:6
Functionbeta_pdf
(x, alpha, beta)
hypothesis_inference.py:138
Functionclassify_and_plot_grid
(k=1)
k_nearest_neighbors/utils.py:74
Functioncombine_pct_changes
(pct_change1, pct_change2)
working_with_data/model.py:72
Functioncompare_distributions
(num_samples=1000)
natural_language_processing/utils.py:145
Functioncompare_two_distributions
()
working_with_data/utils.py:30
Functioncorrelation_matrix
returns the num_columns x num_columns matrix whose (i, j)th entry is the correlation between columns i and j of data
working_with_data/utils.py:61
Functioncount_extreme_values
()
hypothesis_inference.py:77
Functioncreate_model
()
hparams_grid_search_keras_nn.py:28
Functiondata_scientists_who_like
(target_interest)
friendster_network.py:101
Functionday_over_day_changes
(grouped_rows)
working_with_data/utils.py:191
Functionderivative
(x)
helpers/gradient_descent.py:19
Functionderivative_estimate
()
helpers/gradient_descent.py:22
Functiondirectional_variance
the variance of the data in the direction w
working_with_data/utils.py:250
Functiondirectional_variance_gradient
(X, w)
working_with_data/utils.py:262
Functionentry_fn
(i, j)
network_analysis/utils.py:138
Functionestimate_gradient
(f, v, h=0.00001)
helpers/gradient_descent.py:41
Functionestimate_sample_beta
(sample)
multiple_regression/utils.py:59
Functionf_or_none
(x)
working_with_data/utils.py:134
Functionfirst_principal_component_sgd
(X)
working_with_data/utils.py:275
Functionforest_classify
(trees, input)
decision_trees/utils.py:109
Functiongenerate_sentence
(grammar)
natural_language_processing/utils.py:109
Functiongenerate_using_bigrams
(transitions)
natural_language_processing/utils.py:55
Functiongenerate_using_trigrams
(starts, transitions)
natural_language_processing/utils.py:66
Functionget_document
()
natural_language_processing/utils.py:38
Functionget_merge_order
(cluster)
k_means_clustering/utils.py:106
Functionis_diagonal
1's on the 'diagonal', 0's everywhere else
helpers/linear_algebra.py:83
Functionlasso_penalty
(beta, alpha)
multiple_regression/utils.py:111
Functionlogistic_log_gradient
(x, y, beta)
logistic_regression/utils.py:42
Functionlogistic_log_likelihood
(x, y, beta)
logistic_regression/utils.py:22
Functionlogistic_prime
(x)
logistic_regression/utils.py:11
Functionmake_chart_salaries_by_tenure
()
friendster_network.py:143
Functionmake_digit
(raw_digit)
neural_network/model.py:8
Functionmake_friend_counts_histogram
(plt)
helpers/stats.py:14
Functionmake_graph_dot_product_as_vector_projection
(plt)
helpers/linear_algebra.py:115
Functionmake_hist
(p, n, num_points)
helpers/probabilty.py:87
Functionmake_scatterplot_matrix
()
working_with_data/utils.py:73
Functionmake_user_interest_vector
(interests, user_interests)
recommender_systems/utils.py:11
Functionmatrix_add
(A, B)
helpers/linear_algebra.py:104
Functionmatrix_entry
(i, j)
working_with_data/utils.py:67
Functionmatrix_product_entry
(A, B, i, j)
network_analysis/utils.py:95
Functionnormal_probability_outside
(lo, hi, mu=0, sigma=1)
hypothesis_inference.py:33
Functionoverall_change
(changes)
working_with_data/model.py:75
Functionp_spam_given_word
(word_prob)
naive_bayes_classfier/model.py:36
Functionperceptron_output
returns 1 if the perceptron 'fires', 0 if not
neural_network/utils.py:13
Functionplot_cities
()
k_nearest_neighbors/utils.py:48
Functionplot_data
(data)
logistic_regression_banking/utils.py:9
Functionplot_estimated_derivative
()
helpers/gradient_descent.py:15
Functionplot_normal_cdfs
(plt)
helpers/probabilty.py:44
Functionplot_normal_pdfs
(plt)
helpers/probabilty.py:30
Functionplot_resumes
Word Clouds
natural_language_processing/utils.py:11
Functionpredict_paid_or_unpaid
(years_experience)
friendster_network.py:192
Functionrandom_forest
Random Forest Algorithm
sonar_clf_rf.py:220
Functionraw_majority_vote
(labels)
k_nearest_neighbors/utils.py:10
Functionrecolor_image
(input_file, k=5)
k_means_clustering/utils.py:54
Functionrescaled
(i, j)
working_with_data/utils.py:222
Functionsafe_f
(*args, **kwargs)
helpers/gradient_descent.py:59
Functionscatter
()
working_with_data/utils.py:52
Functionshow_weights
(network, neuron_idx)
neural_network/utils.py:75
Functionsquare
(x)
helpers/gradient_descent.py:16
Functionsquared_clustering_errors
finds the total squared error from k-means clustering the inputs
k_means_clustering/utils.py:41
Functionsquared_error
(x_i, y_i, theta)
simple_linear_regression/utils.py:33
Functionsquared_error
(x_i, y_i, beta)
multiple_regression/utils.py:18
Functionsquared_error_gradient
(x_i, y_i, theta)
simple_linear_regression/utils.py:38
Functionsquared_error_ridge
estimate error plus ridge penalty on beta
multiple_regression/utils.py:82
Functionsquared_error_ridge_gradient
the gradient corresponding to the ith squared error term including the ridge penalty
multiple_regression/utils.py:92
Functiontransform
(X, components)
working_with_data/utils.py:315
Functionuniform_cdf
returns the probability that a uniform random variable is less than x
helpers/probabilty.py:15
Functionuniform_pdf
(x)
helpers/probabilty.py:11
← previous201–274 of 274, ranked by callers