Skip to content

Instantly share code, notes, and snippets.

View mat-ej's full-sized avatar

Matej mat-ej

View GitHub Profile
@veekaybee
veekaybee / normcore-llm.md
Last active July 21, 2024 13:28
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

@PeterWaIIace
PeterWaIIace / matrix_vis.py
Last active June 22, 2024 05:58
Simple visualisation for matrices Numpy/JAX
# Define color codes
colors = {
'red': '\033[91m',
'green': '\033[92m',
'yellow': '\033[93m',
'purple': '\033[95m',
'blue': '\033[34m',
'orange': '\033[33m', # Orange color
'reset': '\033[0m' # Reset color to default
}