Skip to content
View diogojc's full-sized avatar
Block or Report

Block or report diogojc

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. python implementation of pagerank python implementation of pagerank
    1
    import numpy as np
    2
    from scipy.sparse import csc_matrix
    3
    
                  
    4
    def pageRank(G, s = .85, maxerr = .001):
    5
        """
  2. heroku-buildpack-python-opencv-scipy heroku-buildpack-python-opencv-scipy Public

    Heroku buildpack with Python, OpenCV, Numpy and Scipy

    Shell 29 57

  3. AnimatedGraph AnimatedGraph Public

    Javascript implementation of a force directed graph visualization using <canvas>

    JavaScript 3 3

  4. diogojc.github.io diogojc.github.io Public

    Content for Diogo Costa blog

    Python

  5. Regression based collaborative filte... Regression based collaborative filtering
    1
    
                  
    2
    import numpy as np
    3
    from scipy.optimize import fmin_cg
    4
    
                  
    5
    
                  
  6. Density estimation using multivariat... Density estimation using multivariate gaussians
    1
    import numpy as np
    2
    import matplotlib.pyplot as plt
    3
    
                  
    4
    
                  
    5
    def params(X):