[go: nahoru, domu]

Skip to content
View danielbarkhorn's full-sized avatar
💭
Thinking...
💭
Thinking...
  • New York, New York / Santa Clara, California
Block or Report

Block or report danielbarkhorn

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. Active-frontend Active-frontend Public

    ⚛React Frontend for Active Learning demo

    JavaScript

  2. Active-backend Active-backend Public

    🐍 Python Flask API for Active Learning demo

    Python 2

  3. Active_Learning Active_Learning Public

    University Project Focusing on Active Learning

    Jupyter Notebook 2

  4. Temperature_Timeseries Temperature_Timeseries Public

    Investigation of global temperature change using timeseries data.

    Jupyter Notebook

  5. Simple Trie Python Implementation. C... Simple Trie Python Implementation. Comment structure based off SKLearn.
    1
    class Trie:
    2
        """
    3
        Trie data structure implemented using dictionary
    4
        
    5
        Parameters
  6. SHA-3 Hash Algorithm Python Implemen... SHA-3 Hash Algorithm Python Implementation. (https://en.wikipedia.org/wiki/SHA-3#The_block_permutation)
    1
    import numpy as np
    2
    import consts
    3
    
                  
    4
    RHO_MATRICES = {tuple(np.linalg.matrix_power(np.array([[0,1],[2,3]]), t).dot(np.array([1,0])) % 5): t for t in range(0,24)}
    5
    RHO_MATRICES[(0,0)] = -1