Skip to content

Instantly share code, notes, and snippets.

View jondeaton's full-sized avatar
🌴
Vacation

Jon Deaton jondeaton

🌴
Vacation
View GitHub Profile
@francois-rozet
francois-rozet / flow_matching.py
Last active November 18, 2024 01:58
Flow Matching in 100 LOC
#!/usr/bin/env python
import math
import matplotlib.pyplot as plt
import torch
import torch.nn as nn
from sklearn.datasets import make_moons
from torch import Tensor
from tqdm import tqdm