Measuring Space & Invariants (Part 3)
This series of posts cover different types of distances and their invariant properties. This includes: Part 1: Euclidean distance Part 2: Mahalanobis distance Part 3: Spacetime interval Sp...
This series of posts cover different types of distances and their invariant properties. This includes: Part 1: Euclidean distance Part 2: Mahalanobis distance Part 3: Spacetime interval Sp...
This series of posts cover different types of distances and their invariant properties. This includes: Part 1: Euclidean distance Part 2: Mahalanobis distance Part 3: Spacetime interval Co...
This series of posts cover different types of distances and their invariant properties. This includes: Part 1: Euclidean distance Part 2: Mahalanobis distance Part 3: Spacetime interval Ca...
My mind map for Theoretical Minimum, Special Relativity And Classical Field Theory. Lecture 1 - The Lorentz Transformation Lecture 2 - Velocities & 4-Vectors Lecture 3 - Relativistic Laws ...
My mind map for Theoretical Minimum, Classical Mechanics. Lecture 1 - The Nature of Classical Physics Lecture 2 - Motion Lecture 3 - Dynamics Lecture 4 - Systems of More Than One Particle ...
A x-post from my contribution to pgmpy, a library for probabilistic graphical models in python. You can find the original tutorial here, MirrorDescentEstimator here and MaximumLikelihoodEstimator h...
A post about modeling tabular datasets using Undirected Graphical Models with a python package called pgmpy. import numpy as np import pandas as pd import plotly.graph_objects as go import plotly....
I saw this interesting math problem from a coworker and decided to make a post discussing the computation. Coin Flipping Problem Flip a fair coin 100 times—it gives a sequence of heads (H) and t...
Should you rent or buy your next home? NumPy rewrite of this New York Times Calculator. You can find notebook here which uses NumPy and numpy-financial. import pandas as pd import numpy as np impor...
A post about the speed of the computation of the Ising Model. I compare Python, Cython, Numba, Mojo, & Julia on the Ising Model. I am sure there are optimizations I missed, e.g. vectorize, p...