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

Block or report kelvin-273

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. A tree used to store the conditional... A tree used to store the conditional probabilities of natural language or anything that follows a power law.
    1
    """class for ngram tree"""
    2
    
                  
    3
    class Node(object):
    4
        """docstring for Node"""
    5
        def __init__(self, ngram):
  2. Lazy Functional Binary Tree Lazy Functional Binary Tree
    1
    '''
    2
    A Tree is a function that takes no parameters and either returns None or
    3
    a tuple of (data, left_Tree, right_Tree) where left_Tree and right_Tree
    4
    are also functions of the same type.
    5
    This means that the values in the tree are never evaluated until they are
  3. letters-and-numbers letters-and-numbers Public

    A solver for the numbers portion of the ABC show, Letters and Numbers.

    Python

  4. pixis pixis Public

    A web app to help FIT1045 students generate example images for their Neral Networks. Built on Typescript, RxJs, and D3.

    JavaScript 1