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

Block or report andreylh

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

  1. jaro_winkler.py jaro_winkler.py
    1
    import math
    2
    
                  
    3
    class JaroWinkler:
    4
        
    5
        def jaro_winkler(self, d, r):
  2. my-simple-nn.py my-simple-nn.py
    1
    def sigmoid(x):
    2
        return 1/(1+np.exp(-x))
    3
    
                  
    4
    def backprop(x):
    5
        return x * (1-x)
  3. sa.py sa.py
    1
    class SuffixAutomaton:
    2
    
                  
    3
        def __init__(self):
    4
            self.states = []
    5
            self.link = []
  4. graphhopper/graphhopper graphhopper/graphhopper Public

    Open source routing engine for OpenStreetMap. Use it as Java library or standalone web server.

    Java 4.7k 1.5k

  5. olist-challenge olist-challenge Public

    Python 1

  6. felipexw/hackathon-research-team felipexw/hackathon-research-team Public

    Repositório dos códigos fontes do Hacktthon da Senior 2017

    Swift 2