Skip to content

Instantly share code, notes, and snippets.

View ygivenx's full-sized avatar
🎯
Focusing

Rohan Singh ygivenx

🎯
Focusing
View GitHub Profile
@veekaybee
veekaybee / normcore-llm.md
Last active June 1, 2024 03:03
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@ygivenx
ygivenx / h1b_telegram_alert.py
Last active July 18, 2022 23:05
Get notification on your mac and get relevant messages saved to your telegram app #h1b #script
"""
Author: Rohan Singh (singhrohan@outlook.com)
Use this code to send yourself a message when a relevant one appears in the `group_name`
Also, get notifications on mac
Usage
===========
Go to: https://my.telegram.org to create an app
@sschuldenzucker
sschuldenzucker / roam2tex.js
Created September 1, 2020 17:18
roam2tex
/*
Input: Roam Research's non-standard markdown. (copied from a roam page or export)
Output: Latex
The goal of this is to draft papers and other documents in Roam.
Thus, we export regular text, *not* a bullet list!
Reads from stdin, writes to stdout.
Example input: https://roamresearch.com/#/app/publicpages/page/WP7tXRTgK
@bshishov
bshishov / forecasting_metrics.py
Last active April 20, 2024 04:29
Python Numpy functions for most common forecasting metrics
import numpy as np
EPSILON = 1e-10
def _error(actual: np.ndarray, predicted: np.ndarray):
""" Simple error """
return actual - predicted