A curated collection of resources, courses, books, and tools covering AI systems, ML, LLMs, generative AI, and agentic AI.
Snapshot for reference; my personal notes live elsewhere.
π¨βπ»
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import streamlit as st | |
| import io | |
| import contextlib | |
| import sys | |
| import re | |
| import threading | |
| class _Redirect: | |
| class IOStuff(io.StringIO): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| from numpy.random import randn, rand | |
| from scipy.optimize import minimize | |
| import matplotlib.pyplot as plt | |
| from nnls import nnlsm_blockpivot as nnlstsq | |
| import itertools | |
| from scipy.spatial.distance import cdist | |
| def censored_lstsq(A, B, M): | |
| """Solves least squares problem with missing data in B |