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

Block or report ColinPeppler

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. AutoRDDCaching AutoRDDCaching Public

    Finds an optimal RDD to cache in Spark Java.

    Jupyter Notebook 1

  2. SimpleSqlite SimpleSqlite Public

    A bootleg SQLite clone

    C 1

  3. Weiszfeld's Algorithm to numerically... Weiszfeld's Algorithm to numerically approximate the geometric median for a list of ML model weights.
    1
    def average(models, eps=1e-5, tol=1e-6):
    2
        """
    3
        Computes geometric median of the model weights using Weiszfeld's Algorithm
    4
        """
    5
        models = [model.get_weights() for model in models]
  4. Very simple Python interpreter writt... Very simple Python interpreter written in Python
    1
    # ref: https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html
    2
    from typing import NamedTuple, Optional, Union, List
    3
    from collections import deque
    4
    from dataclasses import dataclass
    5