Skip to content
View BenBausch's full-sized avatar
🧩
Focusing
🧩
Focusing

Highlights

  • Pro

Block or report BenBausch

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Automl-for-CNN-construction Automl-for-CNN-construction Public

    Python 1

  2. Gist for linear classification Gist for linear classification
    1
    # disclaimer: example code not recommended for usage
    2
    
                  
    3
    def covariance_estimation(X):
    4
        mean_features = np.sum(X, axis=0) / X.shape[0]
    5
        X = X - mean_features
  3. Gist for Kmeans Gist for Kmeans
    1
    import numpy as np
    2
    
                  
    3
    def k_means(data, n_clusters):
    4
        # choose n_clusters data points randomly for the initialization
    5
        centroids_ids = np.random.choice(len(data), 3, replace=False)