Skip to content
View nelson-n's full-sized avatar
  • FDE @ Palantir
  • Masters in AI @ UT Austin

Block or report nelson-n

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
nelson-n/README.md

Watches: Perpetual Renaissance
Papers [forecasting, modeling, philosophy, metaphysics]: SSRN
Musings [philosophy, metaphysics, literature]: Blog
Open-Source 3d Printer Design: Mark 1 Resin 3d Printer


cache = {0: 0, 1: 1}

def fibonacci(n):
    if n in cache:
        return cache[n]
    cache[n] = fibonacci(n-1) + fibonacci(n-2)
    return cache[n]

fibonacci(1e3) / fibonacci(999)

Pinned Loading

  1. lmForc lmForc Public

    R package for evaluating linear forecasting models.

    R 6

  2. TaddyLab/distrom TaddyLab/distrom Public

    Distributed Multinomial Regression

    R 20 8

  3. cs-math-nn cs-math-nn Public

    Curriculum of self-taught lessons on computer science, mathematics, and deep learning.

    Jupyter Notebook

  4. Mark1.github.io Mark1.github.io Public

    Open-source Resin 3d Printer

    Python