Skip to content
View nelson-n's full-sized avatar
  • Quant @ Federal Reserve Board
  • Masters in AI @ UT Austin
Block or Report

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.

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
nelson-n/README.md

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

  1. lmForc lmForc Public

    R package for evaluating linear forecasting models.

    R 5

  2. TaddyLab/distrom TaddyLab/distrom Public

    Distributed Multinomial Regression

    R 18 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